C# 클래스 Jurassic.Compiler.ForInStatement

Represents a javascript for-in statement.
상속: Statement
파일 보기 프로젝트 열기: paulbartrum/jurassic 1 사용 예제들

공개 메소드들

메소드 설명
ForInStatement ( IList labels ) : System

Creates a new ForInStatement instance.

GenerateCode ( ILGenerator generator, OptimizationInfo optimizationInfo ) : void

Generates CIL for the statement.

ToString ( int indentLevel ) : string

Converts the statement to a string.

메소드 상세

ForInStatement() 공개 메소드

Creates a new ForInStatement instance.
public ForInStatement ( IList labels ) : System
labels IList The labels that are associated with this statement.
리턴 System

GenerateCode() 공개 메소드

Generates CIL for the statement.
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

ToString() 공개 메소드

Converts the statement to a string.
public ToString ( int indentLevel ) : string
indentLevel int The number of tabs to include before the statement.
리턴 string