diff options
| author | reduz | 2015-12-29 12:11:21 -0300 |
|---|---|---|
| committer | reduz | 2015-12-29 12:11:21 -0300 |
| commit | 7d2d1442f83e6a7a57a1823a6cf5af53e5419d5f (patch) | |
| tree | 06c26e9630e74b88bc860ad8e824855e85c03791 /modules/gdscript/gd_parser.h | |
| parent | 99736e63e45b323d06411926bd92210a08c717c2 (diff) | |
| download | godot-7d2d1442f83e6a7a57a1823a6cf5af53e5419d5f.tar.gz godot-7d2d1442f83e6a7a57a1823a6cf5af53e5419d5f.tar.zst godot-7d2d1442f83e6a7a57a1823a6cf5af53e5419d5f.zip | |
Diffstat (limited to 'modules/gdscript/gd_parser.h')
| -rw-r--r-- | modules/gdscript/gd_parser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/gdscript/gd_parser.h b/modules/gdscript/gd_parser.h index 4aa5c8cfe..143c5f20e 100644 --- a/modules/gdscript/gd_parser.h +++ b/modules/gdscript/gd_parser.h @@ -54,6 +54,7 @@ public: TYPE_CONTROL_FLOW, TYPE_LOCAL_VAR, TYPE_ASSERT, + TYPE_BREAKPOINT, TYPE_NEWLINE, }; @@ -276,6 +277,10 @@ public: AssertNode() { type=TYPE_ASSERT; } }; + struct BreakpointNode : public Node { + BreakpointNode() { type=TYPE_BREAKPOINT; } + }; + struct NewLineNode : public Node { NewLineNode() { type=TYPE_NEWLINE; } }; |
