示例#1
0
 ///<see cref="IDeclarator{definitionType}.Pop(string)"/>
 public IDefinition Pop(string name)
 {
     return(scope.Pop(name));
 }
示例#2
0
 /// <summary>
 /// Allow user to remove an internal attribute with a specific name
 /// </summary>
 /// <param name="name">Name of the attribute to remove</param>
 public void RemoveAttribute(string name)
 {
     attributes.Pop(name);
 }