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

Unified Diff: tests/compiler/dart2js_extra/closure3_test.dart

Issue 437193002: Remove function names on function expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove TODO Created 6 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
« no previous file with comments | « tests/compiler/dart2js_extra/closure2_test.dart ('k') | tests/compiler/dart2js_extra/closure4_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js_extra/closure3_test.dart
diff --git a/tests/compiler/dart2js_extra/closure3_test.dart b/tests/compiler/dart2js_extra/closure3_test.dart
index cab801f68e2c62d7552b10ac3b3d4bd5da6620f5..daea300ba89392d0991bbe7c57f0e70aa95dab03 100644
--- a/tests/compiler/dart2js_extra/closure3_test.dart
+++ b/tests/compiler/dart2js_extra/closure3_test.dart
@@ -5,7 +5,7 @@
import "package:expect/expect.dart";
main() {
- var f = fun({a: 3, b: 8}) {
+ var f = ({a: 3, b: 8}) {
return a + b;
};
Expect.equals(11, f());
« no previous file with comments | « tests/compiler/dart2js_extra/closure2_test.dart ('k') | tests/compiler/dart2js_extra/closure4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698