Kiwi Engine
VM for interpreter
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
KEToken.h
Go to the documentation of this file.
1 
8 #ifndef KETOKEN_H
9 #define KETOKEN_H
10 
11 #include <Coconut/Coconut.h>
12 
14 struct KEToken {
15  union {
16  CNBoolean boolValue ;
17  int64_t intValue ;
18  uint64_t uIntValue ;
19  double floatValue ;
20  struct CNList dataListValue ;
21  struct CNObjectList objectListValue ;
22  const struct CNFixedString * identifierValue ;
23  struct CNString * stringValue ;
24  void * pointerValue ;
25  } ;
26 } ;
27 
28 #endif /* KETOKEN_H */
Definition: KEToken.h:14