22 lines
545 B
Haxe
22 lines
545 B
Haxe
package node.inspector.runtime;
|
|
|
|
/**
|
|
Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified.
|
|
**/
|
|
typedef CallArgument = {
|
|
/**
|
|
Primitive value or serializable javascript object.
|
|
**/
|
|
@:optional
|
|
var value : Dynamic;
|
|
/**
|
|
Primitive value which can not be JSON-stringified.
|
|
**/
|
|
@:optional
|
|
var unserializableValue : String;
|
|
/**
|
|
Remote object handle.
|
|
**/
|
|
@:optional
|
|
var objectId : String;
|
|
}; |