MCPcopy Create free account
hub / github.com/codereader/DarkRadiant / getString

Method getString

libs/parser/DefBlockSyntaxParser.h:104–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102 }
103
104 virtual std::string getString() const
105 {
106 std::string value;
107 value.reserve(getChildren().size() * 10);
108
109 for (const auto& child : getChildren())
110 {
111 value += child->getString();
112 }
113
114 return value;
115 }
116};
117
118class DefWhitespaceSyntax :

Callers 4

getStringMethod · 0.45
findFirstNamedBlockMethod · 0.45
getStringMethod · 0.45
parseBlockMethod · 0.45

Calls 2

reserveMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected