| 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 ddbe2e67abf29ada04b5932e5487118f0da63408..4d7d9ae9e15fd43ead62bccbc0a95d1106c7e78a 100644
|
| --- a/lib/compiler/implementation/source_map_builder.dart
|
| +++ b/lib/compiler/implementation/source_map_builder.dart
|
| @@ -105,8 +105,9 @@ 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);
|
| @@ -117,8 +118,9 @@ 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);
|
|
|