Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed Dec 20, 2023
1 parent bcf6b3f commit cc573d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/symbols/verify_exported.dart
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class NmEntry {
static Iterable<NmEntry> parse(String stdout) {
return LineSplitter.split(stdout).map((String line) {
final List<String> parts = line.split(' ');
return NmEntry._(parts[0], parts[1]);
return NmEntry._(parts[1], parts.last);
});
}

Expand Down

0 comments on commit cc573d3

Please sign in to comment.