aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_type_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LuaSL_type_parser.h')
-rw-r--r--LuaSL/src/LuaSL_type_parser.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/LuaSL/src/LuaSL_type_parser.h b/LuaSL/src/LuaSL_type_parser.h
deleted file mode 100644
index 76842db..0000000
--- a/LuaSL/src/LuaSL_type_parser.h
+++ /dev/null
@@ -1,45 +0,0 @@
1/*
2 * TypeParser.h
3 * Definition of the structure used internally by the parser and lexer
4 * to exchange data.
5 */
6
7#ifndef __TYPE_PARSER_H__
8#define __TYPE_PARSER_H__
9
10#include "LuaSL_LSL_tree.h"
11
12/**
13 * @brief The structure used by flex and bison
14 */
15typedef union tagTypeParser
16{
17 SExpression *expression;
18 int value;
19 int ival;
20 float fval;
21 char *sval;
22// class LLScriptType *type;
23// class LLScriptConstant *constant;
24// class LLScriptIdentifier *identifier;
25// class LLScriptSimpleAssignable *assignable;
26// class LLScriptGlobalVariable *global;
27// class LLScriptEvent *event;
28// class LLScriptEventHandler *handler;
29// class LLScriptExpression *expression;
30// class LLScriptStatement *statement;
31// class LLScriptGlobalFunctions *global_funcs;
32// class LLScriptFunctionDec *global_decl;
33// class LLScriptState *state;
34// class LLScritpGlobalStorage *global_store;
35// class LLScriptScript *script;
36}STypeParser;
37
38// define the type for flex and bison
39#define YYSTYPE STypeParser
40
41int yyerror(const char *msg);
42
43
44#endif // __TYPE_PARSER_H__
45