diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 22:27:59 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 22:27:59 -0700 |
commit | f66458278ce3663397fc985a1253c85b74f011e6 (patch) | |
tree | 785e2fb51a91fe277c698ea84009e0052ef6555e /src/astnode.h | |
parent | f404d991aa53ed81855e51b597bfe1d5c2288b42 (diff) | |
download | stage-f66458278ce3663397fc985a1253c85b74f011e6.tar.gz stage-f66458278ce3663397fc985a1253c85b74f011e6.tar.bz2 stage-f66458278ce3663397fc985a1253c85b74f011e6.tar.xz stage-f66458278ce3663397fc985a1253c85b74f011e6.zip |
Most AstNodes work now.
Next up: loops, proper variable references with scopes, and gotos.
Diffstat (limited to 'src/astnode.h')
-rw-r--r-- | src/astnode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/astnode.h b/src/astnode.h index c0a8eea..63bf64f 100644 --- a/src/astnode.h +++ b/src/astnode.h | |||
@@ -30,6 +30,7 @@ public: | |||
30 | tNegate = 0x01000012, | 30 | tNegate = 0x01000012, |
31 | tIn = 0x01000013, | 31 | tIn = 0x01000013, |
32 | tGoto = 0x01000014, | 32 | tGoto = 0x01000014, |
33 | tSwap = 0x01000015, | ||
33 | 34 | ||
34 | tLeafLiteral = 0x02000000, | 35 | tLeafLiteral = 0x02000000, |
35 | tVarName = 0x02000001, | 36 | tVarName = 0x02000001, |