示例#1
0
 public Argument(string name, AstType astType, LexLocation location) : base(nameof(Argument), location)
 {
     Name    = name;
     AstType = astType;
 }
示例#2
0
 public Property(string name, AstType astType, LexLocation location) : base(nameof(Variable), location)
 {
     Name    = name;
     AstType = astType;
 }