示例#1
0
 public void AddConstDeclaration(ConstDeclaration cd)
 {
     m_scope.AddConstDeclaration(cd);
 }
示例#2
0
文件: Scope.cs 项目: cephdon/GoNet
 public void AddConstDeclaration(ConstDeclaration cd)
 {
     AddChild(cd);
     m_constDeclarations.Add(NumChildren() - 1);
 }