예제 #1
0
 public void AddTypeDeclaration(TypeDeclaration td)
 {
     m_scope.AddTypeDeclaration(td);
 }
예제 #2
0
파일: Scope.cs 프로젝트: cephdon/GoNet
 public void AddTypeDeclaration(TypeDeclaration td)
 {
     AddChild(td);
     m_typeDeclarations.Add(NumChildren() - 1);
 }