diff options
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -3,7 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | #include "bu/list.h" | 4 | #include "bu/list.h" | 
| 5 | #include "bu/stack.h" | 5 | #include "bu/stack.h" | 
| 6 | #include "bu/fstring.h" | 6 | #include "bu/string.h" | 
| 7 | #include "bu/formatter.h" | 7 | #include "bu/formatter.h" | 
| 8 | 8 | ||
| 9 | #include "astnode.h" | 9 | #include "astnode.h" | 
| @@ -24,14 +24,14 @@ public: | |||
| 24 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, float fVal ); | 24 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, float fVal ); | 
| 25 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, bool bVal ); | 25 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, bool bVal ); | 
| 26 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, | 26 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, | 
| 27 | const Bu::FString &sVal ); | 27 | const Bu::String &sVal ); | 
| 28 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, const char *sVal ); | 28 | void addNode( struct YYLTYPE &loc, AstNode::Type eType, const char *sVal ); | 
| 29 | 29 | ||
| 30 | void addNode( AstNode::Type eType ); | 30 | void addNode( AstNode::Type eType ); | 
| 31 | void addNode( AstNode::Type eType, int iVal ); | 31 | void addNode( AstNode::Type eType, int iVal ); | 
| 32 | void addNode( AstNode::Type eType, float fVal ); | 32 | void addNode( AstNode::Type eType, float fVal ); | 
| 33 | void addNode( AstNode::Type eType, bool bVal ); | 33 | void addNode( AstNode::Type eType, bool bVal ); | 
| 34 | void addNode( AstNode::Type eType, const Bu::FString &sVal ); | 34 | void addNode( AstNode::Type eType, const Bu::String &sVal ); | 
| 35 | void addNode( AstNode::Type eType, const char *sVal ); | 35 | void addNode( AstNode::Type eType, const char *sVal ); | 
| 36 | void addNode( AstNode *pNode ); | 36 | void addNode( AstNode *pNode ); | 
| 37 | 37 | ||
