-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathParserPch.h
29 lines (25 loc) · 925 Bytes
/
ParserPch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//-------------------------------------------------------------------------------------------------------
// 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
// 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.h"
#include "ByteCode/Symbol.h"
#include "ByteCode/Scope.h"
#include "ByteCode/FuncInfo.h"
#include "ByteCode/ScopeInfo.h"
#include "Library/JavascriptFunction.h"
#include "Language/JavascriptStackWalker.h"