| 1193 | } |
| 1194 | |
| 1195 | ASTNode* ParserState::NewNode( int nodeType ) |
| 1196 | { |
| 1197 | return new ASTNode( ASTNodeType( nodeType ), GetCurrentLocation(), GetSymbolTable().GetCurrentScope(), nullptr ); |
| 1198 | } |
| 1199 | |
| 1200 | ASTNode* ParserState::NewNode( int nodeType, const ScannerToken& token ) |
| 1201 | { |
no test coverage detected