Свойство | Тип | Описание |
---|
Метод | Описание | |
---|---|---|
CreateScope ( ) : void |
Creates new default nested scope
|
|
CreateScope ( IScriptScope scope ) : void |
Replace existing scope with new one
|
|
GetFunctionDefinition ( string name ) : IInvokable |
Finds function definition in current scope
|
|
GetItem ( string id, bool throwException ) : object | ||
IsBreak ( ) : bool |
Break state
|
|
IsContinue ( ) : bool |
Continue state
|
|
IsReturn ( ) : bool |
Return state
|
|
RemoveLocalScope ( ) : void |
Remove Local Scope
|
|
ScriptContext ( ) : System |
Creates new Script Context with Default scope
|
|
SetBreak ( bool val ) : void |
Set break state of run-time
|
|
SetContinue ( bool val ) : void |
Set continue state of run-time
|
|
SetItem ( string id, object value ) : void | ||
SetReturn ( bool val ) : void |
Set return state of run-time
|
public CreateScope ( IScriptScope scope ) : void | ||
scope | IScriptScope | |
Результат | void |
public GetFunctionDefinition ( string name ) : IInvokable | ||
name | string | function name |
Результат | IInvokable |
public GetItem ( string id, bool throwException ) : object | ||
id | string | |
throwException | bool | |
Результат | object |
public SetBreak ( bool val ) : void | ||
val | bool | true or false |
Результат | void |
public SetContinue ( bool val ) : void | ||
val | bool | true or false |
Результат | void |
public SetItem ( string id, object value ) : void | ||
id | string | |
value | object | |
Результат | void |
public SetReturn ( bool val ) : void | ||
val | bool | true or false |
Результат | void |