aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java b/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
index 20ea5c0b71..858e0cafe4 100644
--- a/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
+++ b/src/test/java/com/google/devtools/build/lib/syntax/ParserTest.java
@@ -555,6 +555,16 @@ public class ParserTest extends EvaluationTestCase {
assertExpressionLocationCorrect("not True");
}
+ @Test
+ public void testLoadStatementPosition() throws Exception {
+ String input = "load(':foo.bzl', 'bar')";
+ LoadStatement stmt = (LoadStatement) parseFile(input).get(0);
+ assertThat(getText(input, stmt)).isEqualTo(input);
+ // Also try it with another token at the end (newline), which broke the location in the past.
+ stmt = (LoadStatement) parseFile(input + "\n").get(0);
+ assertThat(getText(input, stmt)).isEqualTo(input);
+ }
+
private void assertExpressionLocationCorrect(String exprStr) {
Expression expr = parseExpression(exprStr);
assertThat(getText(exprStr, expr)).isEqualTo(exprStr);