| 12345678910111213141516171819202122232425262728 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #pragma once
- #include <intsafe.h>
- // Parser Includes
- #include "Parser.h"
- #include "keywords.h"
- #include "globals.h"
- #include "RegexCommon.h"
- #include "DebugWriter.h"
- #include "RegexStats.h"
- #include "StandardChars.h"
- #include "OctoquadIdentifier.h"
- #include "RegexCompileTime.h"
- #include "RegexParser.h"
- #include "RegexPattern.h"
- // Runtime includes
- #include "..\Runtime\runtime.h"
- #include "..\Runtime\ByteCode\Symbol.h"
- #include "..\Runtime\ByteCode\Scope.h"
- #include "..\Runtime\ByteCode\FuncInfo.h"
- #include "..\Runtime\ByteCode\ScopeInfo.h"
|