AST node that represent block comments.
223224225226227228229230231232233234235
return Boolean.TRUE; } public Boolean visit(BlockComment n1, Node arg) { BlockComment n2 = (BlockComment) arg; if (!objEquals(n1.getContent(), n2.getContent())) { return Boolean.FALSE; } return Boolean.TRUE; }