forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRuntimeDebugPch.h
More file actions
29 lines (25 loc) · 963 Bytes
/
RuntimeDebugPch.h
File metadata and controls
29 lines (25 loc) · 963 Bytes
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
#include "Runtime.h"
#ifdef ENABLE_SCRIPT_DEBUGGING
#ifdef ENABLE_MUTATION_BREAKPOINT
// Not enabled in ChakraCore
#include "activdbg_private.h"
#endif
#include "Debug/DebuggingFlags.h"
#include "Debug/DiagProbe.h"
#include "Debug/DiagObjectModel.h"
#include "Debug/DiagStackFrame.h"
#include "Debug/BreakpointProbe.h"
#include "Debug/DebugDocument.h"
#include "Debug/DebugManager.h"
#include "Debug/ProbeContainer.h"
#include "Debug/DebugContext.h"
#include "Debug/DiagHelperMethodWrapper.h"
#ifdef ENABLE_MUTATION_BREAKPOINT
#include "Debug/MutationBreakpoint.h"
#endif
#endif