//
// With Parenthesis
@Test
public void testBinOpWithParenthesis() throws RecognitionException {
HaxeTree tree = parseExpression("z*(x*y)");
assertTrue(tree instanceof Binary);
assertTrue(tree.getChildCount() == 2);
Binary binaryNode = (Binary)tree;
assertTrue(binaryNode.getLeftOperand() instanceof Usage);
assertTrue(binaryNode.getRightOperand() instanceof Binary);
}