Exemplo n.º 1
0
        protected override bool Visit(ASTGreaterThan node)
        {
            if (!VisitArethetic(node))
            {
                return(false);
            }

            node.TypeInfo = Cache.GetBoolean();
            return(true);
        }
Exemplo n.º 2
0
 protected override bool Visit(ASTGreaterThan node) => EmitBinary <CGreaterThan>(node);
Exemplo n.º 3
0
 public bool Visit(ASTGreaterThan node)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 protected abstract bool Visit(ASTGreaterThan node);