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

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