tree.cpp 479 B

12345678910111213141516
  1. #include <config.h>
  2. #include "tree.hpp"
  3. BasicType BasicType::VOID("void");
  4. BasicType BasicType::BOOL("bool");
  5. BasicType BasicType::CHAR("char");
  6. BasicType BasicType::SHORT("short");
  7. BasicType BasicType::INT("int");
  8. BasicType BasicType::LONG("long");
  9. BasicType BasicType::FLOAT("float");
  10. BasicType BasicType::DOUBLE("double");
  11. StringType* StringType::_instance = nullptr;
  12. HSQUIRRELVMType* HSQUIRRELVMType::_instance = nullptr;
  13. SQIntegerType* SQIntegerType::_instance = nullptr;