All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.dart.compiler.backend.js.ast.JsBinaryOperation Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Copyright (c) 2011, the Dart project authors.  Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

package com.google.dart.compiler.backend.js.ast;

import org.jetbrains.annotations.Nullable;

public final class JsBinaryOperation extends JsExpressionImpl {
    private JsExpression arg1;
    private JsExpression arg2;
    private final JsBinaryOperator op;

    public JsBinaryOperation(JsBinaryOperator op) {
        this(op, null, null);
    }

    public JsBinaryOperation(JsBinaryOperator op, @Nullable JsExpression arg1, @Nullable JsExpression arg2) {
        this.op = op;
        this.arg1 = arg1;
        this.arg2 = arg2;
    }

    public JsExpression getArg1() {
        return arg1;
    }

    public JsExpression getArg2() {
        return arg2;
    }

    public JsBinaryOperator getOperator() {
        return op;
    }

    @Override
    public void accept(JsVisitor v) {
        v.visitBinaryExpression(this);
    }

    @Override
    public void acceptChildren(JsVisitor visitor) {
        if (op.isAssignment()) {
            visitor.acceptLvalue(arg1);
        }
        else {
            visitor.accept(arg1);
        }
        visitor.accept(arg2);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy