assertEquals(7, position.getOffset()); // we would like this to be 5, but 7 is a good start
// assertEquals(6, position.getLength());
}
public void testMultiLineAssignment() {
final DetailedSourcePosition position = detailedSource(find(parse("true\nx = \n14\nfalse\n"), LocalAsgnNode.class));
assertEquals("test", position.getFile());
assertEquals(3, position.getLine()); // we would say this is wrong - should be 1 - but we're interested in the offset here
assertEquals(7, position.getOffset()); // we would like this to be 5, but 7 is a good start
// assertEquals(7, position.getLength());
}