Searched refs:binaryTree (Results 1 – 2 of 2) sorted by relevance
1107 BinaryTree binaryTree = (BinaryTree) parent; in okToReadBeforeInitialized() local1108 Tree.Kind kind = binaryTree.getKind(); in okToReadBeforeInitialized()1110 ExpressionTree left = binaryTree.getLeftOperand(); in okToReadBeforeInitialized()1111 ExpressionTree right = binaryTree.getRightOperand(); in okToReadBeforeInitialized()
2581 BinaryTree binaryTree = (BinaryTree) expression;2582 if (precedence(binaryTree) == precedence) {2583 walkInfix(precedence, binaryTree.getLeftOperand(), operands, operators);2585 walkInfix(precedence, binaryTree.getRightOperand(), operands, operators);