Change GDScript compiler to use codegen abstraction
This commit is contained in:
@ -609,6 +609,7 @@ public:
|
||||
};
|
||||
|
||||
struct ContinueNode : public Node {
|
||||
bool is_for_match = false;
|
||||
ContinueNode() {
|
||||
type = CONTINUE;
|
||||
}
|
||||
@ -1079,6 +1080,7 @@ private:
|
||||
bool panic_mode = false;
|
||||
bool can_break = false;
|
||||
bool can_continue = false;
|
||||
bool is_continue_match = false; // Whether a `continue` will act on a `match`.
|
||||
bool is_ignoring_warnings = false;
|
||||
List<bool> multiline_stack;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user