mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
23 lines
430 B
C++
23 lines
430 B
C++
|
#ifndef COMPILER_GENERATOR_H_INCLUDED
|
||
|
#define COMPILER_GENERATOR_H_INCLUDED
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include <components/interpreter/types.hpp>
|
||
|
|
||
|
namespace Compiler
|
||
|
{
|
||
|
class Literals;
|
||
|
|
||
|
namespace Generator
|
||
|
{
|
||
|
typedef std::vector<Interpreter::Type_Code> CodeContainer;
|
||
|
|
||
|
void assignIntToLocal (CodeContainer& code, Literals& literals, char localType,
|
||
|
int localIndex, int value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|