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

Unified Diff: tests/compiler/dart2js/inference/send_test.dart

Issue 2750353003: Compute ids for IR nodes and check equivalence with the AST. (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
Index: tests/compiler/dart2js/inference/send_test.dart
diff --git a/tests/compiler/dart2js/inference/send_test.dart b/tests/compiler/dart2js/inference/send_test.dart
index a032d2bb09031c8f15aaca12bb4710c6fcd70851..e615534e3c01b0913d25b1fc794fbfb3fffb9322 100644
--- a/tests/compiler/dart2js/inference/send_test.dart
+++ b/tests/compiler/dart2js/inference/send_test.dart
@@ -2,9 +2,9 @@
// 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.
+import 'dart:io';
import 'package:async_helper/async_helper.dart';
import 'inference_test_helper.dart';
-import 'dart:io';
main() {
asyncTest(() async {
@@ -12,7 +12,7 @@ main() {
await for (FileSystemEntity entity in dataDir.list()) {
print('Checking ${entity.uri}');
String annotatedCode = await new File.fromUri(entity.uri).readAsString();
- await checkCode(annotatedCode);
+ await checkCode(annotatedCode, checkMemberAstTypeMasks);
}
});
}

Powered by Google App Engine
This is Rietveld 408576698