Beispiel #1
0
 public AstCall(AstCallType type, AstExpression @base, params AstArgument[] args)
     : base(@base.Source)
 {
     Type      = type;
     Base      = @base;
     Arguments = args;
 }
Beispiel #2
0
 public AstCall(AstCallType type, AstExpression @base, IReadOnlyList <AstArgument> args)
     : base(@base.Source)
 {
     Type      = type;
     Base      = @base;
     Arguments = args;
 }
Beispiel #3
0
 public AstCall ReadCall(AstCallType type)
 {
     return(new AstCall(type,
                        ReadExpression(),
                        ReadArguments()));
 }