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

Unified Diff: tests/compiler/dart2js/simple_inferrer_const_closure4_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_closure4_test.dart
diff --git a/tests/compiler/dart2js/simple_inferrer_const_closure4_test.dart b/tests/compiler/dart2js/simple_inferrer_const_closure4_test.dart
index 36c988d3a76edc03f4da7140ef2e2d1b1ff66ab1..9a2fb7cd1b876059739e6678814dcb4276d93883 100644
--- a/tests/compiler/dart2js/simple_inferrer_const_closure4_test.dart
+++ b/tests/compiler/dart2js/simple_inferrer_const_closure4_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 = """
@@ -36,7 +37,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