Exemplo n.º 1
0
 public override Node VisitGroupIdent(P.GroupIdentContext context)
 {
     _keeper.CheckParenths(context);
     return(new GroupNodeR(_keeper, context.ROWGROUP(),
                           context.IDENT().Select(field => _keeper.GetStringConst(field, false))));
 }
Exemplo n.º 2
0
 public override Node VisitElementText(P.ElementTextContext context)
 {
     return(_keeper.GetStringConst((ITerminalNode)context.children[0], false));
 }