File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class TestParser extends Parser {
3232 // Find first one that's not any of the blacklisted ones.
3333 String line = traceLines[i];
3434 if (line.contains ("parser_test_listener.dart:" ) ||
35- line.contains ("parser_test .dart:" ) ||
35+ line.contains ("parser_suite .dart:" ) ||
3636 line.contains ("parser_test_parser.dart:" ) ||
3737 line == "<asynchronous suspension>" ) continue ;
3838 return line.substring (line.indexOf ("(" ) + 1 , line.lastIndexOf (")" ));
Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ main(List<String> args) {
2121 } else {
2222 out = new StringBuffer ();
2323 }
24-
25- File f = new File .fromUri (
26- Platform .script.resolve ("../lib/src/fasta/parser/parser.dart" ));
24+ File f = new File .fromUri (Platform .script
25+ .resolve ("../../_fe_analyzer_shared/lib/src/parser/parser_impl.dart" ));
2726 List <int > rawBytes = f.readAsBytesSync ();
2827
2928 Uint8List bytes = new Uint8List (rawBytes.length + 1 );
@@ -67,7 +66,7 @@ class TestParser extends Parser {
6766 // Find first one that's not any of the blacklisted ones.
6867 String line = traceLines[i];
6968 if (line.contains("parser_test_listener.dart:") ||
70- line.contains("parser_test .dart:") ||
69+ line.contains("parser_suite .dart:") ||
7170 line.contains("parser_test_parser.dart:") ||
7271 line == "<asynchronous suspension>") continue;
7372 return line.substring(line.indexOf("(") + 1, line.lastIndexOf(")"));
You can’t perform that action at this time.
0 commit comments