gi-javascriptcore-4.0.18: JavaScriptCore bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (inaki@blueleaf.cc)
Safe HaskellNone
LanguageHaskell2010

GI.JavaScriptCore.Enums

Contents

Description

 
Synopsis

Enumerations

CheckSyntaxMode

data CheckSyntaxMode Source #

Enum values to specify a mode to check for syntax errors in contextCheckSyntax.

Constructors

CheckSyntaxModeScript

mode to check syntax of a script

CheckSyntaxModeModule

mode to check syntax of a module

AnotherCheckSyntaxMode Int

Catch-all for unknown values

CheckSyntaxResult

data CheckSyntaxResult Source #

Enum values to specify the result of contextCheckSyntax.

Constructors

CheckSyntaxResultSuccess

no errors

CheckSyntaxResultRecoverableError

recoverable syntax error

CheckSyntaxResultIrrecoverableError

irrecoverable syntax error

CheckSyntaxResultUnterminatedLiteralError

unterminated literal error

CheckSyntaxResultOutOfMemoryError

out of memory error

CheckSyntaxResultStackOverflowError

stack overflow error

AnotherCheckSyntaxResult Int

Catch-all for unknown values

Instances
Enum CheckSyntaxResult Source # 
Instance details

Defined in GI.JavaScriptCore.Enums

Eq CheckSyntaxResult Source # 
Instance details

Defined in GI.JavaScriptCore.Enums

Ord CheckSyntaxResult Source # 
Instance details

Defined in GI.JavaScriptCore.Enums

Show CheckSyntaxResult Source # 
Instance details

Defined in GI.JavaScriptCore.Enums

OptionType

data OptionType Source #

Enum values for options types.

Since: 2.24

Constructors

OptionTypeBoolean

A Bool option type.

OptionTypeInt

A gint option type.

OptionTypeUint

A guint option type.

OptionTypeSize

A gsize options type.

OptionTypeDouble

A gdouble options type.

OptionTypeString

A string option type.

OptionTypeRangeString

A range string option type.

AnotherOptionType Int

Catch-all for unknown values