RuntimeByteCodePch.h 843 B

123456789101112131415161718192021222324
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. #include "Parser.h"
  7. #include "Runtime.h"
  8. #include "ByteCode/Symbol.h"
  9. #include "ByteCode/Scope.h"
  10. #include "ByteCode/FuncInfo.h"
  11. #include "ByteCode/ScopeInfo.h"
  12. #include "ByteCode/StatementReader.h"
  13. #include "ByteCode/ByteCodeDumper.h"
  14. #include "ByteCode/ByteCodeWriter.h"
  15. #include "ByteCode/ByteCodeGenerator.h"
  16. #include "ByteCode/OpCodeUtilAsmJs.h"
  17. #include "Language/AsmJsTypes.h"
  18. #include "ByteCode/ByteCodeApi.h"
  19. #include "ByteCode/BackendOpCodeAttr.h"