| 167 | } |
| 168 | |
| 169 | inline Symbol* AddConstant( SymbolTable& table, const char* name, int opType ) |
| 170 | { |
| 171 | Symbol* symbol = table.AddSymbol( MakeInlineString( name ), ALLOW_OVERRIDES ); |
| 172 | symbol->type.FromTokenType( opType ); |
| 173 | return symbol; |
| 174 | } |
| 175 | |
| 176 | template <int Arg> |
| 177 | int TypeSameAsArg( ASTNode* call ) |
no test coverage detected