ThreadConfigFlagsList.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. // Format: FLAG*(ThreadFlag, GlobalFlag)
  6. FLAG(IsCollectGarbageEnabled, CollectGarbage)
  7. FLAG(IsErrorStackTraceEnabled, errorStackTrace)
  8. FLAG(IsES6UnicodeVerboseEnabled, ES6UnicodeVerbose)
  9. FLAG_RELEASE(IsIntlEnabled, Intl)
  10. FLAG_RELEASE(IsES6SpeciesEnabled, ES6Species)
  11. FLAG_RELEASE(IsES6ClassAndExtendsEnabled, ES6Classes)
  12. FLAG_RELEASE(IsES6DateParseFixEnabled, ES6DateParseFix)
  13. FLAG_RELEASE(IsES6DefaultArgsEnabled, ES6DefaultArgs)
  14. FLAG_RELEASE(IsES6DestructuringEnabled, ES6Destructuring)
  15. FLAG_RELEASE(IsES6ForLoopSemanticsEnabled, ES6ForLoopSemantics)
  16. FLAG_RELEASE(IsES6FunctionNameFullEnabled, ES6FunctionNameFull)
  17. FLAG_RELEASE(IsES6GeneratorsEnabled, ES6Generators)
  18. FLAG_RELEASE(IsES7ExponentiationOperatorEnabled, ES7ExponentiationOperator)
  19. FLAG_RELEASE(IsES7TrailingCommaEnabled, ES7TrailingComma)
  20. FLAG_RELEASE(IsES7ValuesEntriesEnabled, ES7ValuesEntries)
  21. FLAG_RELEASE(IsES6IsConcatSpreadableEnabled, ES6IsConcatSpreadable)
  22. FLAG_RELEASE(IsES6MathExtensionsEnabled, ES6Math)
  23. FLAG_RELEASE(IsES6ModuleEnabled, ES6Module)
  24. FLAG_RELEASE(IsES6ObjectExtensionsEnabled, ES6Object)
  25. FLAG_RELEASE(IsES6NumberExtensionsEnabled, ES6Number)
  26. FLAG_RELEASE(IsES6ObjectLiteralsEnabled, ES6ObjectLiterals)
  27. FLAG_RELEASE(IsES6PromiseEnabled, ES6Promise)
  28. FLAG_RELEASE(IsES6ProxyEnabled, ES6Proxy)
  29. FLAG_RELEASE(IsES6RestEnabled, ES6Rest)
  30. FLAG_RELEASE(IsES6SpreadEnabled, ES6Spread)
  31. FLAG_RELEASE(IsES6StringExtensionsEnabled, ES6String)
  32. FLAG_RELEASE(IsES6StringPrototypeFixEnabled, ES6StringPrototypeFixes)
  33. FLAG_RELEASE(IsES6PrototypeChain, ES6PrototypeChain)
  34. FLAG_RELEASE(IsES6ToPrimitiveEnabled, ES6ToPrimitive)
  35. FLAG_RELEASE(IsES6ToLengthEnabled, ES6ToLength)
  36. FLAG_RELEASE(IsES6ToStringTagEnabled, ES6ToStringTag)
  37. FLAG_RELEASE(IsES6UnicodeExtensionsEnabled, ES6Unicode)
  38. FLAG_RELEASE(IsES6UnscopablesEnabled, ES6Unscopables)
  39. FLAG_RELEASE(IsES6RegExStickyEnabled, ES6RegExSticky)
  40. FLAG_RELEASE(IsES2018RegExDotAllEnabled, ES2018RegExDotAll)
  41. FLAG_RELEASE(IsES6RegExPrototypePropertiesEnabled, ES6RegExPrototypeProperties)
  42. FLAG_RELEASE(IsES6RegExSymbolsEnabled, ES6RegExSymbols)
  43. FLAG_RELEASE(IsES6HasInstanceEnabled, ES6HasInstance)
  44. FLAG_RELEASE(SkipSplitOnNoResult, SkipSplitOnNoResult)
  45. FLAG_RELEASE(IsES7AsyncAndAwaitEnabled, ES7AsyncAwait)
  46. FLAG_RELEASE(IsESObjectGetOwnPropertyDescriptorsEnabled, ESObjectGetOwnPropertyDescriptors)
  47. FLAG_RELEASE(IsESSharedArrayBufferEnabled, ESSharedArrayBuffer)
  48. FLAG_RELEASE(IsESDynamicImportEnabled, ESDynamicImport)
  49. FLAG_RELEASE(IsESBigIntEnabled, ESBigInt)
  50. #ifdef ENABLE_PROJECTION
  51. FLAG(AreWinRTDelegatesInterfaces, WinRTDelegateInterfaces)
  52. FLAG_RELEASE(IsWinRTAdaptiveAppsEnabled, WinRTAdaptiveApps)
  53. #endif