예제 #1
0
        protected override bool Visit(ASTLessThan node)
        {
            if (!VisitArethetic(node))
            {
                return(false);
            }

            node.TypeInfo = Cache.GetBoolean();
            return(true);
        }
예제 #2
0
 protected override bool Visit(ASTLessThan node) => EmitBinary <CLesserThan>(node);
예제 #3
0
 public bool Visit(ASTLessThan node)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 protected abstract bool Visit(ASTLessThan node);