@Test @Ignore("This test should really be in tests for operator shuffling, not in the parser test")
public void separates_two_colons_into_a_message_send() {
Message result = parse("::foo");
assertEquals("::", result.name());
assertEquals("foo", ((Message)result.arguments().seq().first()).name());
assertNull(result.next());
}
@Test @Ignore("This test should really be in tests for operator shuffling, not in the parser test")
public void separates_three_colons_into_a_message_send() {