コード例 #1
0
ファイル: Scope.cs プロジェクト: noilly/ginger
 public void add(Scope scope)
 {
     children.Add(scope);
 }
コード例 #2
0
ファイル: Scope.cs プロジェクト: noilly/ginger
 public Scope(Scope parent)
 {
     this._parent = parent;
     initialise();
 }