#ifndef COMPILER_GENERATOR_H_INCLUDED #define COMPILER_GENERATOR_H_INCLUDED #include #include namespace Compiler { class Literals; namespace Generator { typedef std::vector CodeContainer; void pushInt (CodeContainer& code, Literals& literals, int value); void assignToLocal (CodeContainer& code, char localType, int localIndex, const CodeContainer& value, char valueType); } } #endif