| 184 | } |
| 185 | |
| 186 | string Syntax::getVariableName(const string& name, TypeDesc /*type*/, IdentifierMap& identifiers) const |
| 187 | { |
| 188 | // Default implementation just makes an identifier, but derived |
| 189 | // classes can override this for custom variable naming. |
| 190 | string variable = name; |
| 191 | makeIdentifier(variable, identifiers); |
| 192 | return variable; |
| 193 | } |
| 194 | |
| 195 | bool Syntax::remapEnumeration(const string&, TypeDesc, const string&, std::pair<TypeDesc, ValuePtr>&) const |
| 196 | { |
no outgoing calls
no test coverage detected