summaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_parser.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-11-11 10:55:26 +0100
committerGitHub <noreply@github.com>2016-11-11 10:55:26 +0100
commit7751a933a924ddd3c96369c5f54c3e60450a6d04 (patch)
treecde2212eb7aaa2aa34703d9bd0ac9255005d8e84 /modules/gdscript/gd_parser.h
parentd0d81a2470f903ae2dc2cf33574f473c2c094977 (diff)
parent6a4b4c7db45281ecbaeee3f144f77d72858f53d4 (diff)
Merge pull request #6802 from henriquelalves/master
Added small modification on gdscript parser to allow users insert '+' before variables
Diffstat (limited to 'modules/gdscript/gd_parser.h')
-rw-r--r--modules/gdscript/gd_parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gd_parser.h b/modules/gdscript/gd_parser.h
index 75653e0916..000fb70295 100644
--- a/modules/gdscript/gd_parser.h
+++ b/modules/gdscript/gd_parser.h
@@ -209,6 +209,7 @@ public:
OP_INDEX_NAMED,
//unary operators
OP_NEG,
+ OP_POS,
OP_NOT,
OP_BIT_INVERT,
OP_PREINC,