| Index: test/codegen/expect/sunflower/sunflower.js
|
| diff --git a/test/codegen/expect/sunflower/sunflower.js b/test/codegen/expect/sunflower/sunflower.js
|
| index 25f3e52f1b565a8cb172b9b6b18d6ec741c0e701..c06b37de69bcef1c9fe793b351c85dc8e99b9833 100644
|
| --- a/test/codegen/expect/sunflower/sunflower.js
|
| +++ b/test/codegen/expect/sunflower/sunflower.js
|
| @@ -9,11 +9,11 @@ dart_library.library('sunflower/sunflower', null, /* Imports */[
|
| ], function(exports, dart, dom, core, math, painter, circle) {
|
| 'use strict';
|
| let dartx = dart.dartx;
|
| - let SEED_RADIUS = 2;
|
| - let SCALE_FACTOR = 4;
|
| - let MAX_D = 300;
|
| - let centerX = dart.notNull(MAX_D) / 2;
|
| - let centerY = centerX;
|
| + const SEED_RADIUS = 2;
|
| + const SCALE_FACTOR = 4;
|
| + const MAX_D = 300;
|
| + const centerX = dart.notNull(MAX_D) / 2;
|
| + const centerY = centerX;
|
| function querySelector(selector) {
|
| return dom.document.querySelector(selector);
|
| }
|
|
|