1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#ifndef COMPILER_LITERALS_H_INCLUDED
#define COMPILER_LITERALS_H_INCLUDED
#include <string>
#include <vector>
#include <components/interpreter/types.hpp>
namespace Compiler
{
/// \brief Literal values.
class Literals
{
std::vector<Interpreter::Type_Integer> mIntegers;
std::vector<Interpreter::Type_Float> mFloats;
std::vector<std::string> mStrings;
public:
const std::vector<Interpreter::Type_Integer>& getIntegers() const { return mIntegers; }
const std::vector<Interpreter::Type_Float>& getFloats() const { return mFloats; }
const std::vector<std::string>& getStrings() const { return mStrings; }
int addInteger(Interpreter::Type_Integer value);
///< add integer liternal and return index.
int addFloat(Interpreter::Type_Float value);
///< add float literal and return value.
int addString(const std::string& value);
///< add string literal and return value.
void clear();
///< remove all literals.
};
}
#endif
|