This commit is contained in:
Dan Field 2020-01-10 17:06:16 -08:00 committed by GitHub
parent 4d096c434f
commit 5129c2d295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ class StackFrame {
? RegExp(r'^(package:.+) (\d+):(\d+)\s+(.+)$')
: RegExp(r'^(.+) (\d+):(\d+)\s+(.+)$');
final Match match = parser.firstMatch(line);
assert(match != null, 'Expecgted $line to match $parser.');
assert(match != null, 'Expected $line to match $parser.');
String package = '<unknown>';
String packageScheme = '<unknown>';