mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Change GDScript compiler to use codegen abstraction
This commit is contained in:
parent
82273ebc01
commit
745ca3059d
6 changed files with 1085 additions and 1773 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue