コード例 #1
0
 public override void ExitNull([NotNull] CmanParser.NullContext context)
 {
     _nodes.Push(new ASTNullLiteralNode(context, _nodes.Peek()));
 }
コード例 #2
0
 public ASTNullLiteralNode(CmanParser.NullContext context, ASTNode parent)
     : base(parent)
 {
     SetLocation(context);
 }