Class JSValue
A JavaScript value reference.
Constructors
| Name | Description |
this
(machine, value)
|
Construct a reference to a slot value belonging to machine.
|
Fields
| Name | Type | Description |
id
|
const(short) | ID of this value in it's Machine.
|
slot
|
const(xs.bindings.xsSlotRecord) | Machine slot of this value.
|
Properties
| Name | Type | Description |
boolean[get]
|
bool | Convert this value to a bool value.
|
convertableToObject[get]
|
bool | Whether this value is convertable to a JSObject value.
|
integer[get]
|
int | Convert this value to an int value.
|
number[get]
|
double | Convert this value to a double value.
|
object[get]
|
JSObject | Convert this value to a JSObject value.
|
string_[get]
|
string | Convert this value to a string value.
|
unsigned[get]
|
uint | Convert this value to an uint value.
|