| Index: lib/compiler/implementation/source_map_builder.dart
|
| diff --git a/lib/compiler/implementation/source_map_builder.dart b/lib/compiler/implementation/source_map_builder.dart
|
| index 4d7d9ae9e15fd43ead62bccbc0a95d1106c7e78a..ddbe2e67abf29ada04b5932e5487118f0da63408 100644
|
| --- a/lib/compiler/implementation/source_map_builder.dart
|
| +++ b/lib/compiler/implementation/source_map_builder.dart
|
| @@ -105,9 +105,8 @@ class SourceMapBuilder {
|
| encodeVLQ(output, targetColumn - previousTargetColumn);
|
| previousTargetColumn = targetColumn;
|
|
|
| - if (sourceUrl === null) {
|
| + if (sourceUrl === null)
|
| return;
|
| - }
|
|
|
| int sourceUrlIndex = indexOf(sourceUrlList, sourceUrl, sourceUrlMap);
|
| encodeVLQ(output, sourceUrlIndex - previousSourceUrlIndex);
|
| @@ -118,9 +117,8 @@ class SourceMapBuilder {
|
| encodeVLQ(output, sourceColumn - previousSourceColumn);
|
| previousSourceColumn = sourceColumn;
|
|
|
| - if (sourceName === null) {
|
| + if (sourceName === null)
|
| return;
|
| - }
|
|
|
| int sourceNameIndex = indexOf(sourceNameList, sourceName, sourceNameMap);
|
| encodeVLQ(output, sourceNameIndex - previousSourceNameIndex);
|
|
|