Exemple #1
0
 public ParameterDeclaration(AstType type, string name)
 {
     this.Type = type;
     this.Name = name;
 }
Exemple #2
0
 public UsingAliasDeclaration(string alias, AstType import)
 {
     AddChild(Identifier.Create (alias, AstLocation.Empty), AliasRole);
     AddChild(import, ImportRole);
 }