Declaration firstDecl = (Declaration)tree.getChild(0);
Declaration secondDecl = (Declaration)tree.getChild(1);
firstDecl.updateInfo();
secondDecl.updateInfo();
HaxeType intType = TypeUtils.getInt();
assertTrue(!firstDecl.getHaxeType().equals(secondDecl.getHaxeType()));
assertTrue(secondDecl.getHaxeType().equals(intType));
assertTrue(!firstDecl.getHaxeType().equals(intType));
assertTrue(secondDecl.getChild(secondDecl.getChildCount()-1).getChild(0) instanceof Constant);