C# Class Microsoft.R.Core.AST.Operators.FunctionCall

Inheritance: Operator, IFunction
Mostrar archivo Open project: Microsoft/RTVS Class Usage Examples

Public Methods

Method Description
FunctionCall ( ) : System.Diagnostics
GetParameterIndex ( int position ) : int
GetParameterName ( int index, bool &namedParameter ) : string

Finds parameter name by parameter index and determines if the parameter is a named argument.

Parse ( ParseContext context, IAstNode parent ) : bool
Shift ( int offset ) : void
ShiftStartingFrom ( int position, int offset ) : void

Private Methods

Method Description
CalculateVirtualEnd ( ParseContext context ) : void

Method Details

FunctionCall() public method

public FunctionCall ( ) : System.Diagnostics
return System.Diagnostics

GetParameterIndex() public method

public GetParameterIndex ( int position ) : int
position int
return int

GetParameterName() public method

Finds parameter name by parameter index and determines if the parameter is a named argument.
public GetParameterName ( int index, bool &namedParameter ) : string
index int Parameter index
namedParameter bool If true, parameter is a named argument
return string

Parse() public method

public Parse ( ParseContext context, IAstNode parent ) : bool
context Microsoft.R.Core.Parser.ParseContext
parent IAstNode
return bool

Shift() public method

public Shift ( int offset ) : void
offset int
return void

ShiftStartingFrom() public method

public ShiftStartingFrom ( int position, int offset ) : void
position int
offset int
return void