| Index: test/codegen/expect/sunflower/sunflower.js
|
| diff --git a/test/codegen/expect/sunflower/sunflower.js b/test/codegen/expect/sunflower/sunflower.js
|
| index 26321c4b985d9597afc71f911377aac83e6e596a..c79c5f69b4fc4cad164c239c2dc3e81ab8e8951f 100644
|
| --- a/test/codegen/expect/sunflower/sunflower.js
|
| +++ b/test/codegen/expect/sunflower/sunflower.js
|
| @@ -55,6 +55,9 @@ var core = dart.import(core);
|
| this.radius = radius;
|
| }
|
| }
|
| + dart.setSignature(Circle, {
|
| + constructors: () => ({Circle: [Circle, [core.num, core.num, core.num]]})
|
| + });
|
| class CirclePainter extends core.Object {
|
| CirclePainter() {
|
| this.color = ORANGE;
|
| @@ -83,6 +86,9 @@ var core = dart.import(core);
|
| this.color = color;
|
| }
|
| }
|
| + dart.setSignature(SunflowerSeed, {
|
| + constructors: () => ({SunflowerSeed: [SunflowerSeed, [core.num, core.num, core.num], [core.String]]})
|
| + });
|
| // Exports:
|
| exports.ORANGE = ORANGE;
|
| exports.SEED_RADIUS = SEED_RADIUS;
|
|
|