jackfiled
cf19f8197e
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/3 Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
9 lines
217 B
C#
9 lines
217 B
C#
namespace CanonSharp.Pascal.SyntaxTree;
|
|
|
|
public sealed class CharValueNode(char value) : SyntaxNodeBase
|
|
{
|
|
public override SyntaxNodeType NodeType => SyntaxNodeType.CharValue;
|
|
|
|
public char Value => value;
|
|
}
|