@pulumi/pulumi 3.66.0 → 3.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/automation/cmd.js +1 -1
- package/automation/cmd.js.map +1 -1
- package/automation/localWorkspace.js +3 -3
- package/automation/localWorkspace.js.map +1 -1
- package/automation/server.js +1 -1
- package/automation/server.js.map +1 -1
- package/cmd/run/run.js +55 -13
- package/cmd/run/run.js.map +1 -1
- package/package.json +2 -1
- package/proto/codegen/hcl_grpc_pb.js +1 -0
- package/proto/codegen/hcl_pb.js +808 -0
- package/proto/codegen/mapper_grpc_pb.js +0 -1
- package/proto/codegen/mapper_pb.js +0 -2
- package/proto/language_grpc_pb.js +104 -1
- package/proto/language_pb.js +1048 -0
- package/resource.js +1 -1
- package/resource.js.map +1 -1
- package/runtime/closure/codePaths.js +3 -3
- package/runtime/closure/codePaths.js.map +1 -1
- package/runtime/closure/createClosure.js +2 -1
- package/runtime/closure/createClosure.js.map +1 -1
- package/runtime/closure/parseFunction.js +3 -6
- package/runtime/closure/parseFunction.js.map +1 -1
- package/runtime/closure/serializeClosure.js +2 -2
- package/runtime/closure/serializeClosure.js.map +1 -1
- package/runtime/invoke.js +2 -2
- package/runtime/invoke.js.map +1 -1
- package/runtime/resource.js +3 -3
- package/runtime/resource.js.map +1 -1
- package/runtime/rpc.js +1 -1
- package/runtime/rpc.js.map +1 -1
- package/tests/runtime/jsClosureCases_10_4.js +1 -1
- package/tests/runtime/jsClosureCases_8.js +4 -4
- package/tests/runtime/tsClosureCases.js +318 -318
- package/version.js +1 -1
|
@@ -50,7 +50,7 @@ describe("closure", () => {
|
|
|
50
50
|
|
|
51
51
|
function __f0() {
|
|
52
52
|
return (function() {
|
|
53
|
-
with({
|
|
53
|
+
with({ this: undefined, arguments: undefined }) {
|
|
54
54
|
|
|
55
55
|
return function () { };
|
|
56
56
|
|
|
@@ -66,7 +66,7 @@ return function () { };
|
|
|
66
66
|
|
|
67
67
|
function __f() {
|
|
68
68
|
return (function() {
|
|
69
|
-
with({ f: __f }) {
|
|
69
|
+
with({ f: __f, this: undefined, arguments: undefined }) {
|
|
70
70
|
|
|
71
71
|
return function /*f*/() { };
|
|
72
72
|
|
|
@@ -82,7 +82,7 @@ return function /*f*/() { };
|
|
|
82
82
|
|
|
83
83
|
function __f() {
|
|
84
84
|
return (function() {
|
|
85
|
-
with({ f: __f }) {
|
|
85
|
+
with({ f: __f, this: undefined, arguments: undefined }) {
|
|
86
86
|
|
|
87
87
|
return function /*f*/() { f(); };
|
|
88
88
|
|
|
@@ -98,7 +98,7 @@ return function /*f*/() { f(); };
|
|
|
98
98
|
|
|
99
99
|
function __f0() {
|
|
100
100
|
return (function() {
|
|
101
|
-
with({
|
|
101
|
+
with({ this: undefined, arguments: undefined }) {
|
|
102
102
|
|
|
103
103
|
return function () { console.log(this); };
|
|
104
104
|
|
|
@@ -115,7 +115,7 @@ return function () { console.log(this); };
|
|
|
115
115
|
|
|
116
116
|
function __f0() {
|
|
117
117
|
return (function() {
|
|
118
|
-
with({
|
|
118
|
+
with({ this: undefined, arguments: undefined }) {
|
|
119
119
|
|
|
120
120
|
return function () { console.log(this + arguments); };
|
|
121
121
|
|
|
@@ -131,7 +131,7 @@ return function () { console.log(this + arguments); };
|
|
|
131
131
|
|
|
132
132
|
function __f0() {
|
|
133
133
|
return (function() {
|
|
134
|
-
with({
|
|
134
|
+
with({ this: undefined, arguments: undefined }) {
|
|
135
135
|
|
|
136
136
|
return () => { };
|
|
137
137
|
|
|
@@ -157,7 +157,7 @@ Function code:
|
|
|
157
157
|
const awaiterCode = `
|
|
158
158
|
function __f1(__0, __1, __2, __3) {
|
|
159
159
|
return (function() {
|
|
160
|
-
with({
|
|
160
|
+
with({ this: undefined, arguments: undefined }) {
|
|
161
161
|
|
|
162
162
|
return function (thisArg, _arguments, P, generator) {
|
|
163
163
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -180,7 +180,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
180
180
|
${awaiterCode}
|
|
181
181
|
function __f0() {
|
|
182
182
|
return (function() {
|
|
183
|
-
with({ __awaiter: __f1 }) {
|
|
183
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
184
184
|
|
|
185
185
|
return () => __awaiter(void 0, void 0, void 0, function* () { });
|
|
186
186
|
|
|
@@ -197,7 +197,7 @@ return () => __awaiter(void 0, void 0, void 0, function* () { });
|
|
|
197
197
|
${awaiterCode}
|
|
198
198
|
function __f0() {
|
|
199
199
|
return (function() {
|
|
200
|
-
with({ __awaiter: __f1 }) {
|
|
200
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
201
201
|
|
|
202
202
|
return () => __awaiter(void 0, void 0, void 0, function* () { console.log(this); });
|
|
203
203
|
|
|
@@ -215,7 +215,7 @@ return () => __awaiter(void 0, void 0, void 0, function* () { console.log(this);
|
|
|
215
215
|
${awaiterCode}
|
|
216
216
|
function __f0() {
|
|
217
217
|
return (function() {
|
|
218
|
-
with({ __awaiter: __f1 }) {
|
|
218
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
219
219
|
|
|
220
220
|
return function () {
|
|
221
221
|
return __awaiter(this, void 0, void 0, function* () { });
|
|
@@ -235,7 +235,7 @@ return function () {
|
|
|
235
235
|
${awaiterCode}
|
|
236
236
|
function __f0() {
|
|
237
237
|
return (function() {
|
|
238
|
-
with({ __awaiter: __f1 }) {
|
|
238
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
239
239
|
|
|
240
240
|
return function () {
|
|
241
241
|
return __awaiter(this, void 0, void 0, function* () { console.log(this); });
|
|
@@ -267,7 +267,7 @@ Function code:
|
|
|
267
267
|
|
|
268
268
|
function __f0() {
|
|
269
269
|
return (function() {
|
|
270
|
-
with({
|
|
270
|
+
with({ this: undefined, arguments: undefined }) {
|
|
271
271
|
|
|
272
272
|
return function () { () => { console.log(this); }; };
|
|
273
273
|
|
|
@@ -284,7 +284,7 @@ return function () { () => { console.log(this); }; };
|
|
|
284
284
|
|
|
285
285
|
function __f0() {
|
|
286
286
|
return (function() {
|
|
287
|
-
with({
|
|
287
|
+
with({ this: undefined, arguments: undefined }) {
|
|
288
288
|
|
|
289
289
|
return function () { () => { console.log(this + arguments); }; };
|
|
290
290
|
|
|
@@ -313,7 +313,7 @@ var __task = {run: __f2};
|
|
|
313
313
|
|
|
314
314
|
function __f1(__0, __1, __2, __3) {
|
|
315
315
|
return (function() {
|
|
316
|
-
with({
|
|
316
|
+
with({ this: undefined, arguments: undefined }) {
|
|
317
317
|
|
|
318
318
|
return function (thisArg, _arguments, P, generator) {
|
|
319
319
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -331,7 +331,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
331
331
|
|
|
332
332
|
function __f2() {
|
|
333
333
|
return (function() {
|
|
334
|
-
with({ __awaiter: __f1 }) {
|
|
334
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
335
335
|
|
|
336
336
|
return function () {
|
|
337
337
|
return __awaiter(this, void 0, void 0, function* () { });
|
|
@@ -343,7 +343,7 @@ return function () {
|
|
|
343
343
|
|
|
344
344
|
function __f0() {
|
|
345
345
|
return (function() {
|
|
346
|
-
with({ __awaiter: __f1, task: __task }) {
|
|
346
|
+
with({ __awaiter: __f1, task: __task, this: undefined, arguments: undefined }) {
|
|
347
347
|
|
|
348
348
|
return function () {
|
|
349
349
|
return __awaiter(this, void 0, void 0, function* () { yield task.run(); });
|
|
@@ -378,7 +378,7 @@ __task.run = __f3;
|
|
|
378
378
|
|
|
379
379
|
function __f1(__0, __1, __2, __3) {
|
|
380
380
|
return (function() {
|
|
381
|
-
with({
|
|
381
|
+
with({ this: undefined, arguments: undefined }) {
|
|
382
382
|
|
|
383
383
|
return function (thisArg, _arguments, P, generator) {
|
|
384
384
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -396,7 +396,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
396
396
|
|
|
397
397
|
function __f2() {
|
|
398
398
|
return (function() {
|
|
399
|
-
with({ __awaiter: __f1 }) {
|
|
399
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
400
400
|
|
|
401
401
|
return function /*constructor*/() {
|
|
402
402
|
this.run = function () {
|
|
@@ -410,7 +410,7 @@ return function /*constructor*/() {
|
|
|
410
410
|
|
|
411
411
|
function __f3() {
|
|
412
412
|
return (function() {
|
|
413
|
-
with({ __awaiter: __f1 }) {
|
|
413
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
414
414
|
|
|
415
415
|
return function () {
|
|
416
416
|
return __awaiter(this, void 0, void 0, function* () { console.log(this); });
|
|
@@ -422,7 +422,7 @@ return function () {
|
|
|
422
422
|
|
|
423
423
|
function __f0() {
|
|
424
424
|
return (function() {
|
|
425
|
-
with({ __awaiter: __f1, task: __task }) {
|
|
425
|
+
with({ __awaiter: __f1, task: __task, this: undefined, arguments: undefined }) {
|
|
426
426
|
|
|
427
427
|
return function () {
|
|
428
428
|
return __awaiter(this, void 0, void 0, function* () { yield task.run(); });
|
|
@@ -452,7 +452,7 @@ var __task = {run: __f2};
|
|
|
452
452
|
|
|
453
453
|
function __f1(__0, __1, __2, __3) {
|
|
454
454
|
return (function() {
|
|
455
|
-
with({
|
|
455
|
+
with({ this: undefined, arguments: undefined }) {
|
|
456
456
|
|
|
457
457
|
return function (thisArg, _arguments, P, generator) {
|
|
458
458
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -470,7 +470,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
470
470
|
|
|
471
471
|
function __f2() {
|
|
472
472
|
return (function() {
|
|
473
|
-
with({ __awaiter: __f1 }) {
|
|
473
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
474
474
|
|
|
475
475
|
return () => __awaiter(this, void 0, void 0, function* () { });
|
|
476
476
|
|
|
@@ -480,7 +480,7 @@ return () => __awaiter(this, void 0, void 0, function* () { });
|
|
|
480
480
|
|
|
481
481
|
function __f0() {
|
|
482
482
|
return (function() {
|
|
483
|
-
with({ __awaiter: __f1, task: __task }) {
|
|
483
|
+
with({ __awaiter: __f1, task: __task, this: undefined, arguments: undefined }) {
|
|
484
484
|
|
|
485
485
|
return function () {
|
|
486
486
|
return __awaiter(this, void 0, void 0, function* () { yield task.run(); });
|
|
@@ -524,7 +524,7 @@ Function code:
|
|
|
524
524
|
|
|
525
525
|
function __f0(__0, __1, __2) {
|
|
526
526
|
return (function() {
|
|
527
|
-
with({
|
|
527
|
+
with({ this: undefined, arguments: undefined }) {
|
|
528
528
|
|
|
529
529
|
return function (x, y, z) { };
|
|
530
530
|
|
|
@@ -540,7 +540,7 @@ return function (x, y, z) { };
|
|
|
540
540
|
|
|
541
541
|
function __f0(__0, __1, __2) {
|
|
542
542
|
return (function() {
|
|
543
|
-
with({
|
|
543
|
+
with({ this: undefined, arguments: undefined }) {
|
|
544
544
|
|
|
545
545
|
return (x, y, z) => { };
|
|
546
546
|
|
|
@@ -557,7 +557,7 @@ return (x, y, z) => { };
|
|
|
557
557
|
|
|
558
558
|
function __f0() {
|
|
559
559
|
return (function() {
|
|
560
|
-
with({
|
|
560
|
+
with({ this: undefined, arguments: undefined }) {
|
|
561
561
|
|
|
562
562
|
return () => { console.log("Just a global object reference"); };
|
|
563
563
|
|
|
@@ -583,7 +583,7 @@ return () => { console.log("Just a global object reference"); };
|
|
|
583
583
|
|
|
584
584
|
function __f0() {
|
|
585
585
|
return (function() {
|
|
586
|
-
with({ a: -0, b: -0, c: Infinity, d: -Infinity, e: NaN, f: 9007199254740991, g: 1.7976931348623157e+308, h: -9007199254740991, i: 5e-324 }) {
|
|
586
|
+
with({ a: -0, b: -0, c: Infinity, d: -Infinity, e: NaN, f: 9007199254740991, g: 1.7976931348623157e+308, h: -9007199254740991, i: 5e-324, this: undefined, arguments: undefined }) {
|
|
587
587
|
|
|
588
588
|
return () => { const x = [a, b, c, d, e, f, g, h, i]; };
|
|
589
589
|
|
|
@@ -616,7 +616,7 @@ __zcap.c = __zcap_c;
|
|
|
616
616
|
|
|
617
617
|
function __f0() {
|
|
618
618
|
return (function() {
|
|
619
|
-
with({ wcap: "foo", xcap: 97, ycap: __ycap, zcap: __zcap }) {
|
|
619
|
+
with({ wcap: "foo", xcap: 97, ycap: __ycap, zcap: __zcap, this: undefined, arguments: undefined }) {
|
|
620
620
|
|
|
621
621
|
return () => { console.log(wcap + \`\${xcap}\` + ycap.length + eval(zcap.a + zcap.b + zcap.c)); };
|
|
622
622
|
|
|
@@ -674,7 +674,7 @@ return () => { console.log(wcap + \`\${xcap}\` + ycap.length + eval(zcap.a + zca
|
|
|
674
674
|
|
|
675
675
|
function __f0(__0, __1) {
|
|
676
676
|
return (function() {
|
|
677
|
-
with({ cap1: 100, cap2: 200, cap3: 300, cap4: 400, cap5: 500, cap6: 600, cap7: 700, cap8: 800 }) {
|
|
677
|
+
with({ cap1: 100, cap2: 200, cap3: 300, cap4: 400, cap5: 500, cap6: 600, cap7: 700, cap8: 800, this: undefined, arguments: undefined }) {
|
|
678
678
|
|
|
679
679
|
return (nocap1, nocap2) => {
|
|
680
680
|
let zz = nocap1 + nocap2; // not a capture: args
|
|
@@ -734,7 +734,7 @@ return (nocap1, nocap2) => {
|
|
|
734
734
|
|
|
735
735
|
function __f0() {
|
|
736
736
|
return (function() {
|
|
737
|
-
with({ cap1: 100 }) {
|
|
737
|
+
with({ cap1: 100, this: undefined, arguments: undefined }) {
|
|
738
738
|
|
|
739
739
|
return () => {
|
|
740
740
|
// cap1 is captured here.
|
|
@@ -764,7 +764,7 @@ return () => {
|
|
|
764
764
|
|
|
765
765
|
function __f0() {
|
|
766
766
|
return (function() {
|
|
767
|
-
with({ cap1: 100 }) {
|
|
767
|
+
with({ cap1: 100, this: undefined, arguments: undefined }) {
|
|
768
768
|
|
|
769
769
|
return () => {
|
|
770
770
|
// cap1 is captured here.
|
|
@@ -794,7 +794,7 @@ return () => {
|
|
|
794
794
|
|
|
795
795
|
function __f0() {
|
|
796
796
|
return (function() {
|
|
797
|
-
with({ cap1: 100 }) {
|
|
797
|
+
with({ cap1: 100, this: undefined, arguments: undefined }) {
|
|
798
798
|
|
|
799
799
|
return () => {
|
|
800
800
|
// cap1 is captured here.
|
|
@@ -816,7 +816,7 @@ return () => {
|
|
|
816
816
|
|
|
817
817
|
function __f0() {
|
|
818
818
|
return (function() {
|
|
819
|
-
with({
|
|
819
|
+
with({ this: undefined, arguments: undefined }) {
|
|
820
820
|
|
|
821
821
|
return () => { let x = eval("undefined + null + NaN + Infinity + __filename"); require("os"); };
|
|
822
822
|
|
|
@@ -835,7 +835,7 @@ const os = require("os");
|
|
|
835
835
|
|
|
836
836
|
function __f0() {
|
|
837
837
|
return (function() {
|
|
838
|
-
with({
|
|
838
|
+
with({ this: undefined, arguments: undefined }) {
|
|
839
839
|
|
|
840
840
|
return () => os;
|
|
841
841
|
|
|
@@ -858,7 +858,7 @@ const os = require("os");
|
|
|
858
858
|
|
|
859
859
|
function __f0(__0, __1, __2) {
|
|
860
860
|
return (function() {
|
|
861
|
-
with({
|
|
861
|
+
with({ this: undefined, arguments: undefined }) {
|
|
862
862
|
|
|
863
863
|
return (a, b, c) => {
|
|
864
864
|
const v = os;
|
|
@@ -885,7 +885,7 @@ const os = require("os");
|
|
|
885
885
|
|
|
886
886
|
function __f1() {
|
|
887
887
|
return (function() {
|
|
888
|
-
with({
|
|
888
|
+
with({ this: undefined, arguments: undefined }) {
|
|
889
889
|
|
|
890
890
|
return () => os;
|
|
891
891
|
|
|
@@ -895,7 +895,7 @@ return () => os;
|
|
|
895
895
|
|
|
896
896
|
function __f0() {
|
|
897
897
|
return (function() {
|
|
898
|
-
with({ handler: __f1 }) {
|
|
898
|
+
with({ handler: __f1, this: undefined, arguments: undefined }) {
|
|
899
899
|
|
|
900
900
|
return () => handler;
|
|
901
901
|
|
|
@@ -920,7 +920,7 @@ __util.assertAsyncThrows = __assertAsyncThrows;
|
|
|
920
920
|
|
|
921
921
|
function __f1(__0, __1, __2, __3) {
|
|
922
922
|
return (function() {
|
|
923
|
-
with({
|
|
923
|
+
with({ this: undefined, arguments: undefined }) {
|
|
924
924
|
|
|
925
925
|
return function (thisArg, _arguments, P, generator) {
|
|
926
926
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -938,7 +938,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
938
938
|
|
|
939
939
|
function __asyncTest(__0) {
|
|
940
940
|
return (function() {
|
|
941
|
-
with({ __awaiter: __f1, asyncTest: __asyncTest }) {
|
|
941
|
+
with({ __awaiter: __f1, asyncTest: __asyncTest, this: undefined, arguments: undefined }) {
|
|
942
942
|
|
|
943
943
|
return function /*asyncTest*/(test) {
|
|
944
944
|
return (done) => {
|
|
@@ -964,7 +964,7 @@ return function /*asyncTest*/(test) {
|
|
|
964
964
|
|
|
965
965
|
function __assertAsyncThrows(__0) {
|
|
966
966
|
return (function() {
|
|
967
|
-
with({ __awaiter: __f1, assert_1: __assert_1, assertAsyncThrows: __assertAsyncThrows }) {
|
|
967
|
+
with({ __awaiter: __f1, assert_1: __assert_1, assertAsyncThrows: __assertAsyncThrows, this: undefined, arguments: undefined }) {
|
|
968
968
|
|
|
969
969
|
return function /*assertAsyncThrows*/(test) {
|
|
970
970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -985,7 +985,7 @@ return function /*assertAsyncThrows*/(test) {
|
|
|
985
985
|
|
|
986
986
|
function __f0() {
|
|
987
987
|
return (function() {
|
|
988
|
-
with({ util: __util }) {
|
|
988
|
+
with({ util: __util, this: undefined, arguments: undefined }) {
|
|
989
989
|
|
|
990
990
|
return () => util;
|
|
991
991
|
|
|
@@ -1005,7 +1005,7 @@ return () => util;
|
|
|
1005
1005
|
|
|
1006
1006
|
function __f0() {
|
|
1007
1007
|
return (function() {
|
|
1008
|
-
with({
|
|
1008
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1009
1009
|
|
|
1010
1010
|
return () => { try { }
|
|
1011
1011
|
catch (err) {
|
|
@@ -1026,7 +1026,7 @@ return () => { try { }
|
|
|
1026
1026
|
|
|
1027
1027
|
function __f0() {
|
|
1028
1028
|
return (function() {
|
|
1029
|
-
with({ defaultValue: 1 }) {
|
|
1029
|
+
with({ defaultValue: 1, this: undefined, arguments: undefined }) {
|
|
1030
1030
|
|
|
1031
1031
|
return (arg = defaultValue) => { };
|
|
1032
1032
|
|
|
@@ -1067,7 +1067,7 @@ __xcap.zzz = __xcap_zzz;
|
|
|
1067
1067
|
|
|
1068
1068
|
function __f1() {
|
|
1069
1069
|
return (function() {
|
|
1070
|
-
with({ fff: "fff!" }) {
|
|
1070
|
+
with({ fff: "fff!", this: undefined, arguments: undefined }) {
|
|
1071
1071
|
|
|
1072
1072
|
return function () { console.log(fff); };
|
|
1073
1073
|
|
|
@@ -1077,7 +1077,7 @@ return function () { console.log(fff); };
|
|
|
1077
1077
|
|
|
1078
1078
|
function __f2() {
|
|
1079
1079
|
return (function() {
|
|
1080
|
-
with({ ggg: "ggg!" }) {
|
|
1080
|
+
with({ ggg: "ggg!", this: undefined, arguments: undefined }) {
|
|
1081
1081
|
|
|
1082
1082
|
return () => { console.log(ggg); };
|
|
1083
1083
|
|
|
@@ -1087,7 +1087,7 @@ return () => { console.log(ggg); };
|
|
|
1087
1087
|
|
|
1088
1088
|
function __f3(__0, __1) {
|
|
1089
1089
|
return (function() {
|
|
1090
|
-
with({
|
|
1090
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1091
1091
|
|
|
1092
1092
|
return (a1, a2) => { console.log(a1 + a2); };
|
|
1093
1093
|
|
|
@@ -1097,7 +1097,7 @@ return (a1, a2) => { console.log(a1 + a2); };
|
|
|
1097
1097
|
|
|
1098
1098
|
function __f0() {
|
|
1099
1099
|
return (function() {
|
|
1100
|
-
with({ xcap: __xcap }) {
|
|
1100
|
+
with({ xcap: __xcap, this: undefined, arguments: undefined }) {
|
|
1101
1101
|
|
|
1102
1102
|
return () => {
|
|
1103
1103
|
xcap.fff();
|
|
@@ -1140,7 +1140,7 @@ Function code:
|
|
|
1140
1140
|
|
|
1141
1141
|
function __f0() {
|
|
1142
1142
|
return (function() {
|
|
1143
|
-
with({
|
|
1143
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1144
1144
|
|
|
1145
1145
|
return function () { return this; };
|
|
1146
1146
|
|
|
@@ -1160,7 +1160,7 @@ var __mutable = {};
|
|
|
1160
1160
|
|
|
1161
1161
|
function __f0() {
|
|
1162
1162
|
return (function() {
|
|
1163
|
-
with({ mutable: __mutable }) {
|
|
1163
|
+
with({ mutable: __mutable, this: undefined, arguments: undefined }) {
|
|
1164
1164
|
|
|
1165
1165
|
return function () { return mutable; };
|
|
1166
1166
|
|
|
@@ -1178,7 +1178,7 @@ var __mutable = {timesTheyAreAChangin: true};
|
|
|
1178
1178
|
|
|
1179
1179
|
function __f0() {
|
|
1180
1180
|
return (function() {
|
|
1181
|
-
with({ mutable: __mutable }) {
|
|
1181
|
+
with({ mutable: __mutable, this: undefined, arguments: undefined }) {
|
|
1182
1182
|
|
|
1183
1183
|
return function () { return mutable; };
|
|
1184
1184
|
|
|
@@ -1208,7 +1208,7 @@ __v.d = __v_d;
|
|
|
1208
1208
|
|
|
1209
1209
|
function __f1(__0) {
|
|
1210
1210
|
return (function() {
|
|
1211
|
-
with({
|
|
1211
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1212
1212
|
|
|
1213
1213
|
return function /*constructor*/(value) {
|
|
1214
1214
|
this.value = value;
|
|
@@ -1220,7 +1220,7 @@ return function /*constructor*/(value) {
|
|
|
1220
1220
|
|
|
1221
1221
|
function __f2(__0) {
|
|
1222
1222
|
return (function() {
|
|
1223
|
-
with({
|
|
1223
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1224
1224
|
|
|
1225
1225
|
return function /*apply*/(func) {
|
|
1226
1226
|
throw new Error("'apply' is not allowed from inside a cloud-callback. Use 'get' to retrieve the value of this Output directly.");
|
|
@@ -1232,7 +1232,7 @@ return function /*apply*/(func) {
|
|
|
1232
1232
|
|
|
1233
1233
|
function __f3() {
|
|
1234
1234
|
return (function() {
|
|
1235
|
-
with({
|
|
1235
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1236
1236
|
|
|
1237
1237
|
return function /*get*/() {
|
|
1238
1238
|
return this.value;
|
|
@@ -1244,7 +1244,7 @@ return function /*get*/() {
|
|
|
1244
1244
|
|
|
1245
1245
|
function __f0() {
|
|
1246
1246
|
return (function() {
|
|
1247
|
-
with({ v: __v }) {
|
|
1247
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
1248
1248
|
|
|
1249
1249
|
return function () { console.log(v); };
|
|
1250
1250
|
|
|
@@ -1288,7 +1288,7 @@ __v.d4 = __v_d4;
|
|
|
1288
1288
|
|
|
1289
1289
|
function __f1(__0) {
|
|
1290
1290
|
return (function() {
|
|
1291
|
-
with({
|
|
1291
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1292
1292
|
|
|
1293
1293
|
return function /*constructor*/(value) {
|
|
1294
1294
|
this.value = value;
|
|
@@ -1300,7 +1300,7 @@ return function /*constructor*/(value) {
|
|
|
1300
1300
|
|
|
1301
1301
|
function __f2(__0) {
|
|
1302
1302
|
return (function() {
|
|
1303
|
-
with({
|
|
1303
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1304
1304
|
|
|
1305
1305
|
return function /*apply*/(func) {
|
|
1306
1306
|
throw new Error("'apply' is not allowed from inside a cloud-callback. Use 'get' to retrieve the value of this Output directly.");
|
|
@@ -1312,7 +1312,7 @@ return function /*apply*/(func) {
|
|
|
1312
1312
|
|
|
1313
1313
|
function __f3() {
|
|
1314
1314
|
return (function() {
|
|
1315
|
-
with({
|
|
1315
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1316
1316
|
|
|
1317
1317
|
return function /*get*/() {
|
|
1318
1318
|
return this.value;
|
|
@@ -1324,7 +1324,7 @@ return function /*get*/() {
|
|
|
1324
1324
|
|
|
1325
1325
|
function __f0() {
|
|
1326
1326
|
return (function() {
|
|
1327
|
-
with({ v: __v }) {
|
|
1327
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
1328
1328
|
|
|
1329
1329
|
return function () { console.log(v); };
|
|
1330
1330
|
|
|
@@ -1364,7 +1364,7 @@ __v.d2 = __v_d2;
|
|
|
1364
1364
|
|
|
1365
1365
|
function __f1(__0) {
|
|
1366
1366
|
return (function() {
|
|
1367
|
-
with({
|
|
1367
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1368
1368
|
|
|
1369
1369
|
return function /*constructor*/(value) {
|
|
1370
1370
|
this.value = value;
|
|
@@ -1376,7 +1376,7 @@ return function /*constructor*/(value) {
|
|
|
1376
1376
|
|
|
1377
1377
|
function __f2(__0) {
|
|
1378
1378
|
return (function() {
|
|
1379
|
-
with({
|
|
1379
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1380
1380
|
|
|
1381
1381
|
return function /*apply*/(func) {
|
|
1382
1382
|
throw new Error("'apply' is not allowed from inside a cloud-callback. Use 'get' to retrieve the value of this Output directly.");
|
|
@@ -1388,7 +1388,7 @@ return function /*apply*/(func) {
|
|
|
1388
1388
|
|
|
1389
1389
|
function __f3() {
|
|
1390
1390
|
return (function() {
|
|
1391
|
-
with({
|
|
1391
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1392
1392
|
|
|
1393
1393
|
return function /*get*/() {
|
|
1394
1394
|
return this.value;
|
|
@@ -1400,7 +1400,7 @@ return function /*get*/() {
|
|
|
1400
1400
|
|
|
1401
1401
|
function __f0() {
|
|
1402
1402
|
return (function() {
|
|
1403
|
-
with({ v: __v }) {
|
|
1403
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
1404
1404
|
|
|
1405
1405
|
return function () { console.log(v); };
|
|
1406
1406
|
|
|
@@ -1574,7 +1574,7 @@ __v.o6 = __v_o6;
|
|
|
1574
1574
|
|
|
1575
1575
|
function __f1(__0) {
|
|
1576
1576
|
return (function() {
|
|
1577
|
-
with({
|
|
1577
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1578
1578
|
|
|
1579
1579
|
return function /*constructor*/(value) {
|
|
1580
1580
|
this.value = value;
|
|
@@ -1586,7 +1586,7 @@ return function /*constructor*/(value) {
|
|
|
1586
1586
|
|
|
1587
1587
|
function __f2(__0) {
|
|
1588
1588
|
return (function() {
|
|
1589
|
-
with({
|
|
1589
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1590
1590
|
|
|
1591
1591
|
return function /*apply*/(func) {
|
|
1592
1592
|
throw new Error("'apply' is not allowed from inside a cloud-callback. Use 'get' to retrieve the value of this Output directly.");
|
|
@@ -1598,7 +1598,7 @@ return function /*apply*/(func) {
|
|
|
1598
1598
|
|
|
1599
1599
|
function __f3() {
|
|
1600
1600
|
return (function() {
|
|
1601
|
-
with({
|
|
1601
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1602
1602
|
|
|
1603
1603
|
return function /*get*/() {
|
|
1604
1604
|
return this.value;
|
|
@@ -1610,7 +1610,7 @@ return function /*get*/() {
|
|
|
1610
1610
|
|
|
1611
1611
|
function __f0() {
|
|
1612
1612
|
return (function() {
|
|
1613
|
-
with({ v: __v }) {
|
|
1613
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
1614
1614
|
|
|
1615
1615
|
return function () { console.log(v); };
|
|
1616
1616
|
|
|
@@ -1631,7 +1631,7 @@ var __obj = {method1: __f1, method2: __f2};
|
|
|
1631
1631
|
|
|
1632
1632
|
function __f1() {
|
|
1633
1633
|
return (function() {
|
|
1634
|
-
with({
|
|
1634
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1635
1635
|
|
|
1636
1636
|
return function /*method1*/() { return this.method2(); };
|
|
1637
1637
|
|
|
@@ -1641,7 +1641,7 @@ return function /*method1*/() { return this.method2(); };
|
|
|
1641
1641
|
|
|
1642
1642
|
function __f2() {
|
|
1643
1643
|
return (function() {
|
|
1644
|
-
with({
|
|
1644
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1645
1645
|
|
|
1646
1646
|
return () => { return; };
|
|
1647
1647
|
|
|
@@ -1651,7 +1651,7 @@ return () => { return; };
|
|
|
1651
1651
|
|
|
1652
1652
|
function __f0() {
|
|
1653
1653
|
return (function() {
|
|
1654
|
-
with({ obj: __obj }) {
|
|
1654
|
+
with({ obj: __obj, this: undefined, arguments: undefined }) {
|
|
1655
1655
|
|
|
1656
1656
|
return function () { console.log(obj); };
|
|
1657
1657
|
|
|
@@ -1670,7 +1670,7 @@ return function () { console.log(obj); };
|
|
|
1670
1670
|
|
|
1671
1671
|
function __f0() {
|
|
1672
1672
|
return (function() {
|
|
1673
|
-
with({ a: undefined }) {
|
|
1673
|
+
with({ a: undefined, this: undefined, arguments: undefined }) {
|
|
1674
1674
|
|
|
1675
1675
|
return function () { const x = typeof a; };
|
|
1676
1676
|
|
|
@@ -1690,7 +1690,7 @@ return function () { const x = typeof a; };
|
|
|
1690
1690
|
|
|
1691
1691
|
function __f0() {
|
|
1692
1692
|
return (function() {
|
|
1693
|
-
with({ a: 0 }) {
|
|
1693
|
+
with({ a: 0, this: undefined, arguments: undefined }) {
|
|
1694
1694
|
|
|
1695
1695
|
return function () { const x = typeof a; };
|
|
1696
1696
|
|
|
@@ -1717,7 +1717,7 @@ __array[0] = __array_0;
|
|
|
1717
1717
|
|
|
1718
1718
|
function __f0() {
|
|
1719
1719
|
return (function() {
|
|
1720
|
-
with({ array: __array }) {
|
|
1720
|
+
with({ array: __array, this: undefined, arguments: undefined }) {
|
|
1721
1721
|
|
|
1722
1722
|
return function () { return array; };
|
|
1723
1723
|
|
|
@@ -1757,7 +1757,7 @@ __C.m = __f3;
|
|
|
1757
1757
|
|
|
1758
1758
|
function __C() {
|
|
1759
1759
|
return (function() {
|
|
1760
|
-
with({ C: __C }) {
|
|
1760
|
+
with({ C: __C, this: undefined, arguments: undefined }) {
|
|
1761
1761
|
|
|
1762
1762
|
return function /*C*/() { };
|
|
1763
1763
|
|
|
@@ -1767,7 +1767,7 @@ return function /*C*/() { };
|
|
|
1767
1767
|
|
|
1768
1768
|
function __f1() {
|
|
1769
1769
|
return (function() {
|
|
1770
|
-
with({ outer: __outer }) {
|
|
1770
|
+
with({ outer: __outer, this: undefined, arguments: undefined }) {
|
|
1771
1771
|
|
|
1772
1772
|
return function () { return this.n() + outer; };
|
|
1773
1773
|
|
|
@@ -1777,7 +1777,7 @@ return function () { return this.n() + outer; };
|
|
|
1777
1777
|
|
|
1778
1778
|
function __f2() {
|
|
1779
1779
|
return (function() {
|
|
1780
|
-
with({ array: __outer_b }) {
|
|
1780
|
+
with({ array: __outer_b, this: undefined, arguments: undefined }) {
|
|
1781
1781
|
|
|
1782
1782
|
return function () { return array; };
|
|
1783
1783
|
|
|
@@ -1787,7 +1787,7 @@ return function () { return array; };
|
|
|
1787
1787
|
|
|
1788
1788
|
function __f3() {
|
|
1789
1789
|
return (function() {
|
|
1790
|
-
with({
|
|
1790
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1791
1791
|
|
|
1792
1792
|
return function () { return this.n(); };
|
|
1793
1793
|
|
|
@@ -1797,7 +1797,7 @@ return function () { return this.n(); };
|
|
|
1797
1797
|
|
|
1798
1798
|
function __f0() {
|
|
1799
1799
|
return (function() {
|
|
1800
|
-
with({ C: __C }) {
|
|
1800
|
+
with({ C: __C, this: undefined, arguments: undefined }) {
|
|
1801
1801
|
|
|
1802
1802
|
return () => C;
|
|
1803
1803
|
|
|
@@ -1835,7 +1835,7 @@ Object.defineProperty(__f1, "s", { configurable: true, writable: true, value: __
|
|
|
1835
1835
|
|
|
1836
1836
|
function __f1() {
|
|
1837
1837
|
return (function() {
|
|
1838
|
-
with({
|
|
1838
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1839
1839
|
|
|
1840
1840
|
return function /*constructor*/() { };
|
|
1841
1841
|
|
|
@@ -1845,7 +1845,7 @@ return function /*constructor*/() { };
|
|
|
1845
1845
|
|
|
1846
1846
|
function __f2() {
|
|
1847
1847
|
return (function() {
|
|
1848
|
-
with({
|
|
1848
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1849
1849
|
|
|
1850
1850
|
return function /*m*/() { return this.n(); };
|
|
1851
1851
|
|
|
@@ -1855,7 +1855,7 @@ return function /*m*/() { return this.n(); };
|
|
|
1855
1855
|
|
|
1856
1856
|
function __f3() {
|
|
1857
1857
|
return (function() {
|
|
1858
|
-
with({ outer: __outer }) {
|
|
1858
|
+
with({ outer: __outer, this: undefined, arguments: undefined }) {
|
|
1859
1859
|
|
|
1860
1860
|
return function /*n*/() { return outer; };
|
|
1861
1861
|
|
|
@@ -1865,7 +1865,7 @@ return function /*n*/() { return outer; };
|
|
|
1865
1865
|
|
|
1866
1866
|
function __f4() {
|
|
1867
1867
|
return (function() {
|
|
1868
|
-
with({ array: __outer_b }) {
|
|
1868
|
+
with({ array: __outer_b, this: undefined, arguments: undefined }) {
|
|
1869
1869
|
|
|
1870
1870
|
return function /*s*/() { return array; };
|
|
1871
1871
|
|
|
@@ -1875,7 +1875,7 @@ return function /*s*/() { return array; };
|
|
|
1875
1875
|
|
|
1876
1876
|
function __f0() {
|
|
1877
1877
|
return (function() {
|
|
1878
|
-
with({ C: __f1 }) {
|
|
1878
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
1879
1879
|
|
|
1880
1880
|
return () => C;
|
|
1881
1881
|
|
|
@@ -1908,7 +1908,7 @@ Object.defineProperty(__f1, "s", { configurable: true, writable: true, value: __
|
|
|
1908
1908
|
|
|
1909
1909
|
function __f1() {
|
|
1910
1910
|
return (function() {
|
|
1911
|
-
with({
|
|
1911
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1912
1912
|
|
|
1913
1913
|
return function /*constructor*/() {
|
|
1914
1914
|
this.x = 1;
|
|
@@ -1920,7 +1920,7 @@ return function /*constructor*/() {
|
|
|
1920
1920
|
|
|
1921
1921
|
function __f2() {
|
|
1922
1922
|
return (function() {
|
|
1923
|
-
with({
|
|
1923
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1924
1924
|
|
|
1925
1925
|
return function /*m*/() { return this.n(); };
|
|
1926
1926
|
|
|
@@ -1930,7 +1930,7 @@ return function /*m*/() { return this.n(); };
|
|
|
1930
1930
|
|
|
1931
1931
|
function __f3() {
|
|
1932
1932
|
return (function() {
|
|
1933
|
-
with({
|
|
1933
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1934
1934
|
|
|
1935
1935
|
return function /*n*/() { return 1; };
|
|
1936
1936
|
|
|
@@ -1940,7 +1940,7 @@ return function /*n*/() { return 1; };
|
|
|
1940
1940
|
|
|
1941
1941
|
function __f4() {
|
|
1942
1942
|
return (function() {
|
|
1943
|
-
with({
|
|
1943
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1944
1944
|
|
|
1945
1945
|
return function /*s*/() { return 0; };
|
|
1946
1946
|
|
|
@@ -1950,7 +1950,7 @@ return function /*s*/() { return 0; };
|
|
|
1950
1950
|
|
|
1951
1951
|
function __f0() {
|
|
1952
1952
|
return (function() {
|
|
1953
|
-
with({ C: __f1 }) {
|
|
1953
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
1954
1954
|
|
|
1955
1955
|
return () => C;
|
|
1956
1956
|
|
|
@@ -1983,7 +1983,7 @@ Object.defineProperty(__f1, "s", { configurable: true, writable: true, value: __
|
|
|
1983
1983
|
|
|
1984
1984
|
function __f1() {
|
|
1985
1985
|
return (function() {
|
|
1986
|
-
with({
|
|
1986
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1987
1987
|
|
|
1988
1988
|
return function /*constructor*/() {
|
|
1989
1989
|
this.x = 1;
|
|
@@ -1995,7 +1995,7 @@ return function /*constructor*/() {
|
|
|
1995
1995
|
|
|
1996
1996
|
function __f2() {
|
|
1997
1997
|
return (function() {
|
|
1998
|
-
with({
|
|
1998
|
+
with({ this: undefined, arguments: undefined }) {
|
|
1999
1999
|
|
|
2000
2000
|
return function /*m*/() { return this.n(); };
|
|
2001
2001
|
|
|
@@ -2005,7 +2005,7 @@ return function /*m*/() { return this.n(); };
|
|
|
2005
2005
|
|
|
2006
2006
|
function __f3() {
|
|
2007
2007
|
return (function() {
|
|
2008
|
-
with({
|
|
2008
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2009
2009
|
|
|
2010
2010
|
return function /*n*/() { return 1; };
|
|
2011
2011
|
|
|
@@ -2015,7 +2015,7 @@ return function /*n*/() { return 1; };
|
|
|
2015
2015
|
|
|
2016
2016
|
function __f4() {
|
|
2017
2017
|
return (function() {
|
|
2018
|
-
with({
|
|
2018
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2019
2019
|
|
|
2020
2020
|
return function /*s*/() { return 0; };
|
|
2021
2021
|
|
|
@@ -2025,7 +2025,7 @@ return function /*s*/() { return 0; };
|
|
|
2025
2025
|
|
|
2026
2026
|
function __f0() {
|
|
2027
2027
|
return (function() {
|
|
2028
|
-
with({ C: __f1 }) {
|
|
2028
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2029
2029
|
|
|
2030
2030
|
return () => new C();
|
|
2031
2031
|
|
|
@@ -2047,7 +2047,7 @@ return () => new C();
|
|
|
2047
2047
|
|
|
2048
2048
|
function __f0() {
|
|
2049
2049
|
return (function() {
|
|
2050
|
-
with({
|
|
2050
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2051
2051
|
|
|
2052
2052
|
return function /*m*/() { return this.n(); };
|
|
2053
2053
|
|
|
@@ -2068,7 +2068,7 @@ return function /*m*/() { return this.n(); };
|
|
|
2068
2068
|
|
|
2069
2069
|
function __f0() {
|
|
2070
2070
|
return (function() {
|
|
2071
|
-
with({
|
|
2071
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2072
2072
|
|
|
2073
2073
|
return function /*delete*/() { return 0; };
|
|
2074
2074
|
|
|
@@ -2090,7 +2090,7 @@ return function /*delete*/() { return 0; };
|
|
|
2090
2090
|
|
|
2091
2091
|
function __f0() {
|
|
2092
2092
|
return (function() {
|
|
2093
|
-
with({
|
|
2093
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2094
2094
|
|
|
2095
2095
|
return function /*m*/() { return this.n(); };
|
|
2096
2096
|
|
|
@@ -2116,7 +2116,7 @@ return function /*m*/() { return this.n(); };
|
|
|
2116
2116
|
|
|
2117
2117
|
function __f0() {
|
|
2118
2118
|
return (function() {
|
|
2119
|
-
with({
|
|
2119
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2120
2120
|
|
|
2121
2121
|
return function () { return this.n(); };
|
|
2122
2122
|
|
|
@@ -2140,7 +2140,7 @@ __array[1] = __array;
|
|
|
2140
2140
|
|
|
2141
2141
|
function __f0() {
|
|
2142
2142
|
return (function() {
|
|
2143
|
-
with({ array: __array }) {
|
|
2143
|
+
with({ array: __array, this: undefined, arguments: undefined }) {
|
|
2144
2144
|
|
|
2145
2145
|
return () => array;
|
|
2146
2146
|
|
|
@@ -2164,7 +2164,7 @@ __obj.b = __obj;
|
|
|
2164
2164
|
|
|
2165
2165
|
function __f0() {
|
|
2166
2166
|
return (function() {
|
|
2167
|
-
with({ obj: __obj }) {
|
|
2167
|
+
with({ obj: __obj, this: undefined, arguments: undefined }) {
|
|
2168
2168
|
|
|
2169
2169
|
return () => obj;
|
|
2170
2170
|
|
|
@@ -2191,7 +2191,7 @@ __obj.b = __obj_a;
|
|
|
2191
2191
|
|
|
2192
2192
|
function __f0() {
|
|
2193
2193
|
return (function() {
|
|
2194
|
-
with({ obj: __obj }) {
|
|
2194
|
+
with({ obj: __obj, this: undefined, arguments: undefined }) {
|
|
2195
2195
|
|
|
2196
2196
|
return () => obj;
|
|
2197
2197
|
|
|
@@ -2222,7 +2222,7 @@ __obj2[1] = __obj2_0;
|
|
|
2222
2222
|
|
|
2223
2223
|
function __f0() {
|
|
2224
2224
|
return (function() {
|
|
2225
|
-
with({ obj2: __obj2 }) {
|
|
2225
|
+
with({ obj2: __obj2, this: undefined, arguments: undefined }) {
|
|
2226
2226
|
|
|
2227
2227
|
return () => obj2;
|
|
2228
2228
|
|
|
@@ -2245,7 +2245,7 @@ var __obj = {a: 1};
|
|
|
2245
2245
|
|
|
2246
2246
|
function __f1() {
|
|
2247
2247
|
return (function() {
|
|
2248
|
-
with({ obj: __obj, f1: __f1 }) {
|
|
2248
|
+
with({ obj: __obj, f1: __f1, this: undefined, arguments: undefined }) {
|
|
2249
2249
|
|
|
2250
2250
|
return function /*f1*/() { return obj; };
|
|
2251
2251
|
|
|
@@ -2255,7 +2255,7 @@ return function /*f1*/() { return obj; };
|
|
|
2255
2255
|
|
|
2256
2256
|
function __f2() {
|
|
2257
2257
|
return (function() {
|
|
2258
|
-
with({ obj: __obj, f2: __f2 }) {
|
|
2258
|
+
with({ obj: __obj, f2: __f2, this: undefined, arguments: undefined }) {
|
|
2259
2259
|
|
|
2260
2260
|
return function /*f2*/() { console.log(obj); };
|
|
2261
2261
|
|
|
@@ -2265,7 +2265,7 @@ return function /*f2*/() { console.log(obj); };
|
|
|
2265
2265
|
|
|
2266
2266
|
function __f0() {
|
|
2267
2267
|
return (function() {
|
|
2268
|
-
with({ f1: __f1, obj: __obj, f2: __f2 }) {
|
|
2268
|
+
with({ f1: __f1, obj: __obj, f2: __f2, this: undefined, arguments: undefined }) {
|
|
2269
2269
|
|
|
2270
2270
|
return () => { f1(); obj.a = 2; f2(); };
|
|
2271
2271
|
|
|
@@ -2291,7 +2291,7 @@ Object.defineProperty(__v, "key", { configurable: true, value: 1 });
|
|
|
2291
2291
|
|
|
2292
2292
|
function __f0() {
|
|
2293
2293
|
return (function() {
|
|
2294
|
-
with({ v: __v }) {
|
|
2294
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
2295
2295
|
|
|
2296
2296
|
return () => v;
|
|
2297
2297
|
|
|
@@ -2318,7 +2318,7 @@ Object.defineProperty(__v, "key", { enumerable: true, writable: true, value: 1 }
|
|
|
2318
2318
|
|
|
2319
2319
|
function __f0() {
|
|
2320
2320
|
return (function() {
|
|
2321
|
-
with({ v: __v }) {
|
|
2321
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
2322
2322
|
|
|
2323
2323
|
return () => v;
|
|
2324
2324
|
|
|
@@ -2342,7 +2342,7 @@ __v[2] = 3;
|
|
|
2342
2342
|
|
|
2343
2343
|
function __f0() {
|
|
2344
2344
|
return (function() {
|
|
2345
|
-
with({ v: __v }) {
|
|
2345
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
2346
2346
|
|
|
2347
2347
|
return () => v;
|
|
2348
2348
|
|
|
@@ -2368,7 +2368,7 @@ __v.foo = "";
|
|
|
2368
2368
|
|
|
2369
2369
|
function __f0() {
|
|
2370
2370
|
return (function() {
|
|
2371
|
-
with({ v: __v }) {
|
|
2371
|
+
with({ v: __v, this: undefined, arguments: undefined }) {
|
|
2372
2372
|
|
|
2373
2373
|
return () => v;
|
|
2374
2374
|
|
|
@@ -2390,7 +2390,7 @@ __f0.foo = "bar";
|
|
|
2390
2390
|
|
|
2391
2391
|
function __f0() {
|
|
2392
2392
|
return (function() {
|
|
2393
|
-
with({
|
|
2393
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2394
2394
|
|
|
2395
2395
|
return () => { return 1; };
|
|
2396
2396
|
|
|
@@ -2412,7 +2412,7 @@ var __x = Object.create(null);
|
|
|
2412
2412
|
|
|
2413
2413
|
function __f0() {
|
|
2414
2414
|
return (function() {
|
|
2415
|
-
with({ x: __x }) {
|
|
2415
|
+
with({ x: __x, this: undefined, arguments: undefined }) {
|
|
2416
2416
|
|
|
2417
2417
|
return () => { return x; };
|
|
2418
2418
|
|
|
@@ -2434,7 +2434,7 @@ var __x = Object.create(global.Number.prototype);
|
|
|
2434
2434
|
|
|
2435
2435
|
function __f0() {
|
|
2436
2436
|
return (function() {
|
|
2437
|
-
with({ x: __x }) {
|
|
2437
|
+
with({ x: __x, this: undefined, arguments: undefined }) {
|
|
2438
2438
|
|
|
2439
2439
|
return () => { return x; };
|
|
2440
2440
|
|
|
@@ -2457,7 +2457,7 @@ var __x = Object.create(__x_proto);
|
|
|
2457
2457
|
|
|
2458
2458
|
function __f1() {
|
|
2459
2459
|
return (function() {
|
|
2460
|
-
with({ v: __f0 }) {
|
|
2460
|
+
with({ v: __f0, this: undefined, arguments: undefined }) {
|
|
2461
2461
|
|
|
2462
2462
|
return function /*x*/() { return v; };
|
|
2463
2463
|
|
|
@@ -2467,7 +2467,7 @@ return function /*x*/() { return v; };
|
|
|
2467
2467
|
|
|
2468
2468
|
function __f0() {
|
|
2469
2469
|
return (function() {
|
|
2470
|
-
with({ x: __x }) {
|
|
2470
|
+
with({ x: __x, this: undefined, arguments: undefined }) {
|
|
2471
2471
|
|
|
2472
2472
|
return () => { return x; };
|
|
2473
2473
|
|
|
@@ -2489,7 +2489,7 @@ Object.setPrototypeOf(__f0, __f1);
|
|
|
2489
2489
|
|
|
2490
2490
|
function __f0() {
|
|
2491
2491
|
return (function() {
|
|
2492
|
-
with({
|
|
2492
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2493
2493
|
|
|
2494
2494
|
return () => { return 0; };
|
|
2495
2495
|
|
|
@@ -2499,7 +2499,7 @@ return () => { return 0; };
|
|
|
2499
2499
|
|
|
2500
2500
|
function __f1() {
|
|
2501
2501
|
return (function() {
|
|
2502
|
-
with({
|
|
2502
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2503
2503
|
|
|
2504
2504
|
return () => { return 1; };
|
|
2505
2505
|
|
|
@@ -2522,7 +2522,7 @@ Object.setPrototypeOf(__f, Object.getPrototypeOf(function*(){}));
|
|
|
2522
2522
|
|
|
2523
2523
|
function __f() {
|
|
2524
2524
|
return (function() {
|
|
2525
|
-
with({ f: __f }) {
|
|
2525
|
+
with({ f: __f, this: undefined, arguments: undefined }) {
|
|
2526
2526
|
|
|
2527
2527
|
return function* /*f*/() { yield 1; };
|
|
2528
2528
|
|
|
@@ -2545,7 +2545,7 @@ Object.setPrototypeOf(__f0, Object.getPrototypeOf(function*(){}));
|
|
|
2545
2545
|
|
|
2546
2546
|
function __f0() {
|
|
2547
2547
|
return (function() {
|
|
2548
|
-
with({
|
|
2548
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2549
2549
|
|
|
2550
2550
|
return function* () { yield 1; };
|
|
2551
2551
|
|
|
@@ -2579,7 +2579,7 @@ Object.defineProperty(__f1, "prototype", { value: __f1_prototype });
|
|
|
2579
2579
|
|
|
2580
2580
|
function __f1() {
|
|
2581
2581
|
return (function() {
|
|
2582
|
-
with({
|
|
2582
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2583
2583
|
|
|
2584
2584
|
return function /*constructor*/() {
|
|
2585
2585
|
this._x = 0;
|
|
@@ -2591,7 +2591,7 @@ return function /*constructor*/() {
|
|
|
2591
2591
|
|
|
2592
2592
|
function __f2() {
|
|
2593
2593
|
return (function() {
|
|
2594
|
-
with({
|
|
2594
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2595
2595
|
|
|
2596
2596
|
return function /*foo*/() {
|
|
2597
2597
|
return this._x;
|
|
@@ -2603,7 +2603,7 @@ return function /*foo*/() {
|
|
|
2603
2603
|
|
|
2604
2604
|
function __f3(__0) {
|
|
2605
2605
|
return (function() {
|
|
2606
|
-
with({
|
|
2606
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2607
2607
|
|
|
2608
2608
|
return function /*foo*/(v) {
|
|
2609
2609
|
this._x = v;
|
|
@@ -2615,7 +2615,7 @@ return function /*foo*/(v) {
|
|
|
2615
2615
|
|
|
2616
2616
|
function __f0() {
|
|
2617
2617
|
return (function() {
|
|
2618
|
-
with({ C: __f1 }) {
|
|
2618
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2619
2619
|
|
|
2620
2620
|
return () => C;
|
|
2621
2621
|
|
|
@@ -2643,7 +2643,7 @@ Object.defineProperty(__f1, "foo", { configurable: true, get: __f2, set: __f3 })
|
|
|
2643
2643
|
|
|
2644
2644
|
function __f1() {
|
|
2645
2645
|
return (function() {
|
|
2646
|
-
with({
|
|
2646
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2647
2647
|
|
|
2648
2648
|
return function /*constructor*/() { };
|
|
2649
2649
|
|
|
@@ -2653,7 +2653,7 @@ return function /*constructor*/() { };
|
|
|
2653
2653
|
|
|
2654
2654
|
function __f2() {
|
|
2655
2655
|
return (function() {
|
|
2656
|
-
with({
|
|
2656
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2657
2657
|
|
|
2658
2658
|
return function /*foo*/() {
|
|
2659
2659
|
throw new Error("This getter function should not be evaluated while closure serialization.");
|
|
@@ -2665,7 +2665,7 @@ return function /*foo*/() {
|
|
|
2665
2665
|
|
|
2666
2666
|
function __f3(__0) {
|
|
2667
2667
|
return (function() {
|
|
2668
|
-
with({
|
|
2668
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2669
2669
|
|
|
2670
2670
|
return function /*foo*/(v) {
|
|
2671
2671
|
throw new Error("This setter function should not be evaluated while closure serialization.");
|
|
@@ -2677,7 +2677,7 @@ return function /*foo*/(v) {
|
|
|
2677
2677
|
|
|
2678
2678
|
function __f0() {
|
|
2679
2679
|
return (function() {
|
|
2680
|
-
with({ C: __f1 }) {
|
|
2680
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2681
2681
|
|
|
2682
2682
|
return () => C;
|
|
2683
2683
|
|
|
@@ -2706,7 +2706,7 @@ Object.defineProperty(__f1, "prototype", { value: __f1_prototype });
|
|
|
2706
2706
|
|
|
2707
2707
|
function __f1() {
|
|
2708
2708
|
return (function() {
|
|
2709
|
-
with({
|
|
2709
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2710
2710
|
|
|
2711
2711
|
return function /*constructor*/() { };
|
|
2712
2712
|
|
|
@@ -2716,7 +2716,7 @@ return function /*constructor*/() { };
|
|
|
2716
2716
|
|
|
2717
2717
|
function __f2(__0) {
|
|
2718
2718
|
return (function() {
|
|
2719
|
-
with({
|
|
2719
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2720
2720
|
|
|
2721
2721
|
return function (a) {
|
|
2722
2722
|
return a;
|
|
@@ -2728,7 +2728,7 @@ return function (a) {
|
|
|
2728
2728
|
|
|
2729
2729
|
function __f0() {
|
|
2730
2730
|
return (function() {
|
|
2731
|
-
with({ C: __f1 }) {
|
|
2731
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2732
2732
|
|
|
2733
2733
|
return () => C;
|
|
2734
2734
|
|
|
@@ -2760,7 +2760,7 @@ Object.defineProperty(__f1, "prototype", { value: __f1_prototype });
|
|
|
2760
2760
|
|
|
2761
2761
|
function __f1() {
|
|
2762
2762
|
return (function() {
|
|
2763
|
-
with({
|
|
2763
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2764
2764
|
|
|
2765
2765
|
return function /*constructor*/() { };
|
|
2766
2766
|
|
|
@@ -2770,7 +2770,7 @@ return function /*constructor*/() { };
|
|
|
2770
2770
|
|
|
2771
2771
|
function __f2() {
|
|
2772
2772
|
return (function() {
|
|
2773
|
-
with({ sym: __sym }) {
|
|
2773
|
+
with({ sym: __sym, this: undefined, arguments: undefined }) {
|
|
2774
2774
|
|
|
2775
2775
|
return function /*getSym*/() { return sym; };
|
|
2776
2776
|
|
|
@@ -2780,7 +2780,7 @@ return function /*getSym*/() { return sym; };
|
|
|
2780
2780
|
|
|
2781
2781
|
function __f3(__0) {
|
|
2782
2782
|
return (function() {
|
|
2783
|
-
with({
|
|
2783
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2784
2784
|
|
|
2785
2785
|
return function (a) {
|
|
2786
2786
|
return a;
|
|
@@ -2792,7 +2792,7 @@ return function (a) {
|
|
|
2792
2792
|
|
|
2793
2793
|
function __f0() {
|
|
2794
2794
|
return (function() {
|
|
2795
|
-
with({ C: __f1 }) {
|
|
2795
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2796
2796
|
|
|
2797
2797
|
return () => C;
|
|
2798
2798
|
|
|
@@ -2820,7 +2820,7 @@ Object.defineProperty(__f1, "prototype", { value: __f1_prototype });
|
|
|
2820
2820
|
|
|
2821
2821
|
function __f1() {
|
|
2822
2822
|
return (function() {
|
|
2823
|
-
with({
|
|
2823
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2824
2824
|
|
|
2825
2825
|
return function /*constructor*/() { };
|
|
2826
2826
|
|
|
@@ -2830,7 +2830,7 @@ return function /*constructor*/() { };
|
|
|
2830
2830
|
|
|
2831
2831
|
function __f2(__0) {
|
|
2832
2832
|
return (function() {
|
|
2833
|
-
with({
|
|
2833
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2834
2834
|
|
|
2835
2835
|
return function (a) {
|
|
2836
2836
|
return a;
|
|
@@ -2842,7 +2842,7 @@ return function (a) {
|
|
|
2842
2842
|
|
|
2843
2843
|
function __f0() {
|
|
2844
2844
|
return (function() {
|
|
2845
|
-
with({ C: __f1 }) {
|
|
2845
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2846
2846
|
|
|
2847
2847
|
return () => C;
|
|
2848
2848
|
|
|
@@ -2893,7 +2893,7 @@ Object.setPrototypeOf(__f1, __f2);
|
|
|
2893
2893
|
|
|
2894
2894
|
function __f2(__0) {
|
|
2895
2895
|
return (function() {
|
|
2896
|
-
with({
|
|
2896
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2897
2897
|
|
|
2898
2898
|
return function /*constructor*/(n) {
|
|
2899
2899
|
this.n = n;
|
|
@@ -2906,7 +2906,7 @@ return function /*constructor*/(n) {
|
|
|
2906
2906
|
|
|
2907
2907
|
function __f3(__0) {
|
|
2908
2908
|
return (function() {
|
|
2909
|
-
with({
|
|
2909
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2910
2910
|
|
|
2911
2911
|
return function /*dMethod*/(x) { return x; };
|
|
2912
2912
|
|
|
@@ -2916,7 +2916,7 @@ return function /*dMethod*/(x) { return x; };
|
|
|
2916
2916
|
|
|
2917
2917
|
function __f4() {
|
|
2918
2918
|
return (function() {
|
|
2919
|
-
with({
|
|
2919
|
+
with({ this: undefined, arguments: undefined }) {
|
|
2920
2920
|
|
|
2921
2921
|
return function /*dVirtual*/() { return 1; };
|
|
2922
2922
|
|
|
@@ -2926,7 +2926,7 @@ return function /*dVirtual*/() { return 1; };
|
|
|
2926
2926
|
|
|
2927
2927
|
function __f1(__0) {
|
|
2928
2928
|
return (function() {
|
|
2929
|
-
with({ __super: __f2 }) {
|
|
2929
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
2930
2930
|
|
|
2931
2931
|
return function /*constructor*/(n) {
|
|
2932
2932
|
__super.call(this, n + 1);
|
|
@@ -2939,7 +2939,7 @@ return function /*constructor*/(n) {
|
|
|
2939
2939
|
|
|
2940
2940
|
function __f5() {
|
|
2941
2941
|
return (function() {
|
|
2942
|
-
with({ __super: __f2 }) {
|
|
2942
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
2943
2943
|
|
|
2944
2944
|
return function /*cMethod*/() {
|
|
2945
2945
|
return "" +
|
|
@@ -2954,7 +2954,7 @@ return function /*cMethod*/() {
|
|
|
2954
2954
|
|
|
2955
2955
|
function __f6() {
|
|
2956
2956
|
return (function() {
|
|
2957
|
-
with({ __super: __f2 }) {
|
|
2957
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
2958
2958
|
|
|
2959
2959
|
return function /*dVirtual*/() { return 3; };
|
|
2960
2960
|
|
|
@@ -2964,7 +2964,7 @@ return function /*dVirtual*/() { return 3; };
|
|
|
2964
2964
|
|
|
2965
2965
|
function __f0() {
|
|
2966
2966
|
return (function() {
|
|
2967
|
-
with({ C: __f1 }) {
|
|
2967
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
2968
2968
|
|
|
2969
2969
|
return () => C;
|
|
2970
2970
|
|
|
@@ -3018,7 +3018,7 @@ Object.setPrototypeOf(__f1, __f2);
|
|
|
3018
3018
|
|
|
3019
3019
|
function __f3(__0) {
|
|
3020
3020
|
return (function() {
|
|
3021
|
-
with({
|
|
3021
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3022
3022
|
|
|
3023
3023
|
return function /*constructor*/(n) {
|
|
3024
3024
|
this.n = n;
|
|
@@ -3031,7 +3031,7 @@ return function /*constructor*/(n) {
|
|
|
3031
3031
|
|
|
3032
3032
|
function __f4(__0) {
|
|
3033
3033
|
return (function() {
|
|
3034
|
-
with({
|
|
3034
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3035
3035
|
|
|
3036
3036
|
return function /*method*/(x) { return x; };
|
|
3037
3037
|
|
|
@@ -3041,7 +3041,7 @@ return function /*method*/(x) { return x; };
|
|
|
3041
3041
|
|
|
3042
3042
|
function __f2(__0) {
|
|
3043
3043
|
return (function() {
|
|
3044
|
-
with({ __super: __f3 }) {
|
|
3044
|
+
with({ __super: __f3, this: undefined, arguments: undefined }) {
|
|
3045
3045
|
|
|
3046
3046
|
return function /*constructor*/(n) {
|
|
3047
3047
|
__super.call(this, n + 1);
|
|
@@ -3054,7 +3054,7 @@ return function /*constructor*/(n) {
|
|
|
3054
3054
|
|
|
3055
3055
|
function __f5(__0) {
|
|
3056
3056
|
return (function() {
|
|
3057
|
-
with({ __super: __f3 }) {
|
|
3057
|
+
with({ __super: __f3, this: undefined, arguments: undefined }) {
|
|
3058
3058
|
|
|
3059
3059
|
return function /*method*/(n) { return 1 + __super.prototype.method.call(this, n + 1); };
|
|
3060
3060
|
|
|
@@ -3064,7 +3064,7 @@ return function /*method*/(n) { return 1 + __super.prototype.method.call(this, n
|
|
|
3064
3064
|
|
|
3065
3065
|
function __f1(__0) {
|
|
3066
3066
|
return (function() {
|
|
3067
|
-
with({ __super: __f2 }) {
|
|
3067
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
3068
3068
|
|
|
3069
3069
|
return function /*constructor*/(n) {
|
|
3070
3070
|
__super.call(this, n * 2);
|
|
@@ -3077,7 +3077,7 @@ return function /*constructor*/(n) {
|
|
|
3077
3077
|
|
|
3078
3078
|
function __f6(__0) {
|
|
3079
3079
|
return (function() {
|
|
3080
|
-
with({ __super: __f2 }) {
|
|
3080
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
3081
3081
|
|
|
3082
3082
|
return function /*method*/(n) { return 2 * __super.prototype.method.call(this, n * 2); };
|
|
3083
3083
|
|
|
@@ -3087,7 +3087,7 @@ return function /*method*/(n) { return 2 * __super.prototype.method.call(this, n
|
|
|
3087
3087
|
|
|
3088
3088
|
function __f0() {
|
|
3089
3089
|
return (function() {
|
|
3090
|
-
with({ C: __f1 }) {
|
|
3090
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
3091
3091
|
|
|
3092
3092
|
return () => C;
|
|
3093
3093
|
|
|
@@ -3145,7 +3145,7 @@ Object.setPrototypeOf(__f1, __f2);
|
|
|
3145
3145
|
|
|
3146
3146
|
function __f3(__0) {
|
|
3147
3147
|
return (function() {
|
|
3148
|
-
with({
|
|
3148
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3149
3149
|
|
|
3150
3150
|
return function /*constructor*/(n) {
|
|
3151
3151
|
this.n = n;
|
|
@@ -3158,7 +3158,7 @@ return function /*constructor*/(n) {
|
|
|
3158
3158
|
|
|
3159
3159
|
function __f4(__0) {
|
|
3160
3160
|
return (function() {
|
|
3161
|
-
with({
|
|
3161
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3162
3162
|
|
|
3163
3163
|
return function (x) { return x; };
|
|
3164
3164
|
|
|
@@ -3168,7 +3168,7 @@ return function (x) { return x; };
|
|
|
3168
3168
|
|
|
3169
3169
|
function __f2(__0) {
|
|
3170
3170
|
return (function() {
|
|
3171
|
-
with({ __super: __f3 }) {
|
|
3171
|
+
with({ __super: __f3, this: undefined, arguments: undefined }) {
|
|
3172
3172
|
|
|
3173
3173
|
return function /*constructor*/(n) {
|
|
3174
3174
|
__super.call(this, n + 1);
|
|
@@ -3181,7 +3181,7 @@ return function /*constructor*/(n) {
|
|
|
3181
3181
|
|
|
3182
3182
|
function __f5(__0) {
|
|
3183
3183
|
return (function() {
|
|
3184
|
-
with({ sym: __f3_prototype_sym, __super: __f3 }) {
|
|
3184
|
+
with({ sym: __f3_prototype_sym, __super: __f3, this: undefined, arguments: undefined }) {
|
|
3185
3185
|
|
|
3186
3186
|
return function /*__computed*/(n) { return 1 + __super.prototype[sym].call(this, n + 1); };
|
|
3187
3187
|
|
|
@@ -3191,7 +3191,7 @@ return function /*__computed*/(n) { return 1 + __super.prototype[sym].call(this,
|
|
|
3191
3191
|
|
|
3192
3192
|
function __f1(__0) {
|
|
3193
3193
|
return (function() {
|
|
3194
|
-
with({ __super: __f2 }) {
|
|
3194
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
3195
3195
|
|
|
3196
3196
|
return function /*constructor*/(n) {
|
|
3197
3197
|
__super.call(this, n * 2);
|
|
@@ -3204,7 +3204,7 @@ return function /*constructor*/(n) {
|
|
|
3204
3204
|
|
|
3205
3205
|
function __f6(__0) {
|
|
3206
3206
|
return (function() {
|
|
3207
|
-
with({ sym: __f3_prototype_sym, __super: __f2 }) {
|
|
3207
|
+
with({ sym: __f3_prototype_sym, __super: __f2, this: undefined, arguments: undefined }) {
|
|
3208
3208
|
|
|
3209
3209
|
return function /*__computed*/(n) { return 2 * __super.prototype[sym].call(this, n * 2); };
|
|
3210
3210
|
|
|
@@ -3214,7 +3214,7 @@ return function /*__computed*/(n) { return 2 * __super.prototype[sym].call(this,
|
|
|
3214
3214
|
|
|
3215
3215
|
function __f0() {
|
|
3216
3216
|
return (function() {
|
|
3217
|
-
with({ C: __f1 }) {
|
|
3217
|
+
with({ C: __f1, this: undefined, arguments: undefined }) {
|
|
3218
3218
|
|
|
3219
3219
|
return () => C;
|
|
3220
3220
|
|
|
@@ -3257,7 +3257,7 @@ Object.setPrototypeOf(__f1, __f2);
|
|
|
3257
3257
|
|
|
3258
3258
|
function __f2(__0) {
|
|
3259
3259
|
return (function() {
|
|
3260
|
-
with({
|
|
3260
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3261
3261
|
|
|
3262
3262
|
return function /*constructor*/(n) {
|
|
3263
3263
|
this.n = n;
|
|
@@ -3270,7 +3270,7 @@ return function /*constructor*/(n) {
|
|
|
3270
3270
|
|
|
3271
3271
|
function __f3(__0) {
|
|
3272
3272
|
return (function() {
|
|
3273
|
-
with({
|
|
3273
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3274
3274
|
|
|
3275
3275
|
return function /*method*/(x) { return x; };
|
|
3276
3276
|
|
|
@@ -3280,7 +3280,7 @@ return function /*method*/(x) { return x; };
|
|
|
3280
3280
|
|
|
3281
3281
|
function __f4(__0) {
|
|
3282
3282
|
return (function() {
|
|
3283
|
-
with({
|
|
3283
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3284
3284
|
|
|
3285
3285
|
return function (x) { return x * x; };
|
|
3286
3286
|
|
|
@@ -3290,7 +3290,7 @@ return function (x) { return x * x; };
|
|
|
3290
3290
|
|
|
3291
3291
|
function __f1(__0) {
|
|
3292
3292
|
return (function() {
|
|
3293
|
-
with({ __super: __f2 }) {
|
|
3293
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
3294
3294
|
|
|
3295
3295
|
return function /*constructor*/(n) {
|
|
3296
3296
|
__super.call(this, n + 1);
|
|
@@ -3303,7 +3303,7 @@ return function /*constructor*/(n) {
|
|
|
3303
3303
|
|
|
3304
3304
|
function __f5(__0) {
|
|
3305
3305
|
return (function() {
|
|
3306
|
-
with({ __super: __f2 }) {
|
|
3306
|
+
with({ __super: __f2, this: undefined, arguments: undefined }) {
|
|
3307
3307
|
|
|
3308
3308
|
return function /*method*/(n) { return 1 + __super.method.call(this, n + 1); };
|
|
3309
3309
|
|
|
@@ -3313,7 +3313,7 @@ return function /*method*/(n) { return 1 + __super.method.call(this, n + 1); };
|
|
|
3313
3313
|
|
|
3314
3314
|
function __f6(__0) {
|
|
3315
3315
|
return (function() {
|
|
3316
|
-
with({ sym: __f2_sym, __super: __f2 }) {
|
|
3316
|
+
with({ sym: __f2_sym, __super: __f2, this: undefined, arguments: undefined }) {
|
|
3317
3317
|
|
|
3318
3318
|
return function /*__computed*/(x) { return x * __super[sym].call(this, x + 1); };
|
|
3319
3319
|
|
|
@@ -3323,7 +3323,7 @@ return function /*__computed*/(x) { return x * __super[sym].call(this, x + 1); }
|
|
|
3323
3323
|
|
|
3324
3324
|
function __f0() {
|
|
3325
3325
|
return (function() {
|
|
3326
|
-
with({ B: __f1 }) {
|
|
3326
|
+
with({ B: __f1, this: undefined, arguments: undefined }) {
|
|
3327
3327
|
|
|
3328
3328
|
return () => B;
|
|
3329
3329
|
|
|
@@ -3344,7 +3344,7 @@ var __o = {a: 1};
|
|
|
3344
3344
|
|
|
3345
3345
|
function __f0() {
|
|
3346
3346
|
return (function() {
|
|
3347
|
-
with({ o: __o }) {
|
|
3347
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3348
3348
|
|
|
3349
3349
|
return function () { console.log(o.a); };
|
|
3350
3350
|
|
|
@@ -3365,7 +3365,7 @@ var __o = {a: 1};
|
|
|
3365
3365
|
|
|
3366
3366
|
function __f0() {
|
|
3367
3367
|
return (function() {
|
|
3368
|
-
with({ o: __o }) {
|
|
3368
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3369
3369
|
|
|
3370
3370
|
return function () { console.log(o["a"]); };
|
|
3371
3371
|
|
|
@@ -3386,7 +3386,7 @@ var __o = {b: 2, c: 3};
|
|
|
3386
3386
|
|
|
3387
3387
|
function __f0() {
|
|
3388
3388
|
return (function() {
|
|
3389
|
-
with({ o: __o }) {
|
|
3389
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3390
3390
|
|
|
3391
3391
|
return function () { console.log(o.b + o.c); };
|
|
3392
3392
|
|
|
@@ -3407,7 +3407,7 @@ var __o = {b: 2, c: 3};
|
|
|
3407
3407
|
|
|
3408
3408
|
function __f0() {
|
|
3409
3409
|
return (function() {
|
|
3410
|
-
with({ o: __o }) {
|
|
3410
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3411
3411
|
|
|
3412
3412
|
return function () { console.log(o["b"] + o["c"]); };
|
|
3413
3413
|
|
|
@@ -3428,7 +3428,7 @@ var __o = {a: 1, b: 2, c: 3};
|
|
|
3428
3428
|
|
|
3429
3429
|
function __f0() {
|
|
3430
3430
|
return (function() {
|
|
3431
|
-
with({ o: __o }) {
|
|
3431
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3432
3432
|
|
|
3433
3433
|
return function () { console.log(o); };
|
|
3434
3434
|
|
|
@@ -3449,7 +3449,7 @@ var __o = {a: 1, b: 2, c: __f1};
|
|
|
3449
3449
|
|
|
3450
3450
|
function __f1() {
|
|
3451
3451
|
return (function() {
|
|
3452
|
-
with({
|
|
3452
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3453
3453
|
|
|
3454
3454
|
return function /*c*/() { return this; };
|
|
3455
3455
|
|
|
@@ -3459,7 +3459,7 @@ return function /*c*/() { return this; };
|
|
|
3459
3459
|
|
|
3460
3460
|
function __f0() {
|
|
3461
3461
|
return (function() {
|
|
3462
|
-
with({ o: __o }) {
|
|
3462
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3463
3463
|
|
|
3464
3464
|
return function () { console.log(o.c()); };
|
|
3465
3465
|
|
|
@@ -3480,7 +3480,7 @@ var __o = {a: 1, b: 2, c: __f1};
|
|
|
3480
3480
|
|
|
3481
3481
|
function __f1() {
|
|
3482
3482
|
return (function() {
|
|
3483
|
-
with({
|
|
3483
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3484
3484
|
|
|
3485
3485
|
return function /*c*/() { return this; };
|
|
3486
3486
|
|
|
@@ -3490,7 +3490,7 @@ return function /*c*/() { return this; };
|
|
|
3490
3490
|
|
|
3491
3491
|
function __f0() {
|
|
3492
3492
|
return (function() {
|
|
3493
|
-
with({ o: __o }) {
|
|
3493
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3494
3494
|
|
|
3495
3495
|
return function () { console.log(o["c"]()); };
|
|
3496
3496
|
|
|
@@ -3511,7 +3511,7 @@ var __o = {a: 1, b: 2, c: __f1};
|
|
|
3511
3511
|
|
|
3512
3512
|
function __f1() {
|
|
3513
3513
|
return (function() {
|
|
3514
|
-
with({
|
|
3514
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3515
3515
|
|
|
3516
3516
|
return function /*c*/() { const v = () => this; };
|
|
3517
3517
|
|
|
@@ -3521,7 +3521,7 @@ return function /*c*/() { const v = () => this; };
|
|
|
3521
3521
|
|
|
3522
3522
|
function __f0() {
|
|
3523
3523
|
return (function() {
|
|
3524
|
-
with({ o: __o }) {
|
|
3524
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3525
3525
|
|
|
3526
3526
|
return function () { console.log(o.c()); };
|
|
3527
3527
|
|
|
@@ -3543,7 +3543,7 @@ var __o = {c: __f1};
|
|
|
3543
3543
|
|
|
3544
3544
|
function __f1() {
|
|
3545
3545
|
return (function() {
|
|
3546
|
-
with({
|
|
3546
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3547
3547
|
|
|
3548
3548
|
return function /*c*/() { const v = function () { return this; }; };
|
|
3549
3549
|
|
|
@@ -3553,7 +3553,7 @@ return function /*c*/() { const v = function () { return this; }; };
|
|
|
3553
3553
|
|
|
3554
3554
|
function __f0() {
|
|
3555
3555
|
return (function() {
|
|
3556
|
-
with({ o: __o }) {
|
|
3556
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3557
3557
|
|
|
3558
3558
|
return function () { console.log(o.c()); };
|
|
3559
3559
|
|
|
@@ -3574,7 +3574,7 @@ var __o = {c: __f1};
|
|
|
3574
3574
|
|
|
3575
3575
|
function __f1() {
|
|
3576
3576
|
return (function() {
|
|
3577
|
-
with({
|
|
3577
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3578
3578
|
|
|
3579
3579
|
return function /*c*/() { return this; };
|
|
3580
3580
|
|
|
@@ -3584,7 +3584,7 @@ return function /*c*/() { return this; };
|
|
|
3584
3584
|
|
|
3585
3585
|
function __f0() {
|
|
3586
3586
|
return (function() {
|
|
3587
|
-
with({ o: __o }) {
|
|
3587
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3588
3588
|
|
|
3589
3589
|
return function () { console.log(o.c); };
|
|
3590
3590
|
|
|
@@ -3605,7 +3605,7 @@ var __o = {c: __f1};
|
|
|
3605
3605
|
|
|
3606
3606
|
function __f1() {
|
|
3607
3607
|
return (function() {
|
|
3608
|
-
with({
|
|
3608
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3609
3609
|
|
|
3610
3610
|
return function /*c*/() { return this; };
|
|
3611
3611
|
|
|
@@ -3615,7 +3615,7 @@ return function /*c*/() { return this; };
|
|
|
3615
3615
|
|
|
3616
3616
|
function __f0() {
|
|
3617
3617
|
return (function() {
|
|
3618
|
-
with({ o: __o }) {
|
|
3618
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3619
3619
|
|
|
3620
3620
|
return function () { console.log(o["c"]); };
|
|
3621
3621
|
|
|
@@ -3636,7 +3636,7 @@ var __o = {c: __f1};
|
|
|
3636
3636
|
|
|
3637
3637
|
function __f1() {
|
|
3638
3638
|
return (function() {
|
|
3639
|
-
with({
|
|
3639
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3640
3640
|
|
|
3641
3641
|
return function /*c*/() { return 0; };
|
|
3642
3642
|
|
|
@@ -3646,7 +3646,7 @@ return function /*c*/() { return 0; };
|
|
|
3646
3646
|
|
|
3647
3647
|
function __f0() {
|
|
3648
3648
|
return (function() {
|
|
3649
|
-
with({ o: __o }) {
|
|
3649
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3650
3650
|
|
|
3651
3651
|
return function () { console.log(o.c()); };
|
|
3652
3652
|
|
|
@@ -3667,7 +3667,7 @@ var __o = {c: __f1};
|
|
|
3667
3667
|
|
|
3668
3668
|
function __f1() {
|
|
3669
3669
|
return (function() {
|
|
3670
|
-
with({
|
|
3670
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3671
3671
|
|
|
3672
3672
|
return function /*c*/() { return 0; };
|
|
3673
3673
|
|
|
@@ -3677,7 +3677,7 @@ return function /*c*/() { return 0; };
|
|
|
3677
3677
|
|
|
3678
3678
|
function __f0() {
|
|
3679
3679
|
return (function() {
|
|
3680
|
-
with({ o: __o }) {
|
|
3680
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3681
3681
|
|
|
3682
3682
|
return function () { console.log(o["c"]()); };
|
|
3683
3683
|
|
|
@@ -3700,7 +3700,7 @@ __o.b = __o_b;
|
|
|
3700
3700
|
|
|
3701
3701
|
function __f1() {
|
|
3702
3702
|
return (function() {
|
|
3703
|
-
with({
|
|
3703
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3704
3704
|
|
|
3705
3705
|
return function /*c*/() { return this; };
|
|
3706
3706
|
|
|
@@ -3710,7 +3710,7 @@ return function /*c*/() { return this; };
|
|
|
3710
3710
|
|
|
3711
3711
|
function __f0() {
|
|
3712
3712
|
return (function() {
|
|
3713
|
-
with({ o: __o }) {
|
|
3713
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3714
3714
|
|
|
3715
3715
|
return function () { console.log(o.b.c()); };
|
|
3716
3716
|
|
|
@@ -3733,7 +3733,7 @@ __o.b = __o_b;
|
|
|
3733
3733
|
|
|
3734
3734
|
function __f1() {
|
|
3735
3735
|
return (function() {
|
|
3736
|
-
with({
|
|
3736
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3737
3737
|
|
|
3738
3738
|
return function /*c*/() { return this; };
|
|
3739
3739
|
|
|
@@ -3743,7 +3743,7 @@ return function /*c*/() { return this; };
|
|
|
3743
3743
|
|
|
3744
3744
|
function __f0() {
|
|
3745
3745
|
return (function() {
|
|
3746
|
-
with({ o: __o }) {
|
|
3746
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3747
3747
|
|
|
3748
3748
|
return function () { console.log(o["b"]["c"]()); };
|
|
3749
3749
|
|
|
@@ -3766,7 +3766,7 @@ Object.defineProperty(__o, "b", { configurable: true, enumerable: true, get: __f
|
|
|
3766
3766
|
|
|
3767
3767
|
function __f1() {
|
|
3768
3768
|
return (function() {
|
|
3769
|
-
with({
|
|
3769
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3770
3770
|
|
|
3771
3771
|
return function /*b*/() { return this; };
|
|
3772
3772
|
|
|
@@ -3776,7 +3776,7 @@ return function /*b*/() { return this; };
|
|
|
3776
3776
|
|
|
3777
3777
|
function __f0() {
|
|
3778
3778
|
return (function() {
|
|
3779
|
-
with({ o: __o }) {
|
|
3779
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3780
3780
|
|
|
3781
3781
|
return function () { console.log(o.b); };
|
|
3782
3782
|
|
|
@@ -3799,7 +3799,7 @@ Object.defineProperty(__o, "b", { configurable: true, enumerable: true, get: __f
|
|
|
3799
3799
|
|
|
3800
3800
|
function __f1() {
|
|
3801
3801
|
return (function() {
|
|
3802
|
-
with({
|
|
3802
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3803
3803
|
|
|
3804
3804
|
return function /*b*/() { return this; };
|
|
3805
3805
|
|
|
@@ -3809,7 +3809,7 @@ return function /*b*/() { return this; };
|
|
|
3809
3809
|
|
|
3810
3810
|
function __f0() {
|
|
3811
3811
|
return (function() {
|
|
3812
|
-
with({ o: __o }) {
|
|
3812
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3813
3813
|
|
|
3814
3814
|
return function () { console.log(o["b"]); };
|
|
3815
3815
|
|
|
@@ -3831,7 +3831,7 @@ Object.defineProperty(__o, "b", { configurable: true, enumerable: true, get: __f
|
|
|
3831
3831
|
|
|
3832
3832
|
function __f1() {
|
|
3833
3833
|
return (function() {
|
|
3834
|
-
with({
|
|
3834
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3835
3835
|
|
|
3836
3836
|
return function /*b*/() { return 0; };
|
|
3837
3837
|
|
|
@@ -3841,7 +3841,7 @@ return function /*b*/() { return 0; };
|
|
|
3841
3841
|
|
|
3842
3842
|
function __f0() {
|
|
3843
3843
|
return (function() {
|
|
3844
|
-
with({ o: __o }) {
|
|
3844
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3845
3845
|
|
|
3846
3846
|
return function () { console.log(o.b); };
|
|
3847
3847
|
|
|
@@ -3863,7 +3863,7 @@ Object.defineProperty(__o, "b", { configurable: true, enumerable: true, get: __f
|
|
|
3863
3863
|
|
|
3864
3864
|
function __f1() {
|
|
3865
3865
|
return (function() {
|
|
3866
|
-
with({
|
|
3866
|
+
with({ this: undefined, arguments: undefined }) {
|
|
3867
3867
|
|
|
3868
3868
|
return function /*b*/() { return 0; };
|
|
3869
3869
|
|
|
@@ -3873,7 +3873,7 @@ return function /*b*/() { return 0; };
|
|
|
3873
3873
|
|
|
3874
3874
|
function __f0() {
|
|
3875
3875
|
return (function() {
|
|
3876
|
-
with({ o: __o }) {
|
|
3876
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
3877
3877
|
|
|
3878
3878
|
return function () { console.log(o["b"]); };
|
|
3879
3879
|
|
|
@@ -3901,7 +3901,7 @@ var __o = {a: 1, c: 2};
|
|
|
3901
3901
|
|
|
3902
3902
|
function __f2() {
|
|
3903
3903
|
return (function() {
|
|
3904
|
-
with({ o: __o, f2: __f2 }) {
|
|
3904
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
3905
3905
|
|
|
3906
3906
|
return function /*f2*/() {
|
|
3907
3907
|
console.log(o.c);
|
|
@@ -3913,7 +3913,7 @@ return function /*f2*/() {
|
|
|
3913
3913
|
|
|
3914
3914
|
function __f1() {
|
|
3915
3915
|
return (function() {
|
|
3916
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
3916
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
3917
3917
|
|
|
3918
3918
|
return function /*f1*/() {
|
|
3919
3919
|
console.log(o.a);
|
|
@@ -3944,7 +3944,7 @@ var __o = {a: 1, c: 2};
|
|
|
3944
3944
|
|
|
3945
3945
|
function __f2() {
|
|
3946
3946
|
return (function() {
|
|
3947
|
-
with({ o: __o, f2: __f2 }) {
|
|
3947
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
3948
3948
|
|
|
3949
3949
|
return function /*f2*/() {
|
|
3950
3950
|
console.log(o["c"]);
|
|
@@ -3956,7 +3956,7 @@ return function /*f2*/() {
|
|
|
3956
3956
|
|
|
3957
3957
|
function __f1() {
|
|
3958
3958
|
return (function() {
|
|
3959
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
3959
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
3960
3960
|
|
|
3961
3961
|
return function /*f1*/() {
|
|
3962
3962
|
console.log(o["a"]);
|
|
@@ -3984,7 +3984,7 @@ var __o = {};
|
|
|
3984
3984
|
|
|
3985
3985
|
function __f1() {
|
|
3986
3986
|
return (function() {
|
|
3987
|
-
with({ o: __o, f1: __f1 }) {
|
|
3987
|
+
with({ o: __o, f1: __f1, this: undefined, arguments: undefined }) {
|
|
3988
3988
|
|
|
3989
3989
|
return function /*f1*/() {
|
|
3990
3990
|
// @ts-ignore
|
|
@@ -4012,7 +4012,7 @@ var __o = {};
|
|
|
4012
4012
|
|
|
4013
4013
|
function __f1() {
|
|
4014
4014
|
return (function() {
|
|
4015
|
-
with({ o: __o, f1: __f1 }) {
|
|
4015
|
+
with({ o: __o, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4016
4016
|
|
|
4017
4017
|
return function /*f1*/() {
|
|
4018
4018
|
// @ts-ignore
|
|
@@ -4043,7 +4043,7 @@ var __o = {a: 1, b: 1, c: 2};
|
|
|
4043
4043
|
|
|
4044
4044
|
function __f2() {
|
|
4045
4045
|
return (function() {
|
|
4046
|
-
with({ o: __o, f2: __f2 }) {
|
|
4046
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
4047
4047
|
|
|
4048
4048
|
return function /*f2*/() {
|
|
4049
4049
|
console.log(o);
|
|
@@ -4055,7 +4055,7 @@ return function /*f2*/() {
|
|
|
4055
4055
|
|
|
4056
4056
|
function __f1() {
|
|
4057
4057
|
return (function() {
|
|
4058
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
4058
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4059
4059
|
|
|
4060
4060
|
return function /*f1*/() {
|
|
4061
4061
|
console.log(o.a);
|
|
@@ -4086,7 +4086,7 @@ var __o = {a: 1, b: 1, c: 2};
|
|
|
4086
4086
|
|
|
4087
4087
|
function __f2() {
|
|
4088
4088
|
return (function() {
|
|
4089
|
-
with({ o: __o, f2: __f2 }) {
|
|
4089
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
4090
4090
|
|
|
4091
4091
|
return function /*f2*/() {
|
|
4092
4092
|
console.log(o);
|
|
@@ -4098,7 +4098,7 @@ return function /*f2*/() {
|
|
|
4098
4098
|
|
|
4099
4099
|
function __f1() {
|
|
4100
4100
|
return (function() {
|
|
4101
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
4101
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4102
4102
|
|
|
4103
4103
|
return function /*f1*/() {
|
|
4104
4104
|
console.log(o["a"]);
|
|
@@ -4129,7 +4129,7 @@ var __o = {a: 1, b: 1, c: 2};
|
|
|
4129
4129
|
|
|
4130
4130
|
function __f2() {
|
|
4131
4131
|
return (function() {
|
|
4132
|
-
with({ o: __o, f2: __f2 }) {
|
|
4132
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
4133
4133
|
|
|
4134
4134
|
return function /*f2*/() {
|
|
4135
4135
|
console.log(o.a);
|
|
@@ -4141,7 +4141,7 @@ return function /*f2*/() {
|
|
|
4141
4141
|
|
|
4142
4142
|
function __f1() {
|
|
4143
4143
|
return (function() {
|
|
4144
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
4144
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4145
4145
|
|
|
4146
4146
|
return function /*f1*/() {
|
|
4147
4147
|
console.log(o);
|
|
@@ -4172,7 +4172,7 @@ var __o = {a: 1, b: 1, c: 2};
|
|
|
4172
4172
|
|
|
4173
4173
|
function __f2() {
|
|
4174
4174
|
return (function() {
|
|
4175
|
-
with({ o: __o, f2: __f2 }) {
|
|
4175
|
+
with({ o: __o, f2: __f2, this: undefined, arguments: undefined }) {
|
|
4176
4176
|
|
|
4177
4177
|
return function /*f2*/() {
|
|
4178
4178
|
console.log(o["a"]);
|
|
@@ -4184,7 +4184,7 @@ return function /*f2*/() {
|
|
|
4184
4184
|
|
|
4185
4185
|
function __f1() {
|
|
4186
4186
|
return (function() {
|
|
4187
|
-
with({ o: __o, f2: __f2, f1: __f1 }) {
|
|
4187
|
+
with({ o: __o, f2: __f2, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4188
4188
|
|
|
4189
4189
|
return function /*f1*/() {
|
|
4190
4190
|
console.log(o);
|
|
@@ -4221,7 +4221,7 @@ __o.b = 2;
|
|
|
4221
4221
|
|
|
4222
4222
|
function __f1() {
|
|
4223
4223
|
return (function() {
|
|
4224
|
-
with({
|
|
4224
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4225
4225
|
|
|
4226
4226
|
return function /*constructor*/() {
|
|
4227
4227
|
this.a = 1;
|
|
@@ -4234,7 +4234,7 @@ return function /*constructor*/() {
|
|
|
4234
4234
|
|
|
4235
4235
|
function __f2() {
|
|
4236
4236
|
return (function() {
|
|
4237
|
-
with({
|
|
4237
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4238
4238
|
|
|
4239
4239
|
return function /*m*/() { console.log(this); };
|
|
4240
4240
|
|
|
@@ -4244,7 +4244,7 @@ return function /*m*/() { console.log(this); };
|
|
|
4244
4244
|
|
|
4245
4245
|
function __f0() {
|
|
4246
4246
|
return (function() {
|
|
4247
|
-
with({ o: __o }) {
|
|
4247
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4248
4248
|
|
|
4249
4249
|
return function () { o.m(); };
|
|
4250
4250
|
|
|
@@ -4278,7 +4278,7 @@ __o.b = 2;
|
|
|
4278
4278
|
|
|
4279
4279
|
function __f1() {
|
|
4280
4280
|
return (function() {
|
|
4281
|
-
with({
|
|
4281
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4282
4282
|
|
|
4283
4283
|
return function /*constructor*/() {
|
|
4284
4284
|
this.a = 1;
|
|
@@ -4291,7 +4291,7 @@ return function /*constructor*/() {
|
|
|
4291
4291
|
|
|
4292
4292
|
function __f2() {
|
|
4293
4293
|
return (function() {
|
|
4294
|
-
with({
|
|
4294
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4295
4295
|
|
|
4296
4296
|
return function /*m*/() { console.log(this); };
|
|
4297
4297
|
|
|
@@ -4301,7 +4301,7 @@ return function /*m*/() { console.log(this); };
|
|
|
4301
4301
|
|
|
4302
4302
|
function __f0() {
|
|
4303
4303
|
return (function() {
|
|
4304
|
-
with({ o: __o }) {
|
|
4304
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4305
4305
|
|
|
4306
4306
|
return function () { o["m"](); };
|
|
4307
4307
|
|
|
@@ -4330,7 +4330,7 @@ Object.defineProperty(__o, "m", { configurable: true, writable: true, value: __f
|
|
|
4330
4330
|
|
|
4331
4331
|
function __f1() {
|
|
4332
4332
|
return (function() {
|
|
4333
|
-
with({
|
|
4333
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4334
4334
|
|
|
4335
4335
|
return function /*m*/() { };
|
|
4336
4336
|
|
|
@@ -4340,7 +4340,7 @@ return function /*m*/() { };
|
|
|
4340
4340
|
|
|
4341
4341
|
function __f0() {
|
|
4342
4342
|
return (function() {
|
|
4343
|
-
with({ o: __o }) {
|
|
4343
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4344
4344
|
|
|
4345
4345
|
return function () { o.m(); };
|
|
4346
4346
|
|
|
@@ -4369,7 +4369,7 @@ Object.defineProperty(__o, "m", { configurable: true, writable: true, value: __f
|
|
|
4369
4369
|
|
|
4370
4370
|
function __f1() {
|
|
4371
4371
|
return (function() {
|
|
4372
|
-
with({
|
|
4372
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4373
4373
|
|
|
4374
4374
|
return function /*m*/() { };
|
|
4375
4375
|
|
|
@@ -4379,7 +4379,7 @@ return function /*m*/() { };
|
|
|
4379
4379
|
|
|
4380
4380
|
function __f0() {
|
|
4381
4381
|
return (function() {
|
|
4382
|
-
with({ o: __o }) {
|
|
4382
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4383
4383
|
|
|
4384
4384
|
return function () { o["m"](); };
|
|
4385
4385
|
|
|
@@ -4424,7 +4424,7 @@ __o.b = 2;
|
|
|
4424
4424
|
|
|
4425
4425
|
function __f1() {
|
|
4426
4426
|
return (function() {
|
|
4427
|
-
with({
|
|
4427
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4428
4428
|
|
|
4429
4429
|
return function /*constructor*/() {
|
|
4430
4430
|
this.a = 1;
|
|
@@ -4436,7 +4436,7 @@ return function /*constructor*/() {
|
|
|
4436
4436
|
|
|
4437
4437
|
function __f2() {
|
|
4438
4438
|
return (function() {
|
|
4439
|
-
with({
|
|
4439
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4440
4440
|
|
|
4441
4441
|
return function /*m*/() { this.n(); };
|
|
4442
4442
|
|
|
@@ -4446,7 +4446,7 @@ return function /*m*/() { this.n(); };
|
|
|
4446
4446
|
|
|
4447
4447
|
function __f3() {
|
|
4448
4448
|
return (function() {
|
|
4449
|
-
with({ __super: __f1 }) {
|
|
4449
|
+
with({ __super: __f1, this: undefined, arguments: undefined }) {
|
|
4450
4450
|
|
|
4451
4451
|
return function /*constructor*/() {
|
|
4452
4452
|
__super.call(this);
|
|
@@ -4459,7 +4459,7 @@ return function /*constructor*/() {
|
|
|
4459
4459
|
|
|
4460
4460
|
function __f4() {
|
|
4461
4461
|
return (function() {
|
|
4462
|
-
with({ __super: __f1 }) {
|
|
4462
|
+
with({ __super: __f1, this: undefined, arguments: undefined }) {
|
|
4463
4463
|
|
|
4464
4464
|
return function /*n*/() { };
|
|
4465
4465
|
|
|
@@ -4469,7 +4469,7 @@ return function /*n*/() { };
|
|
|
4469
4469
|
|
|
4470
4470
|
function __f0() {
|
|
4471
4471
|
return (function() {
|
|
4472
|
-
with({ o: __o }) {
|
|
4472
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4473
4473
|
|
|
4474
4474
|
return function () { o.m(); };
|
|
4475
4475
|
|
|
@@ -4514,7 +4514,7 @@ __o.b = 2;
|
|
|
4514
4514
|
|
|
4515
4515
|
function __f1() {
|
|
4516
4516
|
return (function() {
|
|
4517
|
-
with({
|
|
4517
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4518
4518
|
|
|
4519
4519
|
return function /*constructor*/() {
|
|
4520
4520
|
this.a = 1;
|
|
@@ -4526,7 +4526,7 @@ return function /*constructor*/() {
|
|
|
4526
4526
|
|
|
4527
4527
|
function __f2() {
|
|
4528
4528
|
return (function() {
|
|
4529
|
-
with({
|
|
4529
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4530
4530
|
|
|
4531
4531
|
return function /*m*/() { this.n(); };
|
|
4532
4532
|
|
|
@@ -4536,7 +4536,7 @@ return function /*m*/() { this.n(); };
|
|
|
4536
4536
|
|
|
4537
4537
|
function __f3() {
|
|
4538
4538
|
return (function() {
|
|
4539
|
-
with({ __super: __f1 }) {
|
|
4539
|
+
with({ __super: __f1, this: undefined, arguments: undefined }) {
|
|
4540
4540
|
|
|
4541
4541
|
return function /*constructor*/() {
|
|
4542
4542
|
__super.call(this);
|
|
@@ -4549,7 +4549,7 @@ return function /*constructor*/() {
|
|
|
4549
4549
|
|
|
4550
4550
|
function __f4() {
|
|
4551
4551
|
return (function() {
|
|
4552
|
-
with({ __super: __f1 }) {
|
|
4552
|
+
with({ __super: __f1, this: undefined, arguments: undefined }) {
|
|
4553
4553
|
|
|
4554
4554
|
return function /*n*/() { };
|
|
4555
4555
|
|
|
@@ -4559,7 +4559,7 @@ return function /*n*/() { };
|
|
|
4559
4559
|
|
|
4560
4560
|
function __f0() {
|
|
4561
4561
|
return (function() {
|
|
4562
|
-
with({ o: __o }) {
|
|
4562
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4563
4563
|
|
|
4564
4564
|
return function () { o["m"](); };
|
|
4565
4565
|
|
|
@@ -4591,7 +4591,7 @@ var __table1 = {insert: __f1, primaryKey: 1};
|
|
|
4591
4591
|
|
|
4592
4592
|
function __f0(__0, __1, __2, __3) {
|
|
4593
4593
|
return (function() {
|
|
4594
|
-
with({
|
|
4594
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4595
4595
|
|
|
4596
4596
|
return function (thisArg, _arguments, P, generator) {
|
|
4597
4597
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -4609,7 +4609,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
4609
4609
|
|
|
4610
4610
|
function __f1() {
|
|
4611
4611
|
return (function() {
|
|
4612
|
-
with({
|
|
4612
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4613
4613
|
|
|
4614
4614
|
return () => { };
|
|
4615
4615
|
|
|
@@ -4619,7 +4619,7 @@ return () => { };
|
|
|
4619
4619
|
|
|
4620
4620
|
function __testScanReturnsAllValues() {
|
|
4621
4621
|
return (function() {
|
|
4622
|
-
with({ __awaiter: __f0, table1: __table1, testScanReturnsAllValues: __testScanReturnsAllValues }) {
|
|
4622
|
+
with({ __awaiter: __f0, table1: __table1, testScanReturnsAllValues: __testScanReturnsAllValues, this: undefined, arguments: undefined }) {
|
|
4623
4623
|
|
|
4624
4624
|
return function /*testScanReturnsAllValues*/() {
|
|
4625
4625
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4653,7 +4653,7 @@ var __o = {a: 1, b: undefined, c: 2};
|
|
|
4653
4653
|
|
|
4654
4654
|
function __f1() {
|
|
4655
4655
|
return (function() {
|
|
4656
|
-
with({ o: __o, f1: __f1 }) {
|
|
4656
|
+
with({ o: __o, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4657
4657
|
|
|
4658
4658
|
return function /*f1*/() {
|
|
4659
4659
|
console.log(o);
|
|
@@ -4680,7 +4680,7 @@ var __o = {a: 1, b: __f0};
|
|
|
4680
4680
|
|
|
4681
4681
|
function __f0() {
|
|
4682
4682
|
return (function() {
|
|
4683
|
-
with({ message: "Function 'b' cannot be called at runtime. It can only be used at deployment time.\\n\\nFunction code:\\n () => console.log(\\"the actual function\\")\\n" }) {
|
|
4683
|
+
with({ message: "Function 'b' cannot be called at runtime. It can only be used at deployment time.\\n\\nFunction code:\\n () => console.log(\\"the actual function\\")\\n", this: undefined, arguments: undefined }) {
|
|
4684
4684
|
|
|
4685
4685
|
return () => {
|
|
4686
4686
|
throw new Error(message);
|
|
@@ -4692,7 +4692,7 @@ return () => {
|
|
|
4692
4692
|
|
|
4693
4693
|
function __f1() {
|
|
4694
4694
|
return (function() {
|
|
4695
|
-
with({ o: __o, f1: __f1 }) {
|
|
4695
|
+
with({ o: __o, f1: __f1, this: undefined, arguments: undefined }) {
|
|
4696
4696
|
|
|
4697
4697
|
return function /*f1*/() {
|
|
4698
4698
|
console.log(o);
|
|
@@ -4717,7 +4717,7 @@ return function /*f1*/() {
|
|
|
4717
4717
|
|
|
4718
4718
|
function __f0() {
|
|
4719
4719
|
return (function() {
|
|
4720
|
-
with({
|
|
4720
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4721
4721
|
|
|
4722
4722
|
return () => console.log(1);
|
|
4723
4723
|
|
|
@@ -4727,7 +4727,7 @@ return () => console.log(1);
|
|
|
4727
4727
|
|
|
4728
4728
|
function __f3() {
|
|
4729
4729
|
return (function() {
|
|
4730
|
-
with({ lambda1: __f0, lambda2: __f0, f3: __f3 }) {
|
|
4730
|
+
with({ lambda1: __f0, lambda2: __f0, f3: __f3, this: undefined, arguments: undefined }) {
|
|
4731
4731
|
|
|
4732
4732
|
return function /*f3*/() {
|
|
4733
4733
|
return (lambda1(), lambda2());
|
|
@@ -4786,7 +4786,7 @@ return function /*f3*/() {
|
|
|
4786
4786
|
|
|
4787
4787
|
function __f0(__0, __1, __2, __3) {
|
|
4788
4788
|
return (function() {
|
|
4789
|
-
with({
|
|
4789
|
+
with({ this: undefined, arguments: undefined }) {
|
|
4790
4790
|
|
|
4791
4791
|
return function (thisArg, _arguments, P, generator) {
|
|
4792
4792
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -4813,7 +4813,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
4813
4813
|
|
|
4814
4814
|
function __f3() {
|
|
4815
4815
|
return (function() {
|
|
4816
|
-
with({ awaiter1: __f0, awaiter2: __f0, f3: __f3 }) {
|
|
4816
|
+
with({ awaiter1: __f0, awaiter2: __f0, f3: __f3, this: undefined, arguments: undefined }) {
|
|
4817
4817
|
|
|
4818
4818
|
return function /*f3*/() {
|
|
4819
4819
|
const v1 = awaiter1, v2 = awaiter2;
|
|
@@ -4835,7 +4835,7 @@ var __exports = {exportedValue: 42};
|
|
|
4835
4835
|
|
|
4836
4836
|
function __f0() {
|
|
4837
4837
|
return (function() {
|
|
4838
|
-
with({ exports: __exports }) {
|
|
4838
|
+
with({ exports: __exports, this: undefined, arguments: undefined }) {
|
|
4839
4839
|
|
|
4840
4840
|
return function () { console.log(exports.exportedValue); };
|
|
4841
4841
|
|
|
@@ -4855,7 +4855,7 @@ var __exports = {exportedValue: 42};
|
|
|
4855
4855
|
|
|
4856
4856
|
function __f0() {
|
|
4857
4857
|
return (function() {
|
|
4858
|
-
with({ exports: __exports }) {
|
|
4858
|
+
with({ exports: __exports, this: undefined, arguments: undefined }) {
|
|
4859
4859
|
|
|
4860
4860
|
return function () { console.log(exports.exportedValue); };
|
|
4861
4861
|
|
|
@@ -4877,7 +4877,7 @@ __module.exports = __module_exports;
|
|
|
4877
4877
|
|
|
4878
4878
|
function __f0() {
|
|
4879
4879
|
return (function() {
|
|
4880
|
-
with({ module: __module }) {
|
|
4880
|
+
with({ module: __module, this: undefined, arguments: undefined }) {
|
|
4881
4881
|
|
|
4882
4882
|
return function () { console.log(module.exports.exportedValue); };
|
|
4883
4883
|
|
|
@@ -4900,7 +4900,7 @@ return function () { console.log(module.exports.exportedValue); };
|
|
|
4900
4900
|
|
|
4901
4901
|
function __foo() {
|
|
4902
4902
|
return (function() {
|
|
4903
|
-
with({ foo: __foo }) {
|
|
4903
|
+
with({ foo: __foo, this: undefined, arguments: undefined }) {
|
|
4904
4904
|
|
|
4905
4905
|
return function /*foo*/() {
|
|
4906
4906
|
require("./util");
|
|
@@ -4912,7 +4912,7 @@ return function /*foo*/() {
|
|
|
4912
4912
|
|
|
4913
4913
|
function __f0() {
|
|
4914
4914
|
return (function() {
|
|
4915
|
-
with({ foo: __foo }) {
|
|
4915
|
+
with({ foo: __foo, this: undefined, arguments: undefined }) {
|
|
4916
4916
|
|
|
4917
4917
|
return function () { require("typescript"); foo(); if (true) {
|
|
4918
4918
|
require("os");
|
|
@@ -4937,7 +4937,7 @@ __o.b = __o_b;
|
|
|
4937
4937
|
|
|
4938
4938
|
function __f0() {
|
|
4939
4939
|
return (function() {
|
|
4940
|
-
with({ o: __o }) {
|
|
4940
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4941
4941
|
|
|
4942
4942
|
return function () { console.log(o.b.c); };
|
|
4943
4943
|
|
|
@@ -4960,7 +4960,7 @@ __o.b = __o_b;
|
|
|
4960
4960
|
|
|
4961
4961
|
function __f0() {
|
|
4962
4962
|
return (function() {
|
|
4963
|
-
with({ o: __o }) {
|
|
4963
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4964
4964
|
|
|
4965
4965
|
return function () { console.log(o.b); console.log(o.b.c); };
|
|
4966
4966
|
|
|
@@ -4983,7 +4983,7 @@ __o.b = __o_b;
|
|
|
4983
4983
|
|
|
4984
4984
|
function __f0() {
|
|
4985
4985
|
return (function() {
|
|
4986
|
-
with({ o: __o }) {
|
|
4986
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
4987
4987
|
|
|
4988
4988
|
return function () { console.log(o.b); };
|
|
4989
4989
|
|
|
@@ -5004,7 +5004,7 @@ var __o = {a: 1};
|
|
|
5004
5004
|
|
|
5005
5005
|
function __f0() {
|
|
5006
5006
|
return (function() {
|
|
5007
|
-
with({ o: __o }) {
|
|
5007
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5008
5008
|
|
|
5009
5009
|
return function () { console.log(o.a); };
|
|
5010
5010
|
|
|
@@ -5029,7 +5029,7 @@ __o.b = __o_b;
|
|
|
5029
5029
|
|
|
5030
5030
|
function __f0() {
|
|
5031
5031
|
return (function() {
|
|
5032
|
-
with({ o: __o }) {
|
|
5032
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5033
5033
|
|
|
5034
5034
|
return function () { console.log(o.b.c.d); };
|
|
5035
5035
|
|
|
@@ -5054,7 +5054,7 @@ __o.b = __o_b;
|
|
|
5054
5054
|
|
|
5055
5055
|
function __f0() {
|
|
5056
5056
|
return (function() {
|
|
5057
|
-
with({ o: __o }) {
|
|
5057
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5058
5058
|
|
|
5059
5059
|
return function () { console.log(o.b.c.d); console.log(o.b); };
|
|
5060
5060
|
|
|
@@ -5079,7 +5079,7 @@ __o.b = __o_b;
|
|
|
5079
5079
|
|
|
5080
5080
|
function __f0() {
|
|
5081
5081
|
return (function() {
|
|
5082
|
-
with({ o: __o }) {
|
|
5082
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5083
5083
|
|
|
5084
5084
|
return function () { console.log(o.b.c.d); console.log(o.b.c); };
|
|
5085
5085
|
|
|
@@ -5104,7 +5104,7 @@ __o.b = __o_b;
|
|
|
5104
5104
|
|
|
5105
5105
|
function __f0() {
|
|
5106
5106
|
return (function() {
|
|
5107
|
-
with({ o: __o }) {
|
|
5107
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5108
5108
|
|
|
5109
5109
|
return function () { console.log(o.b.c.d); console.log(o.b.c); console.log(o.b); };
|
|
5110
5110
|
|
|
@@ -5125,7 +5125,7 @@ var __o = {b: __f1};
|
|
|
5125
5125
|
|
|
5126
5126
|
function __f1() {
|
|
5127
5127
|
return (function() {
|
|
5128
|
-
with({
|
|
5128
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5129
5129
|
|
|
5130
5130
|
return function () { };
|
|
5131
5131
|
|
|
@@ -5135,7 +5135,7 @@ return function () { };
|
|
|
5135
5135
|
|
|
5136
5136
|
function __f0() {
|
|
5137
5137
|
return (function() {
|
|
5138
|
-
with({ o: __o }) {
|
|
5138
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5139
5139
|
|
|
5140
5140
|
return function () { console.log(o.b.name); };
|
|
5141
5141
|
|
|
@@ -5156,7 +5156,7 @@ var __o = {b: __f1};
|
|
|
5156
5156
|
|
|
5157
5157
|
function __f1() {
|
|
5158
5158
|
return (function() {
|
|
5159
|
-
with({
|
|
5159
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5160
5160
|
|
|
5161
5161
|
return function () { };
|
|
5162
5162
|
|
|
@@ -5166,7 +5166,7 @@ return function () { };
|
|
|
5166
5166
|
|
|
5167
5167
|
function __f0() {
|
|
5168
5168
|
return (function() {
|
|
5169
|
-
with({ o: __o }) {
|
|
5169
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5170
5170
|
|
|
5171
5171
|
return function () { console.log(o.b.name); console.log(o.b()); };
|
|
5172
5172
|
|
|
@@ -5187,7 +5187,7 @@ var __o = {b: __f1};
|
|
|
5187
5187
|
|
|
5188
5188
|
function __f1() {
|
|
5189
5189
|
return (function() {
|
|
5190
|
-
with({
|
|
5190
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5191
5191
|
|
|
5192
5192
|
return function () { };
|
|
5193
5193
|
|
|
@@ -5197,7 +5197,7 @@ return function () { };
|
|
|
5197
5197
|
|
|
5198
5198
|
function __f0() {
|
|
5199
5199
|
return (function() {
|
|
5200
|
-
with({ o: __o }) {
|
|
5200
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5201
5201
|
|
|
5202
5202
|
return function () { console.log(o.b()); console.log(o.b.name); };
|
|
5203
5203
|
|
|
@@ -5218,7 +5218,7 @@ var __o = {a: 1, b: __f1};
|
|
|
5218
5218
|
|
|
5219
5219
|
function __f1() {
|
|
5220
5220
|
return (function() {
|
|
5221
|
-
with({
|
|
5221
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5222
5222
|
|
|
5223
5223
|
return function () { return this; };
|
|
5224
5224
|
|
|
@@ -5228,7 +5228,7 @@ return function () { return this; };
|
|
|
5228
5228
|
|
|
5229
5229
|
function __f0() {
|
|
5230
5230
|
return (function() {
|
|
5231
|
-
with({ o: __o }) {
|
|
5231
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5232
5232
|
|
|
5233
5233
|
return function () { console.log(o.b.name); console.log(o.b()); };
|
|
5234
5234
|
|
|
@@ -5249,7 +5249,7 @@ var __o = {a: 1, b: __f1};
|
|
|
5249
5249
|
|
|
5250
5250
|
function __f1() {
|
|
5251
5251
|
return (function() {
|
|
5252
|
-
with({
|
|
5252
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5253
5253
|
|
|
5254
5254
|
return function () { return this; };
|
|
5255
5255
|
|
|
@@ -5259,7 +5259,7 @@ return function () { return this; };
|
|
|
5259
5259
|
|
|
5260
5260
|
function __f0() {
|
|
5261
5261
|
return (function() {
|
|
5262
|
-
with({ o: __o }) {
|
|
5262
|
+
with({ o: __o, this: undefined, arguments: undefined }) {
|
|
5263
5263
|
|
|
5264
5264
|
return function () { console.log(o.b()); console.log(o.b.name); };
|
|
5265
5265
|
|
|
@@ -5283,7 +5283,7 @@ __o2.b = __o2_b;
|
|
|
5283
5283
|
|
|
5284
5284
|
function __f0() {
|
|
5285
5285
|
return (function() {
|
|
5286
|
-
with({ o2: __o2, o1: __o2_b }) {
|
|
5286
|
+
with({ o2: __o2, o1: __o2_b, this: undefined, arguments: undefined }) {
|
|
5287
5287
|
|
|
5288
5288
|
return function () { console.log(o2.b.d); console.log(o1); };
|
|
5289
5289
|
|
|
@@ -5307,7 +5307,7 @@ __o2.b = __o1;
|
|
|
5307
5307
|
|
|
5308
5308
|
function __f0() {
|
|
5309
5309
|
return (function() {
|
|
5310
|
-
with({ o1: __o1, o2: __o2 }) {
|
|
5310
|
+
with({ o1: __o1, o2: __o2, this: undefined, arguments: undefined }) {
|
|
5311
5311
|
|
|
5312
5312
|
return function () { console.log(o1); console.log(o2.b.d); };
|
|
5313
5313
|
|
|
@@ -5334,7 +5334,7 @@ __o3.b = __o2_b;
|
|
|
5334
5334
|
|
|
5335
5335
|
function __f0() {
|
|
5336
5336
|
return (function() {
|
|
5337
|
-
with({ o2: __o2, o3: __o3 }) {
|
|
5337
|
+
with({ o2: __o2, o3: __o3, this: undefined, arguments: undefined }) {
|
|
5338
5338
|
|
|
5339
5339
|
return function () { console.log(o2.b.c); console.log(o3.b.d); };
|
|
5340
5340
|
|
|
@@ -5361,7 +5361,7 @@ __o3.b = __o2_b;
|
|
|
5361
5361
|
|
|
5362
5362
|
function __f0() {
|
|
5363
5363
|
return (function() {
|
|
5364
|
-
with({ o2: __o2, o3: __o3 }) {
|
|
5364
|
+
with({ o2: __o2, o3: __o3, this: undefined, arguments: undefined }) {
|
|
5365
5365
|
|
|
5366
5366
|
return function () { console.log(o2.b.d); console.log(o3.b.d); };
|
|
5367
5367
|
|
|
@@ -5388,7 +5388,7 @@ __o3.b = __o2_b;
|
|
|
5388
5388
|
|
|
5389
5389
|
function __f0() {
|
|
5390
5390
|
return (function() {
|
|
5391
|
-
with({ o2: __o2, o3: __o3 }) {
|
|
5391
|
+
with({ o2: __o2, o3: __o3, this: undefined, arguments: undefined }) {
|
|
5392
5392
|
|
|
5393
5393
|
return function () { console.log(o2.b); console.log(o2.b.d); console.log(o3.b.d); };
|
|
5394
5394
|
|
|
@@ -5415,7 +5415,7 @@ __o3.b = __o2_b;
|
|
|
5415
5415
|
|
|
5416
5416
|
function __f0() {
|
|
5417
5417
|
return (function() {
|
|
5418
|
-
with({ o2: __o2, o3: __o3 }) {
|
|
5418
|
+
with({ o2: __o2, o3: __o3, this: undefined, arguments: undefined }) {
|
|
5419
5419
|
|
|
5420
5420
|
return function () { console.log(o2.b.d); console.log(o3.b.d); console.log(o2.b); };
|
|
5421
5421
|
|
|
@@ -5442,7 +5442,7 @@ __o3.b = __o2_b;
|
|
|
5442
5442
|
|
|
5443
5443
|
function __f0() {
|
|
5444
5444
|
return (function() {
|
|
5445
|
-
with({ o2: __o2, o3: __o3, o1: __o2_b }) {
|
|
5445
|
+
with({ o2: __o2, o3: __o3, o1: __o2_b, this: undefined, arguments: undefined }) {
|
|
5446
5446
|
|
|
5447
5447
|
return function () { console.log(o2.b.d); console.log(o3.b.d); console.log(o1); };
|
|
5448
5448
|
|
|
@@ -5469,7 +5469,7 @@ __o3.b = __o1;
|
|
|
5469
5469
|
|
|
5470
5470
|
function __f0() {
|
|
5471
5471
|
return (function() {
|
|
5472
|
-
with({ o1: __o1, o2: __o2, o3: __o3 }) {
|
|
5472
|
+
with({ o1: __o1, o2: __o2, o3: __o3, this: undefined, arguments: undefined }) {
|
|
5473
5473
|
|
|
5474
5474
|
return function () { console.log(o1); console.log(o2.b.d); console.log(o3.b.d); };
|
|
5475
5475
|
|
|
@@ -5494,7 +5494,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5494
5494
|
|
|
5495
5495
|
function __getX() {
|
|
5496
5496
|
return (function() {
|
|
5497
|
-
with({ defaultsForThing: __defaultsForThing, getX: __getX }) {
|
|
5497
|
+
with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5498
5498
|
|
|
5499
5499
|
return function /*getX*/() { return defaultsForThing.config.x; };
|
|
5500
5500
|
|
|
@@ -5504,7 +5504,7 @@ return function /*getX*/() { return defaultsForThing.config.x; };
|
|
|
5504
5504
|
|
|
5505
5505
|
function __getAll() {
|
|
5506
5506
|
return (function() {
|
|
5507
|
-
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5507
|
+
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5508
5508
|
|
|
5509
5509
|
return function /*getAll*/() { const x = getX(); return { x, y: defaultsForThing.config.y }; };
|
|
5510
5510
|
|
|
@@ -5514,7 +5514,7 @@ return function /*getAll*/() { const x = getX(); return { x, y: defaultsForThing
|
|
|
5514
5514
|
|
|
5515
5515
|
function __f0() {
|
|
5516
5516
|
return (function() {
|
|
5517
|
-
with({ getAll: __getAll }) {
|
|
5517
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5518
5518
|
|
|
5519
5519
|
return function () { console.log(getAll()); };
|
|
5520
5520
|
|
|
@@ -5538,7 +5538,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5538
5538
|
|
|
5539
5539
|
function __getAll() {
|
|
5540
5540
|
return (function() {
|
|
5541
|
-
with({ defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5541
|
+
with({ defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5542
5542
|
|
|
5543
5543
|
return function /*getAll*/() { return { y: defaultsForThing.config.y }; };
|
|
5544
5544
|
|
|
@@ -5548,7 +5548,7 @@ return function /*getAll*/() { return { y: defaultsForThing.config.y }; };
|
|
|
5548
5548
|
|
|
5549
5549
|
function __f0() {
|
|
5550
5550
|
return (function() {
|
|
5551
|
-
with({ getAll: __getAll }) {
|
|
5551
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5552
5552
|
|
|
5553
5553
|
return function () { console.log(getAll()); };
|
|
5554
5554
|
|
|
@@ -5571,7 +5571,7 @@ var __config = {x: "x", y: "y"};
|
|
|
5571
5571
|
|
|
5572
5572
|
function __getX() {
|
|
5573
5573
|
return (function() {
|
|
5574
|
-
with({ config: __config, getX: __getX }) {
|
|
5574
|
+
with({ config: __config, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5575
5575
|
|
|
5576
5576
|
return function /*getX*/() { return config.x; };
|
|
5577
5577
|
|
|
@@ -5581,7 +5581,7 @@ return function /*getX*/() { return config.x; };
|
|
|
5581
5581
|
|
|
5582
5582
|
function __getAll() {
|
|
5583
5583
|
return (function() {
|
|
5584
|
-
with({ getX: __getX, config: __config, getAll: __getAll }) {
|
|
5584
|
+
with({ getX: __getX, config: __config, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5585
5585
|
|
|
5586
5586
|
return function /*getAll*/() { const x = getX(); return { x, y: config.y }; };
|
|
5587
5587
|
|
|
@@ -5591,7 +5591,7 @@ return function /*getAll*/() { const x = getX(); return { x, y: config.y }; };
|
|
|
5591
5591
|
|
|
5592
5592
|
function __f0() {
|
|
5593
5593
|
return (function() {
|
|
5594
|
-
with({ getAll: __getAll }) {
|
|
5594
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5595
5595
|
|
|
5596
5596
|
return function () { console.log(getAll()); };
|
|
5597
5597
|
|
|
@@ -5616,7 +5616,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5616
5616
|
|
|
5617
5617
|
function __getX() {
|
|
5618
5618
|
return (function() {
|
|
5619
|
-
with({ defaultsForThing: __defaultsForThing, getX: __getX }) {
|
|
5619
|
+
with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5620
5620
|
|
|
5621
5621
|
return function /*getX*/() { return defaultsForThing; };
|
|
5622
5622
|
|
|
@@ -5626,7 +5626,7 @@ return function /*getX*/() { return defaultsForThing; };
|
|
|
5626
5626
|
|
|
5627
5627
|
function __getAll() {
|
|
5628
5628
|
return (function() {
|
|
5629
|
-
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5629
|
+
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5630
5630
|
|
|
5631
5631
|
return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.config.y }; };
|
|
5632
5632
|
|
|
@@ -5636,7 +5636,7 @@ return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.co
|
|
|
5636
5636
|
|
|
5637
5637
|
function __f0() {
|
|
5638
5638
|
return (function() {
|
|
5639
|
-
with({ getAll: __getAll }) {
|
|
5639
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5640
5640
|
|
|
5641
5641
|
return function () { console.log(getAll()); };
|
|
5642
5642
|
|
|
@@ -5661,7 +5661,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5661
5661
|
|
|
5662
5662
|
function __getX() {
|
|
5663
5663
|
return (function() {
|
|
5664
|
-
with({ defaultsForThing: __defaultsForThing, getX: __getX }) {
|
|
5664
|
+
with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5665
5665
|
|
|
5666
5666
|
return function /*getX*/() { return defaultsForThing.config; };
|
|
5667
5667
|
|
|
@@ -5671,7 +5671,7 @@ return function /*getX*/() { return defaultsForThing.config; };
|
|
|
5671
5671
|
|
|
5672
5672
|
function __getAll() {
|
|
5673
5673
|
return (function() {
|
|
5674
|
-
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5674
|
+
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5675
5675
|
|
|
5676
5676
|
return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.config.y }; };
|
|
5677
5677
|
|
|
@@ -5681,7 +5681,7 @@ return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.co
|
|
|
5681
5681
|
|
|
5682
5682
|
function __f0() {
|
|
5683
5683
|
return (function() {
|
|
5684
|
-
with({ getAll: __getAll }) {
|
|
5684
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5685
5685
|
|
|
5686
5686
|
return function () { console.log(getAll()); };
|
|
5687
5687
|
|
|
@@ -5706,7 +5706,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5706
5706
|
|
|
5707
5707
|
function __getX() {
|
|
5708
5708
|
return (function() {
|
|
5709
|
-
with({ defaultsForThing: __defaultsForThing, getX: __getX }) {
|
|
5709
|
+
with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5710
5710
|
|
|
5711
5711
|
return function /*getX*/() { return defaultsForThing.config.x; };
|
|
5712
5712
|
|
|
@@ -5716,7 +5716,7 @@ return function /*getX*/() { return defaultsForThing.config.x; };
|
|
|
5716
5716
|
|
|
5717
5717
|
function __getAll() {
|
|
5718
5718
|
return (function() {
|
|
5719
|
-
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5719
|
+
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5720
5720
|
|
|
5721
5721
|
return function /*getAll*/() { const x = getX(); return { y: defaultsForThing }; };
|
|
5722
5722
|
|
|
@@ -5726,7 +5726,7 @@ return function /*getAll*/() { const x = getX(); return { y: defaultsForThing };
|
|
|
5726
5726
|
|
|
5727
5727
|
function __f0() {
|
|
5728
5728
|
return (function() {
|
|
5729
|
-
with({ getAll: __getAll }) {
|
|
5729
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5730
5730
|
|
|
5731
5731
|
return function () { console.log(getAll()); };
|
|
5732
5732
|
|
|
@@ -5751,7 +5751,7 @@ __defaultsForThing.config = __defaultsForThing_config;
|
|
|
5751
5751
|
|
|
5752
5752
|
function __getX() {
|
|
5753
5753
|
return (function() {
|
|
5754
|
-
with({ defaultsForThing: __defaultsForThing, getX: __getX }) {
|
|
5754
|
+
with({ defaultsForThing: __defaultsForThing, getX: __getX, this: undefined, arguments: undefined }) {
|
|
5755
5755
|
|
|
5756
5756
|
return function /*getX*/() { return defaultsForThing.config.x; };
|
|
5757
5757
|
|
|
@@ -5761,7 +5761,7 @@ return function /*getX*/() { return defaultsForThing.config.x; };
|
|
|
5761
5761
|
|
|
5762
5762
|
function __getAll() {
|
|
5763
5763
|
return (function() {
|
|
5764
|
-
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll }) {
|
|
5764
|
+
with({ getX: __getX, defaultsForThing: __defaultsForThing, getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5765
5765
|
|
|
5766
5766
|
return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.config }; };
|
|
5767
5767
|
|
|
@@ -5771,7 +5771,7 @@ return function /*getAll*/() { const x = getX(); return { y: defaultsForThing.co
|
|
|
5771
5771
|
|
|
5772
5772
|
function __f0() {
|
|
5773
5773
|
return (function() {
|
|
5774
|
-
with({ getAll: __getAll }) {
|
|
5774
|
+
with({ getAll: __getAll, this: undefined, arguments: undefined }) {
|
|
5775
5775
|
|
|
5776
5776
|
return function () { console.log(getAll()); };
|
|
5777
5777
|
|
|
@@ -5818,7 +5818,7 @@ __testConfig.name = "test";
|
|
|
5818
5818
|
|
|
5819
5819
|
function __f1(__0) {
|
|
5820
5820
|
return (function() {
|
|
5821
|
-
with({
|
|
5821
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5822
5822
|
|
|
5823
5823
|
return function /*constructor*/(name) {
|
|
5824
5824
|
if (name.endsWith(":config")) {
|
|
@@ -5833,7 +5833,7 @@ return function /*constructor*/(name) {
|
|
|
5833
5833
|
|
|
5834
5834
|
function __getConfig(__0) {
|
|
5835
5835
|
return (function() {
|
|
5836
|
-
with({ config: __config, getConfig: __getConfig }) {
|
|
5836
|
+
with({ config: __config, getConfig: __getConfig, this: undefined, arguments: undefined }) {
|
|
5837
5837
|
|
|
5838
5838
|
return function /*getConfig*/(k) {
|
|
5839
5839
|
return config[k];
|
|
@@ -5845,7 +5845,7 @@ return function /*getConfig*/(k) {
|
|
|
5845
5845
|
|
|
5846
5846
|
function __f2(__0) {
|
|
5847
5847
|
return (function() {
|
|
5848
|
-
with({ runtimeConfig_1: __runtimeConfig_1 }) {
|
|
5848
|
+
with({ runtimeConfig_1: __runtimeConfig_1, this: undefined, arguments: undefined }) {
|
|
5849
5849
|
|
|
5850
5850
|
return function /*get*/(key) {
|
|
5851
5851
|
const v = runtimeConfig_1.getConfig(this.fullKey(key));
|
|
@@ -5861,7 +5861,7 @@ return function /*get*/(key) {
|
|
|
5861
5861
|
|
|
5862
5862
|
function __f3(__0) {
|
|
5863
5863
|
return (function() {
|
|
5864
|
-
with({
|
|
5864
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5865
5865
|
|
|
5866
5866
|
return function /*fullKey*/(key) {
|
|
5867
5867
|
return this.name + ":" + key;
|
|
@@ -5873,7 +5873,7 @@ return function /*fullKey*/(key) {
|
|
|
5873
5873
|
|
|
5874
5874
|
function __f0() {
|
|
5875
5875
|
return (function() {
|
|
5876
|
-
with({ testConfig: __testConfig }) {
|
|
5876
|
+
with({ testConfig: __testConfig, this: undefined, arguments: undefined }) {
|
|
5877
5877
|
|
|
5878
5878
|
return function () { const v = testConfig.get("TestingKey1"); console.log(v); };
|
|
5879
5879
|
|
|
@@ -5901,7 +5901,7 @@ var __deploymentOnlyModule = {Config: __f1};
|
|
|
5901
5901
|
|
|
5902
5902
|
function __f1(__0) {
|
|
5903
5903
|
return (function() {
|
|
5904
|
-
with({
|
|
5904
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5905
5905
|
|
|
5906
5906
|
return function /*constructor*/(name) {
|
|
5907
5907
|
if (name.endsWith(":config")) {
|
|
@@ -5916,7 +5916,7 @@ return function /*constructor*/(name) {
|
|
|
5916
5916
|
|
|
5917
5917
|
function __getConfig(__0) {
|
|
5918
5918
|
return (function() {
|
|
5919
|
-
with({ config: __config, getConfig: __getConfig }) {
|
|
5919
|
+
with({ config: __config, getConfig: __getConfig, this: undefined, arguments: undefined }) {
|
|
5920
5920
|
|
|
5921
5921
|
return function /*getConfig*/(k) {
|
|
5922
5922
|
return config[k];
|
|
@@ -5928,7 +5928,7 @@ return function /*getConfig*/(k) {
|
|
|
5928
5928
|
|
|
5929
5929
|
function __f2(__0) {
|
|
5930
5930
|
return (function() {
|
|
5931
|
-
with({ runtimeConfig_1: __runtimeConfig_1 }) {
|
|
5931
|
+
with({ runtimeConfig_1: __runtimeConfig_1, this: undefined, arguments: undefined }) {
|
|
5932
5932
|
|
|
5933
5933
|
return function /*get*/(key) {
|
|
5934
5934
|
const v = runtimeConfig_1.getConfig(this.fullKey(key));
|
|
@@ -5944,7 +5944,7 @@ return function /*get*/(key) {
|
|
|
5944
5944
|
|
|
5945
5945
|
function __f3(__0) {
|
|
5946
5946
|
return (function() {
|
|
5947
|
-
with({
|
|
5947
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5948
5948
|
|
|
5949
5949
|
return function /*fullKey*/(key) {
|
|
5950
5950
|
return this.name + ":" + key;
|
|
@@ -5956,7 +5956,7 @@ return function /*fullKey*/(key) {
|
|
|
5956
5956
|
|
|
5957
5957
|
function __f0() {
|
|
5958
5958
|
return (function() {
|
|
5959
|
-
with({ deploymentOnlyModule: __deploymentOnlyModule }) {
|
|
5959
|
+
with({ deploymentOnlyModule: __deploymentOnlyModule, this: undefined, arguments: undefined }) {
|
|
5960
5960
|
|
|
5961
5961
|
return function () { const v = new deploymentOnlyModule.Config("test").get("TestingKey2"); console.log(v); };
|
|
5962
5962
|
|
|
@@ -5984,7 +5984,7 @@ return function () { const v = new deploymentOnlyModule.Config("test").get("Test
|
|
|
5984
5984
|
expectText: `
|
|
5985
5985
|
function __f0() {
|
|
5986
5986
|
return (function() {
|
|
5987
|
-
with({
|
|
5987
|
+
with({ this: undefined, arguments: undefined }) {
|
|
5988
5988
|
|
|
5989
5989
|
return () => {
|
|
5990
5990
|
const serverlessExpress = require("aws-serverless-express");
|
|
@@ -6032,7 +6032,7 @@ __outerVal[0] = __outerVal_0;
|
|
|
6032
6032
|
|
|
6033
6033
|
function __foo() {
|
|
6034
6034
|
return (function() {
|
|
6035
|
-
with({ outerVal: __outerVal, foo: __foo }) {
|
|
6035
|
+
with({ outerVal: __outerVal, foo: __foo, this: undefined, arguments: undefined }) {
|
|
6036
6036
|
|
|
6037
6037
|
return function /*foo*/() {
|
|
6038
6038
|
outerVal.pop();
|
|
@@ -6044,7 +6044,7 @@ return function /*foo*/() {
|
|
|
6044
6044
|
|
|
6045
6045
|
function __bar() {
|
|
6046
6046
|
return (function() {
|
|
6047
|
-
with({ outerVal: __outerVal, bar: __bar }) {
|
|
6047
|
+
with({ outerVal: __outerVal, bar: __bar, this: undefined, arguments: undefined }) {
|
|
6048
6048
|
|
|
6049
6049
|
return function /*bar*/() {
|
|
6050
6050
|
outerVal.join();
|
|
@@ -6056,7 +6056,7 @@ return function /*bar*/() {
|
|
|
6056
6056
|
|
|
6057
6057
|
function __f0() {
|
|
6058
6058
|
return (function() {
|
|
6059
|
-
with({ outerVal: __outerVal, foo: __foo, bar: __bar }) {
|
|
6059
|
+
with({ outerVal: __outerVal, foo: __foo, bar: __bar, this: undefined, arguments: undefined }) {
|
|
6060
6060
|
|
|
6061
6061
|
return () => {
|
|
6062
6062
|
outerVal.push({});
|
|
@@ -6081,7 +6081,7 @@ exports.handler = __f0();`,
|
|
|
6081
6081
|
|
|
6082
6082
|
function __f(__0) {
|
|
6083
6083
|
return (function() {
|
|
6084
|
-
with({ f: __f }) {
|
|
6084
|
+
with({ f: __f, this: undefined, arguments: undefined }) {
|
|
6085
6085
|
|
|
6086
6086
|
return function /*f*/({ whatever }) { };
|
|
6087
6087
|
|
|
@@ -6100,7 +6100,7 @@ return function /*f*/({ whatever }) { };
|
|
|
6100
6100
|
|
|
6101
6101
|
function __f0(__0, __1, __2, __3) {
|
|
6102
6102
|
return (function() {
|
|
6103
|
-
with({
|
|
6103
|
+
with({ this: undefined, arguments: undefined }) {
|
|
6104
6104
|
|
|
6105
6105
|
return function (thisArg, _arguments, P, generator) {
|
|
6106
6106
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -6118,7 +6118,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
6118
6118
|
|
|
6119
6119
|
function __f(__0) {
|
|
6120
6120
|
return (function() {
|
|
6121
|
-
with({ __awaiter: __f0, f: __f }) {
|
|
6121
|
+
with({ __awaiter: __f0, f: __f, this: undefined, arguments: undefined }) {
|
|
6122
6122
|
|
|
6123
6123
|
return function /*f*/({ whatever }) {
|
|
6124
6124
|
return __awaiter(this, void 0, void 0, function* () { });
|
|
@@ -6137,7 +6137,7 @@ return function /*f*/({ whatever }) {
|
|
|
6137
6137
|
|
|
6138
6138
|
function __f0(__0) {
|
|
6139
6139
|
return (function() {
|
|
6140
|
-
with({
|
|
6140
|
+
with({ this: undefined, arguments: undefined }) {
|
|
6141
6141
|
|
|
6142
6142
|
return ({ whatever }) => { };
|
|
6143
6143
|
|
|
@@ -6154,7 +6154,7 @@ return ({ whatever }) => { };
|
|
|
6154
6154
|
|
|
6155
6155
|
function __f1(__0, __1, __2, __3) {
|
|
6156
6156
|
return (function() {
|
|
6157
|
-
with({
|
|
6157
|
+
with({ this: undefined, arguments: undefined }) {
|
|
6158
6158
|
|
|
6159
6159
|
return function (thisArg, _arguments, P, generator) {
|
|
6160
6160
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -6172,7 +6172,7 @@ return function (thisArg, _arguments, P, generator) {
|
|
|
6172
6172
|
|
|
6173
6173
|
function __f0(__0) {
|
|
6174
6174
|
return (function() {
|
|
6175
|
-
with({ __awaiter: __f1 }) {
|
|
6175
|
+
with({ __awaiter: __f1, this: undefined, arguments: undefined }) {
|
|
6176
6176
|
|
|
6177
6177
|
return ({ whatever }) => __awaiter(void 0, void 0, void 0, function* () { });
|
|
6178
6178
|
|
|
@@ -6193,7 +6193,7 @@ var __regex = new RegExp("(abc)[\\\\(123-456]\\\\\\\\a\\\\b\\\\z", "gi");
|
|
|
6193
6193
|
|
|
6194
6194
|
function __f0() {
|
|
6195
6195
|
return (function() {
|
|
6196
|
-
with({ regex: __regex }) {
|
|
6196
|
+
with({ regex: __regex, this: undefined, arguments: undefined }) {
|
|
6197
6197
|
|
|
6198
6198
|
return function () { console.log(regex); };
|
|
6199
6199
|
|
|
@@ -6218,7 +6218,7 @@ var __regex = new RegExp("(abc)", "g");
|
|
|
6218
6218
|
|
|
6219
6219
|
function __foo() {
|
|
6220
6220
|
return (function() {
|
|
6221
|
-
with({ regex: __regex, foo: __foo }) {
|
|
6221
|
+
with({ regex: __regex, foo: __foo, this: undefined, arguments: undefined }) {
|
|
6222
6222
|
|
|
6223
6223
|
return function /*foo*/() {
|
|
6224
6224
|
console.log(regex);
|
|
@@ -6230,7 +6230,7 @@ return function /*foo*/() {
|
|
|
6230
6230
|
|
|
6231
6231
|
function __f0() {
|
|
6232
6232
|
return (function() {
|
|
6233
|
-
with({ regex: __regex, foo: __foo }) {
|
|
6233
|
+
with({ regex: __regex, foo: __foo, this: undefined, arguments: undefined }) {
|
|
6234
6234
|
|
|
6235
6235
|
return function () { console.log(regex); foo(); };
|
|
6236
6236
|
|
|
@@ -6255,7 +6255,7 @@ var __regex = new RegExp("(abc)", "");
|
|
|
6255
6255
|
|
|
6256
6256
|
function __foo() {
|
|
6257
6257
|
return (function() {
|
|
6258
|
-
with({ regex: __regex, foo: __foo }) {
|
|
6258
|
+
with({ regex: __regex, foo: __foo, this: undefined, arguments: undefined }) {
|
|
6259
6259
|
|
|
6260
6260
|
return function /*foo*/() {
|
|
6261
6261
|
console.log(regex);
|
|
@@ -6267,7 +6267,7 @@ return function /*foo*/() {
|
|
|
6267
6267
|
|
|
6268
6268
|
function __f0() {
|
|
6269
6269
|
return (function() {
|
|
6270
|
-
with({ regex: __regex, foo: __foo }) {
|
|
6270
|
+
with({ regex: __regex, foo: __foo, this: undefined, arguments: undefined }) {
|
|
6271
6271
|
|
|
6272
6272
|
return function () { console.log(regex); foo(); };
|
|
6273
6273
|
|
|
@@ -6317,7 +6317,7 @@ return function () { console.log(regex); foo(); };
|
|
|
6317
6317
|
|
|
6318
6318
|
function __f0(__0, __1, __2, __3) {
|
|
6319
6319
|
return (function() {
|
|
6320
|
-
with({
|
|
6320
|
+
with({ this: undefined, arguments: undefined }) {
|
|
6321
6321
|
|
|
6322
6322
|
return function (thisArg, _arguments, P, generator) {
|
|
6323
6323
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -6336,7 +6336,7 @@ const mockpackage_1 = require("mockpackage");
|
|
|
6336
6336
|
|
|
6337
6337
|
function __f1() {
|
|
6338
6338
|
return (function() {
|
|
6339
|
-
with({
|
|
6339
|
+
with({ this: undefined, arguments: undefined }) {
|
|
6340
6340
|
|
|
6341
6341
|
return () => mockpackage_1.z.object({
|
|
6342
6342
|
message: mockpackage_1.z.string(),
|
|
@@ -6348,7 +6348,7 @@ return () => mockpackage_1.z.object({
|
|
|
6348
6348
|
|
|
6349
6349
|
function __reproHandler(__0) {
|
|
6350
6350
|
return (function() {
|
|
6351
|
-
with({ __awaiter: __f0, getSchemaValidator: __f1, reproHandler: __reproHandler }) {
|
|
6351
|
+
with({ __awaiter: __f0, getSchemaValidator: __f1, reproHandler: __reproHandler, this: undefined, arguments: undefined }) {
|
|
6352
6352
|
|
|
6353
6353
|
return function /*reproHandler*/(input) {
|
|
6354
6354
|
return __awaiter(this, void 0, void 0, function* () {
|