type

LibStatus

@Js
@Serializable { simple=true }
enum class LibStatus : Enum

LibStatus

enum

notLoaded

The library has not been loaded into the namespace yet

ok

The library was successfully loaded into namespace

err

Load was attempted, but failed due to compiler error

constructors

fromStr

Return the LibStatus instance for the specified name.

fields

vals

List of LibStatus values indexed by ordinal

Slot Details

err

const static LibStatus err := ...

Load was attempted, but failed due to compiler error

fromStr

static new fromStr(Str name, Bool checked := true)

Return the LibStatus instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

notLoaded

const static LibStatus notLoaded := ...

The library has not been loaded into the namespace yet

ok

const static LibStatus ok := ...

The library was successfully loaded into namespace

vals

const static LibStatus[] vals := ...

List of LibStatus values indexed by ordinal