RuntimeDebugPch.h 963 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. #include "Runtime.h"
  7. #ifdef ENABLE_SCRIPT_DEBUGGING
  8. #ifdef ENABLE_MUTATION_BREAKPOINT
  9. // Not enabled in ChakraCore
  10. #include "activdbg_private.h"
  11. #endif
  12. #include "Debug/DebuggingFlags.h"
  13. #include "Debug/DiagProbe.h"
  14. #include "Debug/DiagObjectModel.h"
  15. #include "Debug/DiagStackFrame.h"
  16. #include "Debug/BreakpointProbe.h"
  17. #include "Debug/DebugDocument.h"
  18. #include "Debug/DebugManager.h"
  19. #include "Debug/ProbeContainer.h"
  20. #include "Debug/DebugContext.h"
  21. #include "Debug/DiagHelperMethodWrapper.h"
  22. #ifdef ENABLE_MUTATION_BREAKPOINT
  23. #include "Debug/MutationBreakpoint.h"
  24. #endif
  25. #endif