Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: pkg/analyzer/test/src/dart/analysis/driver_test.dart

Issue 2745163004: Optionally use Fasta with the new analysis driver. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/dart/analysis/file_state.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/dart/analysis/driver_test.dart
diff --git a/pkg/analyzer/test/src/dart/analysis/driver_test.dart b/pkg/analyzer/test/src/dart/analysis/driver_test.dart
index 53c4702f348ec0136b88e3e2509665a7c8433c9e..a466fec765c9fe99eb2feadf32645c83cf517d3f 100644
--- a/pkg/analyzer/test/src/dart/analysis/driver_test.dart
+++ b/pkg/analyzer/test/src/dart/analysis/driver_test.dart
@@ -716,7 +716,7 @@ var A2 = B1;
// Update the file, but don't notify the driver.
allResults.clear();
- provider.updateFile(testFile, 'var V = 1.2');
+ provider.updateFile(testFile, 'var V = 1.2;');
// No new results.
await pumpEventQueue();
@@ -1470,7 +1470,7 @@ var A2 = B1;
var d = _p('/test/lib/d.dart');
provider.newFile(a, 'class A {}');
- provider.newFile(b, 'export "a.dart", class B {}');
+ provider.newFile(b, 'export "a.dart"; class B {}');
provider.newFile(c, 'import "d.dart"; class C {}');
provider.newFile(d, 'class D {}');
« no previous file with comments | « pkg/analyzer/lib/src/dart/analysis/file_state.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698