org.sonar.javascript.model
Interface BinaryOperatorTree

All Superinterfaces:
ExpressionTree, Tree
All Known Implementing Classes:
TreeImpl.BinaryOperatorTreeImpl

public interface BinaryOperatorTree
extends ExpressionTree

Binary Operator. Bitwise Shift Operators. Relational Operators. Equality Operators. Binary Bitwise Operators. Binary Logical Operators. Assignment Operators.

   leftOperand() operator() rightOperand()
 

This interface is not intended to be implemented by clients.


Method Summary
 ExpressionTree leftOperand()
           
 com.sonar.sslr.api.AstNodeType operator()
           
 ExpressionTree rightOperand()
           
 
Methods inherited from interface org.sonar.javascript.model.Tree
as, getLine, is
 

Method Detail

leftOperand

ExpressionTree leftOperand()

operator

com.sonar.sslr.api.AstNodeType operator()

rightOperand

ExpressionTree rightOperand()


Copyright © 2011-2014 SonarSource and Eriks Nukis. All Rights Reserved.