Property | Type | Description | |
---|---|---|---|
DebugExecutor |
Method | Description | |
---|---|---|
Execute ( string script ) : bool |
Executes a script. Does not throw any exceptions.
|
|
Execute ( string script, |
Executes a script.
|
|
OnComment ( string comment ) : void |
Occurs when a comment is found.
|
|
OnFunction ( string function, int args ) : void |
Occurs when a function is called.
|
public Execute ( string script ) : bool | ||
script | string | /// Script text. /// |
return | bool |
public Execute ( string script, |
||
script | string | /// Script text. /// |
exception | /// Thrown exception, if any, will be stored there. /// | |
return | bool |
public OnComment ( string comment ) : void | ||
comment | string | /// Found comment. /// |
return | void |
public abstract OnFunction ( string function, int args ) : void | ||
function | string | /// Found function name. /// |
args | int | /// Found function arguments. /// |
return | void |