Ejemplo n.º 1
0
 public AliasedName(Identifier orig, Identifier alias, string filename, int start, int end) : base(filename, start, end)
 {
     this.orig = new DottedName(new List <Identifier> {
         orig
     }, filename, start, end);
     this.alias = alias;
 }
Ejemplo n.º 2
0
 public FromStatement(DottedName name, List <AliasedName> aliasedNames, string filename, int pos, int end)
     : base(filename, pos, end)
 {
     if (aliasedNames == null)
     {
         throw new ArgumentNullException("aliasedNames");
     }
     this.DottedName   = name;
     this.AliasedNames = aliasedNames;
 }
Ejemplo n.º 3
0
 public AliasedName(DottedName orig, Identifier alias, string filename, int start, int end) : base(filename, start, end)
 {
     this.orig  = orig;
     this.alias = alias;
 }
Ejemplo n.º 4
0
 public Decorator(DottedName dn, List <Argument> args, string filename, int start, int end)
     : base(filename, start, end)
 {
     this.className = dn;
     this.arguments = args;
 }