...
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
namespace Nub.Lang.Frontend.Parsing;
|
||||
using Nub.Lang.Frontend.Lexing;
|
||||
|
||||
public class FuncCallStatementNode(FuncCall funcCall) : StatementNode
|
||||
namespace Nub.Lang.Frontend.Parsing;
|
||||
|
||||
public class FuncCallStatementNode(IReadOnlyList<Token> tokens, FuncCall funcCall) : StatementNode(tokens)
|
||||
{
|
||||
public FuncCall FuncCall { get; } = funcCall;
|
||||
|
||||
|
||||
public override string ToString() => FuncCall.ToString();
|
||||
}
|
||||
Reference in New Issue
Block a user