Method | Description | |
---|---|---|
DebugExecutor ( ) : System |
Initializes new instance using Console.Out as an output.
|
|
DebugExecutor ( |
Initializes new instance using output as an output.
|
|
Execute ( string script ) : bool |
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 DebugExecutor ( |
||
output | /// Output where debug information will be written. /// | |
return | System |
public Execute ( string script ) : bool | ||
script | string | /// Script text. /// |
return | bool |
public OnComment ( string comment ) : void | ||
comment | string | /// Found comment. /// |
return | void |
public OnFunction ( string function, int args ) : void | ||
function | string | /// Found function name. /// |
args | int | /// Found function arguments. /// |
return | void |