| Index: test/codegen/expect/names.js
|
| diff --git a/test/codegen/expect/names.js b/test/codegen/expect/names.js
|
| index ac268d4e3510a09877f867f412fb96342f41d45c..9970709eb9e087a3d2a850ef81cbcb584264c464 100644
|
| --- a/test/codegen/expect/names.js
|
| +++ b/test/codegen/expect/names.js
|
| @@ -12,13 +12,26 @@ var names;
|
| function _foo() {
|
| return 456;
|
| }
|
| + class Frame extends core.Object {
|
| + Frame$caller(arguments$) {
|
| + this.arguments = arguments$;
|
| + }
|
| + static ['callee*']() {
|
| + return null;
|
| + }
|
| + }
|
| + dart.defineNamedConstructor(Frame, 'caller*');
|
| // Function main: () → dynamic
|
| function main() {
|
| core.print(exports.exports);
|
| core.print(new Foo()._foo());
|
| core.print(_foo());
|
| + core.print(new Frame.caller(new List.from([1, 2, 3])));
|
| + let eval$ = Frame['callee*'];
|
| + core.print(eval$);
|
| }
|
| // Exports:
|
| exports.Foo = Foo;
|
| + exports.Frame = Frame;
|
| exports.main = main;
|
| })(names || (names = {}));
|
|
|