CanonSharp/CanonSharp.Pascal/SyntaxTree/IntegerValueNode.cs

9 lines
221 B
C#
Raw Permalink Normal View History

namespace CanonSharp.Pascal.SyntaxTree;
public sealed class IntegerValueNode(int value) : SyntaxNodeBase
{
public override SyntaxNodeType NodeType => SyntaxNodeType.IntegerValue;
public int Value => value;
}