Merge pull request #21369 from Noshyaar/exportflag
Deprecating bit flags export with no hint text
This commit is contained in:
commit
5b87864385
@ -3915,14 +3915,15 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
||||
|
||||
if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "FLAGS") {
|
||||
|
||||
//current_export.hint=PROPERTY_HINT_ALL_FLAGS;
|
||||
tokenizer->advance();
|
||||
|
||||
if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
|
||||
ERR_EXPLAIN("Exporting bit flags hint requires string constants.");
|
||||
WARN_DEPRECATED
|
||||
break;
|
||||
}
|
||||
if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
|
||||
_set_error("Expected ')' or ',' in bit flags hint.");
|
||||
_set_error("Expected ',' in bit flags hint.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user