diff options
author | George Marques <george@gmarqu.es> | 2020-08-26 14:50:27 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2020-08-26 14:50:27 -0300 |
commit | 8ccf88a206fd1ef031e4bd79ef3c5686a085b0c8 (patch) | |
tree | f124ec74fba6bd06872dd911db03fb23d60daa2b /modules/gdscript/gdscript_parser.cpp | |
parent | 722be9aaef2746033f3a46c9a6349be7545918f9 (diff) | |
download | redot-engine-8ccf88a206fd1ef031e4bd79ef3c5686a085b0c8.tar.gz |
GDScript: Fix issues when deriving from other scripts
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index aeec1c0379..f313602bd7 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -631,7 +631,6 @@ void GDScriptParser::parse_extends() { current_class->extends_path = previous.literal; if (!match(GDScriptTokenizer::Token::PERIOD)) { - end_statement("superclass path"); return; } } |