mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-13 22:43:59 +08:00
Summary: No macros in product code. (Not all callsites are converted yet.) Reviewed By: mdvacca Differential Revision: D7797561 fbshipit-source-id: da899421bf99669a0e0a2b83df6004daf14355c2
32 lines
949 B
C++
32 lines
949 B
C++
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "ParagraphAttributes.h"
|
|
|
|
#include <fabric/attributedstring/textValuesConversions.h>
|
|
#include <fabric/debug/DebugStringConvertibleItem.h>
|
|
|
|
#include "debugStringConvertibleUtils.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
#pragma mark - DebugStringConvertible
|
|
|
|
SharedDebugStringConvertibleList ParagraphAttributes::getDebugProps() const {
|
|
return {
|
|
debugStringConvertibleItem("maximumNumberOfLines", maximumNumberOfLines),
|
|
debugStringConvertibleItem("ellipsizeMode", ellipsizeMode),
|
|
debugStringConvertibleItem("adjustsFontSizeToFit", adjustsFontSizeToFit),
|
|
debugStringConvertibleItem("minimumFontSize", minimumFontSize),
|
|
debugStringConvertibleItem("maximumFontSize", maximumFontSize)
|
|
};
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|