}
@Test
public void handles_carriage_return_escape_in_text() {
Message result = parse("\"foo \\r\"");
assertEquals("foo \r", ((Text)result.literal()).text());
}
@Test
public void handles_carriage_return_escape_in_text_with_alt_syntax() {
Message result = parse("%[foo \\r]");