public Argument(string name, AstType astType, LexLocation location) : base(nameof(Argument), location) { Name = name; AstType = astType; }
public Property(string name, AstType astType, LexLocation location) : base(nameof(Variable), location) { Name = name; AstType = astType; }