Constants

Details

JavaScriptCore.MAJOR_VERSION = 2

Like JavaScriptCore.get_major_version(), but from the headers used at application compile time, rather than from the library linked against at application run time.

JavaScriptCore.MICRO_VERSION = 5

Like JavaScriptCore.get_micro_version(), but from the headers used at application compile time, rather than from the library linked against at application run time.

JavaScriptCore.MINOR_VERSION = 42

Like JavaScriptCore.get_minor_version(), but from the headers used at application compile time, rather than from the library linked against at application run time.

JavaScriptCore.OPTIONS_USE_DFG = 'useDFGJIT'

Allows the DFG JIT to be used if True. Option type: JavaScriptCore.OptionType.BOOLEAN Default value: True.

New in version 2.24.

JavaScriptCore.OPTIONS_USE_FTL = 'useFTLJIT'

Allows the FTL JIT to be used if True. Option type: JavaScriptCore.OptionType.BOOLEAN Default value: True.

New in version 2.24.

JavaScriptCore.OPTIONS_USE_JIT = 'useJIT'

Allows the executable pages to be allocated for JIT and thunks if True. Option type: JavaScriptCore.OptionType.BOOLEAN Default value: True.

New in version 2.24.

JavaScriptCore.OPTIONS_USE_LLINT = 'useLLInt'

Allows the LLINT to be used if True. Option type: JavaScriptCore.OptionType.BOOLEAN Default value: True.

New in version 2.24.