ParserPch.h 917 B

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