10 lines
299 B
C#
10 lines
299 B
C#
using Nub.Lang.Frontend.Lexing;
|
|
|
|
namespace Nub.Lang.Frontend.Parsing;
|
|
|
|
public class FuncCallExpressionNode(IReadOnlyList<Token> tokens, FuncCall funcCall) : ExpressionNode(tokens)
|
|
{
|
|
public FuncCall FuncCall { get; } = funcCall;
|
|
|
|
public override string ToString() => FuncCall.ToString();
|
|
} |