diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-06-11 04:05:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-06-11 04:05:22 +0000 |
commit | 380b36be3352cd9a5c93dbd67db25346166a8547 (patch) | |
tree | f69613e7b6238744c34af6dc14d6feb68a4f6706 /src/object.h | |
parent | 3905f9962bbfb312c3804ff9c7b7d1e0fa203cbc (diff) | |
download | libgats-380b36be3352cd9a5c93dbd67db25346166a8547.tar.gz libgats-380b36be3352cd9a5c93dbd67db25346166a8547.tar.bz2 libgats-380b36be3352cd9a5c93dbd67db25346166a8547.tar.xz libgats-380b36be3352cd9a5c93dbd67db25346166a8547.zip |
All languages now support Null except for python and php, python is proving
slightly trickier.
Diffstat (limited to 'src/object.h')
-rw-r--r-- | src/object.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/object.h b/src/object.h index b2b1b92..2724189 100644 --- a/src/object.h +++ b/src/object.h | |||
@@ -18,7 +18,8 @@ namespace Gats | |||
18 | typeString, | 18 | typeString, |
19 | typeInteger, | 19 | typeInteger, |
20 | typeFloat, | 20 | typeFloat, |
21 | typeBoolean | 21 | typeBoolean, |
22 | typeNull | ||
22 | }; | 23 | }; |
23 | 24 | ||
24 | /** | 25 | /** |