| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft Corporation and contributors. All rights reserved.
- // Copyright (c) ChakraCore Project Contributors. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- // Format: FLAG*(ThreadFlag, GlobalFlag)
- FLAG(IsCollectGarbageEnabled, CollectGarbage)
- FLAG(IsErrorStackTraceEnabled, errorStackTrace)
- FLAG(IsES6UnicodeVerboseEnabled, ES6UnicodeVerbose)
- FLAG_RELEASE(IsIntlEnabled, Intl)
- FLAG_RELEASE(IsES6DateParseFixEnabled, ES6DateParseFix)
- FLAG_RELEASE(IsES6FunctionNameFullEnabled, ES6FunctionNameFull)
- FLAG_RELEASE(IsES6GeneratorsEnabled, ES6Generators)
- FLAG_RELEASE(IsES7ExponentiationOperatorEnabled, ES7ExponentiationOperator)
- FLAG_RELEASE(IsES7TrailingCommaEnabled, ES7TrailingComma)
- FLAG_RELEASE(IsES7ValuesEntriesEnabled, ES7ValuesEntries)
- FLAG_RELEASE(IsES6IsConcatSpreadableEnabled, ES6IsConcatSpreadable)
- FLAG_RELEASE(IsES6MathExtensionsEnabled, ES6Math)
- FLAG_RELEASE(IsES6ModuleEnabled, ES6Module)
- FLAG_RELEASE(IsES6ObjectExtensionsEnabled, ES6Object)
- FLAG_RELEASE(IsES6NumberExtensionsEnabled, ES6Number)
- FLAG_RELEASE(IsES6ObjectLiteralsEnabled, ES6ObjectLiterals)
- FLAG_RELEASE(IsES6ProxyEnabled, ES6Proxy)
- FLAG_RELEASE(IsES6RestEnabled, ES6Rest)
- FLAG_RELEASE(IsES6SpreadEnabled, ES6Spread)
- FLAG_RELEASE(IsES6StringExtensionsEnabled, ES6String)
- FLAG_RELEASE(IsES6StringPrototypeFixEnabled, ES6StringPrototypeFixes)
- FLAG_RELEASE(IsES6PrototypeChain, ES6PrototypeChain)
- FLAG_RELEASE(IsES6ToPrimitiveEnabled, ES6ToPrimitive)
- FLAG_RELEASE(IsES6ToLengthEnabled, ES6ToLength)
- FLAG_RELEASE(IsES6ToStringTagEnabled, ES6ToStringTag)
- FLAG_RELEASE(IsES6UnicodeExtensionsEnabled, ES6Unicode)
- FLAG_RELEASE(IsES6RegExStickyEnabled, ES6RegExSticky)
- FLAG_RELEASE(IsES2018RegExDotAllEnabled, ES2018RegExDotAll)
- FLAG_RELEASE(IsES6RegExPrototypePropertiesEnabled, ES6RegExPrototypeProperties)
- FLAG_RELEASE(IsES6RegExSymbolsEnabled, ES6RegExSymbols)
- FLAG_RELEASE(SkipSplitOnNoResult, SkipSplitOnNoResult)
- FLAG_RELEASE(IsES7AsyncAndAwaitEnabled, ES7AsyncAwait)
- FLAG_RELEASE(IsESObjectGetOwnPropertyDescriptorsEnabled, ESObjectGetOwnPropertyDescriptors)
- FLAG_RELEASE(IsESSharedArrayBufferEnabled, ESSharedArrayBuffer)
- FLAG_RELEASE(IsESDynamicImportEnabled, ESDynamicImport)
- FLAG_RELEASE(IsESImportMetaEnabled, ESImportMeta)
- FLAG_RELEASE(IsESBigIntEnabled, ESBigInt)
- FLAG_RELEASE(IsESNumericSeparatorEnabled, ESNumericSeparator)
- FLAG_RELEASE(IsESHashbangEnabled, ESHashbang)
- FLAG_RELEASE(IsESNullishCoalescingOperatorEnabled, ESNullishCoalescingOperator)
- FLAG_RELEASE(IsESExportNsAsEnabled, ESExportNsAs)
- FLAG_RELEASE(IsESSymbolDescriptionEnabled, ESSymbolDescription)
- FLAG_RELEASE(IsESPromiseAnyEnabled, ESPromiseAny)
- FLAG_RELEASE(IsESArrayFindFromLastEnabled , ESArrayFindFromLast)
- FLAG_RELEASE(IsESGlobalThisEnabled, ESGlobalThis)
- FLAG_RELEASE(IsES2018AsyncIterationEnabled, ES2018AsyncIteration)
- FLAG_RELEASE(IsESTopLevelAwaitEnabled, ESTopLevelAwait)
- #ifdef ENABLE_TEST_HOOKS
- FLAG_RELEASE(Force32BitByteCode, Force32BitByteCode)
- #endif
|