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

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

Issue 27510003: Scanner for UTF-8 byte arrays (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixes compiler tests Created 7 years, 2 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_postfix_prefix_test.dart
diff --git a/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart b/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart
index fdb9cc8ae0a717e295499b9f63774cadb1fa6ae8..0b1e8b043d873d4f19371291ef01e9a93d6a2834 100644
--- a/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart
+++ b/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart
@@ -70,7 +70,7 @@ void main() {
checkReturnInClass(String className, String methodName, type) {
var cls = findElement(compiler, className);
- var element = cls.lookupLocalMember(buildSourceString(methodName));
+ var element = cls.lookupLocalMember(methodName);
Expect.equals(type,
typesInferrer.getReturnTypeOfElement(element).simplify(compiler),
methodName);

Powered by Google App Engine
This is Rietveld 408576698