| 203 | } |
| 204 | |
| 205 | static void dumpVariables( Stream& stream, const char* inClass = NULL ) |
| 206 | { |
| 207 | const U32 hashTableSize = gEvalState.globalVars.hashTable->size; |
| 208 | for( U32 i = 0; i < hashTableSize; ++ i ) |
| 209 | for( Dictionary::Entry* entry = gEvalState.globalVars.hashTable->data[ i ]; entry != NULL; entry = entry->nextEntry ) |
| 210 | dumpVariable( stream, entry, inClass ); |
| 211 | } |
| 212 | |
| 213 | static void dumpFunction( Stream &stream, |
| 214 | bool isClassMethod, |
no test coverage detected