Skip to content

Commit

Permalink
Addressed CR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna Gringauze committed Apr 7, 2021
1 parent a54b3f0 commit c6837e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dwds/lib/src/debugging/metadata/provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class MetadataProvider {

_scriptToModule[library.importUri] = metadata.name;
for (var path in library.partUris) {
// parts in metadata are relative to the library Uri directory
// Parts in metadata are relative to the library Uri directory.
var partPath = p.url.join(p.dirname(library.importUri), path);
_scripts[library.importUri].add(partPath);
_scriptToModule[partPath] = metadata.name;
Expand Down
4 changes: 2 additions & 2 deletions fixtures/_testPackage/lib/src/test_part.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

Expand All @@ -20,4 +20,4 @@ TestLibraryPartClass(this.field, this._field) {

@override
String toString() => 'field: $field, _field: $_field';
}
}
4 changes: 2 additions & 2 deletions fixtures/_testPackageSound/lib/src/test_part.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

Expand All @@ -20,4 +20,4 @@ class TestLibraryPartClass {

@override
String toString() => 'field: $field, _field: $_field';
}
}

0 comments on commit c6837e0

Please sign in to comment.