C# 클래스 Jurassic.Compiler.FunctionCallExpression

Represents a function call expression.
상속: Jurassic.Compiler.OperatorExpression
파일 보기 프로젝트 열기: paulbartrum/jurassic

공개 메소드들

메소드 설명
FunctionCallExpression ( Jurassic.Compiler.Operator @operator ) : System.Collections.Generic

Creates a new instance of FunctionCallExpression.

GenerateCode ( ILGenerator generator, OptimizationInfo optimizationInfo ) : void

Generates CIL for the expression.

비공개 메소드들

메소드 설명
GenerateArgumentsArray ( ILGenerator generator, OptimizationInfo optimizationInfo ) : void

Generates an array containing the argument values.

GenerateEval ( ILGenerator generator, OptimizationInfo optimizationInfo ) : void

Generates CIL for a call to eval().

GenerateTemplateArgumentsArray ( ILGenerator generator, OptimizationInfo optimizationInfo, TemplateLiteralExpression templateLiteral ) : void

Generates an array containing the argument values for a tagged template literal.

메소드 상세

FunctionCallExpression() 공개 메소드

Creates a new instance of FunctionCallExpression.
public FunctionCallExpression ( Jurassic.Compiler.Operator @operator ) : System.Collections.Generic
@operator Jurassic.Compiler.Operator
리턴 System.Collections.Generic

GenerateCode() 공개 메소드

Generates CIL for the expression.
public GenerateCode ( ILGenerator generator, OptimizationInfo optimizationInfo ) : void
generator ILGenerator The generator to output the CIL to.
optimizationInfo OptimizationInfo Information about any optimizations that should be performed.
리턴 void