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

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

Issue 1677863002: Use default params when --destructure-named-params + fix renaming of reserved destructured params (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 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
« no previous file with comments | « test/codegen/destructuring.dart ('k') | test/codegen/expect/destructuring.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/closure.js
diff --git a/test/codegen/expect/closure.js b/test/codegen/expect/closure.js
index f8084ab244953329ef1201a7876ba50af255d0b2..5449e698cc2497eb2354c260be9535485e7ebc99 100644
--- a/test/codegen/expect/closure.js
+++ b/test/codegen/expect/closure.js
@@ -55,18 +55,12 @@ dart_library.library('closure', null, /* Imports */[
* @param {?=} b
* @param {?=} c
*/
- optional_params(a, b, c) {
- if (b === void 0) b = null;
- if (c === void 0) c = null;
- }
+ optional_params(a, b = null, c = null) {}
/**
* @param {?} a
* @param {{b: (?|undefined), c: (?|undefined)}=} opts
*/
- static named_params(a, opts) {
- let b = opts && 'b' in opts ? opts.b : null;
- let c = opts && 'c' in opts ? opts.c : null;
- }
+ static named_params(a, {b = null, c = null} = {}) {}
nullary_method() {}
/**
* @param {function(?, ?=):?number} f
« no previous file with comments | « test/codegen/destructuring.dart ('k') | test/codegen/expect/destructuring.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698