Index: runtime/vm/scanner.cc |
diff --git a/runtime/vm/scanner.cc b/runtime/vm/scanner.cc |
index 7e1dfbe6a4910735a0dd7722612601e513fb3424..761c0c1670bee1c4e99f0137ddc964e8cb432ec3 100644 |
--- a/runtime/vm/scanner.cc |
+++ b/runtime/vm/scanner.cc |
@@ -874,6 +874,8 @@ void Scanner::ScanAll(GrowableTokenStream* token_stream) { |
if (inserted_new_lines && |
((current_token_.kind == Token::kINTERPOL_VAR) || |
(current_token_.kind == Token::kINTERPOL_START))) { |
+ // NOTE: If this changes, be sure to update |
+ // Script::GenerateLineNumberArray to stay in sync. |
empty_string_token_.position.line = current_token_.position.line; |
token_stream->Add(empty_string_token_); |
} |