pass keyword inside a class implemented

This commit is contained in:
Thakee Nathees 2020-03-03 19:37:59 +05:30
parent 0e25f54755
commit 63ce1fc438
1 changed files with 4 additions and 0 deletions

View File

@ -5227,6 +5227,10 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
}
} break;
case GDScriptTokenizer::TK_CF_PASS: {
tokenizer->advance();
} break;
default: {
_set_error(String() + "Unexpected token: " + tokenizer->get_token_name(tokenizer->get_token()) + ":" + tokenizer->get_token_identifier());