Generates llvm assembly code for additions :-)
[ozulis.git] / src / ast / symbol.hh
blobac6cdc113bbd7c1a53f0a5ce80dde554d36007c8
1 #ifndef SYMBOL_HH
2 # define SYMBOL_HH
4 # include <string>
6 namespace ast
8 class Type;
10 struct Symbol
12 std::string name;
13 Type * type;
14 /// @todo add a memory location
18 #endif /* !SYMBOL_HH */