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

Unified Diff: tests/compiler/dart2js/simple_inferrer_const_closure3_test.dart

Issue 165143004: Move TypeMask.simplify to a test helper. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 6 years, 10 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/simple_inferrer_const_closure3_test.dart
diff --git a/tests/compiler/dart2js/simple_inferrer_const_closure3_test.dart b/tests/compiler/dart2js/simple_inferrer_const_closure3_test.dart
index 184229ae767dfb70c5616e52f1e9fb5d914a9ed7..8e1ef622e82df928f7e6b8f1704c8348a0ad3abe 100644
--- a/tests/compiler/dart2js/simple_inferrer_const_closure3_test.dart
+++ b/tests/compiler/dart2js/simple_inferrer_const_closure3_test.dart
@@ -5,6 +5,7 @@
import 'package:expect/expect.dart';
import "package:async_helper/async_helper.dart";
import 'compiler_helper.dart';
+import 'type_mask_test_helper.dart';
const String TEST = """
@@ -35,7 +36,7 @@ void main() {
var signature = functionElement.functionSignature;
var element = signature.requiredParameters.first;
Expect.equals(type,
- typesInferrer.getTypeOfElement(element).simplify(compiler),
+ simplify(typesInferrer.getTypeOfElement(element), compiler),
functionName);
}

Powered by Google App Engine
This is Rietveld 408576698