| 21 | } |
| 22 | |
| 23 | char* GetDefaultConstructorName(const char* name) |
| 24 | { |
| 25 | unsigned length = (unsigned)strlen(name); |
| 26 | char *tmp = AllocateString(length + 2); |
| 27 | strcpy(tmp, name); |
| 28 | tmp[length] = '$'; |
| 29 | tmp[length + 1] = 0; |
| 30 | return tmp; |
| 31 | } |
| 32 | |
| 33 | inline bool ParseLexem(Lexeme** str, LexemeType type) |
| 34 | { |
no test coverage detected