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