| 141 | } |
| 142 | |
| 143 | void CScriptBuilder::ClearAll() |
| 144 | { |
| 145 | includedScripts.clear(); |
| 146 | |
| 147 | #if AS_PROCESS_METADATA == 1 |
| 148 | currentClass = ""; |
| 149 | currentNamespace = ""; |
| 150 | |
| 151 | foundDeclarations.clear(); |
| 152 | typeMetadataMap.clear(); |
| 153 | funcMetadataMap.clear(); |
| 154 | varMetadataMap.clear(); |
| 155 | #endif |
| 156 | } |
| 157 | |
| 158 | bool CScriptBuilder::IncludeIfNotAlreadyIncluded(const char *filename) |
| 159 | { |
nothing calls this directly
no outgoing calls
no test coverage detected