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

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

Issue 10854158: Make selector registration in the resolver and code generator more explicit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 4 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/unparser_test.dart
diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
index 2e6ffe191762b033d33bfc80dff4ba8f6e91a62c..5d8dd80869b7580c8b5bbd674794c5b590624159 100644
--- a/tests/compiler/dart2js/unparser_test.dart
+++ b/tests/compiler/dart2js/unparser_test.dart
@@ -194,7 +194,7 @@ testVariableDefinitions() {
testGetSet() {
// Top-level get/set.
- testDart2Dart('get foo(){return 5;}set foo(arg){}main(){foo; foo=5;}');
+ testDart2Dart('set foo(arg){}get foo(){return 5;}main(){foo; foo=5;}');
// Field get/set.
testDart2Dart('main(){var a=new A(); a.foo; a.foo=5;}'
'class A{set foo(a){}get foo(){return 5;}}');
« lib/compiler/implementation/resolver.dart ('K') | « tests/compiler/dart2js/type_checker_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698