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

Unified Diff: test/codegen/expect/temps.js

Issue 1484263002: Use destructuring assignments for named parameters (#180) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebased + squashed in 1 commit Created 5 years 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: test/codegen/expect/temps.js
diff --git a/test/codegen/expect/temps.js b/test/codegen/expect/temps.js
index df9da7f5fe08e2bb125bff7c3e7a3f4e7a115e2e..bd156f8ab898e6ce7447cf0727786d3a6b1b726d 100644
--- a/test/codegen/expect/temps.js
+++ b/test/codegen/expect/temps.js
@@ -26,8 +26,7 @@ dart_library.library('temps', null, /* Imports */[
this[_opt] = opt;
this.opt = null;
}
- named(opts) {
- let opt = opts && 'opt' in opts ? opts.opt : 456;
+ named({opt = 456} = {}) {
this.opt = opt;
this[_opt] = null;
}

Powered by Google App Engine
This is Rietveld 408576698