Преглед изворни кода

GDScript: Allow empty files to be valid scripts

George Marques пре 5 година
родитељ
комит
0f9923e67f
1 измењених фајлова са 0 додато и 6 уклоњено
  1. 0 6
      modules/gdscript/gdscript_parser.cpp

+ 0 - 6
modules/gdscript/gdscript_parser.cpp

@@ -482,12 +482,6 @@ void GDScriptParser::end_statement(const String &p_context) {
 }
 }
 
 
 void GDScriptParser::parse_program() {
 void GDScriptParser::parse_program() {
-	if (current.type == GDScriptTokenizer::Token::TK_EOF) {
-		// Empty file.
-		push_error("Source file is empty.");
-		return;
-	}
-
 	head = alloc_node<ClassNode>();
 	head = alloc_node<ClassNode>();
 	current_class = head;
 	current_class = head;