프로퍼티 | 타입 | 설명 | |
---|---|---|---|
NO_ARGS | IList |
||
arguments | IList |
||
lp | int | ||
rp | int | ||
target | AstNode |
메소드 | 설명 | |
---|---|---|
AddArgument ( AstNode arg ) : void |
Adds an argument to the list, and sets its parent to this node. Adds an argument to the list, and sets its parent to this node. |
|
FunctionCall ( ) : System.Collections.Generic | ||
FunctionCall ( int pos ) : System.Collections.Generic | ||
FunctionCall ( int pos, int len ) : System.Collections.Generic | ||
GetArguments ( ) : IList |
Returns function argument list
|
|
GetLp ( ) : int |
Returns left paren position, -1 if missing
|
|
GetRp ( ) : int |
Returns right paren position, -1 if missing
|
|
GetTarget ( ) : AstNode |
Returns node evaluating to the function to call
|
|
SetArguments ( IList |
Sets function argument list
|
|
SetLp ( int lp ) : void |
Sets left paren position
|
|
SetParens ( int lp, int rp ) : void |
Sets both paren positions
|
|
SetRp ( int rp ) : void |
Sets right paren position
|
|
SetTarget ( AstNode target ) : void |
Sets node evaluating to the function to call, and sets its parent to this node. Sets node evaluating to the function to call, and sets its parent to this node. |
|
ToSource ( int depth ) : string | ||
Visit ( NodeVisitor v ) : void |
Visits this node, the target object, and the arguments. Visits this node, the target object, and the arguments. |
public AddArgument ( AstNode arg ) : void | ||
arg | AstNode | the argument node to add to the list |
리턴 | void |
public FunctionCall ( ) : System.Collections.Generic | ||
리턴 | System.Collections.Generic |
public FunctionCall ( int pos ) : System.Collections.Generic | ||
pos | int | |
리턴 | System.Collections.Generic |
public FunctionCall ( int pos, int len ) : System.Collections.Generic | ||
pos | int | |
len | int | |
리턴 | System.Collections.Generic |
public SetArguments ( IList |
||
arguments | IList |
/// function argument list. Can be
/// null
/// ,
/// in which case any existing args are removed.
/// |
리턴 | void |
public SetTarget ( AstNode target ) : void | ||
target | AstNode | node evaluating to the function to call. |
리턴 | void |