コード例 #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
ファイル: TypeChecker.cs プロジェクト: Hejsil/TheLang2
 public bool Visit(ASTLessThan node)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 protected abstract bool Visit(ASTLessThan node);