C# 클래스 Bike.Interpreter.ScopeFrame

상속: IScope
파일 보기 프로젝트 열기: buunguyen/bike 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ScopeFrame System.Collections.Generic
this object

공개 메소드들

메소드 설명
Assign ( string name, object value ) : void
Define ( string name, object value ) : void
Exist ( string name ) : bool
Resolve ( string name ) : object
ScopeFrame ( ) : System.Collections.Generic
ScopeFrame ( BikeFunction func, ScopeFrame global, ScopeFrame parent, ScopeFrame caller ) : System.Collections.Generic

비공개 메소드들

메소드 설명
ScopeFrame ( Parser.SourceLocation location, BikeFunction func, ScopeFrame global, ScopeFrame parent, ScopeFrame caller ) : System.Collections.Generic
this ( string name ) : object

메소드 상세

Assign() 공개 메소드

public Assign ( string name, object value ) : void
name string
value object
리턴 void

Define() 공개 메소드

public Define ( string name, object value ) : void
name string
value object
리턴 void

Exist() 공개 메소드

public Exist ( string name ) : bool
name string
리턴 bool

Resolve() 공개 메소드

public Resolve ( string name ) : object
name string
리턴 object

ScopeFrame() 공개 메소드

public ScopeFrame ( ) : System.Collections.Generic
리턴 System.Collections.Generic

ScopeFrame() 공개 메소드

public ScopeFrame ( BikeFunction func, ScopeFrame global, ScopeFrame parent, ScopeFrame caller ) : System.Collections.Generic
func BikeFunction
global ScopeFrame
parent ScopeFrame
caller ScopeFrame
리턴 System.Collections.Generic