| 1295 | } |
| 1296 | |
| 1297 | bool asCParser::IdentifierIs(const sToken &t, const char *str) |
| 1298 | { |
| 1299 | if( t.type != ttIdentifier ) |
| 1300 | return false; |
| 1301 | |
| 1302 | return script->TokenEquals(t.pos, t.length, str); |
| 1303 | } |
| 1304 | |
| 1305 | // BNF:6: FUNCATTR ::= ('override' | 'final' | 'explicit' | 'property' | 'delete')* |
| 1306 | void asCParser::ParseMethodAttributes(asCScriptNode *funcNode) |
nothing calls this directly
no test coverage detected