ParserPch.h 925 B

1234567891011121314151617181920212223242526272829
  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. // Parser Includes
  7. #include "Parser.h"
  8. #include "keywords.h"
  9. #include "globals.h"
  10. #include "RegexCommon.h"
  11. #include "DebugWriter.h"
  12. #include "RegexStats.h"
  13. #include "StandardChars.h"
  14. #include "OctoquadIdentifier.h"
  15. #include "RegexCompileTime.h"
  16. #include "RegexParser.h"
  17. #include "RegexPattern.h"
  18. // Runtime includes
  19. #include "Runtime.h"
  20. #include "ByteCode/Symbol.h"
  21. #include "ByteCode/Scope.h"
  22. #include "ByteCode/FuncInfo.h"
  23. #include "ByteCode/ScopeInfo.h"
  24. #include "Library/JavascriptFunction.h"
  25. #include "Language/JavascriptStackWalker.h"