Skip to content
Snippets Groups Projects
Select Git revision
  • 7ae5eed0ed1509cbd54ae8c603c56faf4836b439
  • live_exam_os_ubuntu default protected
2 results

vmCred2pdf.go

Blame
  • Diff.java 552 B
    /*
     * Represent an equal comparaison expression node inside the AST.
     */
    
    public class Diff extends Relation {
        /**
         * Constructor
         */
        public Diff(Expression operandeGauche, Expression operandeDroite, String fl, int line, int col) {
            super(operandeGauche, operandeDroite, fl, line, col);
        }
    
        /**
         * Get the binary operator
         */
        public String operateur() {
            return "<>";
        }
    
        /**
         * Accepts a AST visitor
         */
        Object accept(ASTVisitor visitor){
            return visitor.visit(this);
        }
    }