pulumi/sdk/nodejs/tests/runtime/testdata/closure-tests/cases
Vincent Link 9b009d7db2
Fix usage of getters and setters in Lambda callback functions (#16568)
Fixes #16541 

Hi,

this is an attempt to fix #16541 , feedback is greatly appreciated!

I was not able to test if the result works as expected, I just adjusted
the code and manually created a test snapshot from the mocha console
output until I thought it looked right.

Could someone tell me...
1. how to actually build the `@pulumi/pulumi` package and how to test
the fixes quickly?
2. how to create a snapshot for a new closure test?
3. if there is a quick way to write the TypeScript code in this project,
set breakpoints and run tests against it?
- I plan to investigate the pnpm bundling bug of the `CallbackFunction`
but working on this and testing the code is extremely tedious right now
as I do not know your secrets (yet 😀)
- I didn't find these infos in the `CONTRIBUTING.md` and other READMEs
- I am very familiar with TypeScript and the nodejs tooling, but no clue
how everything is stitched together in this repo
- feel free to send me a Slack message in the Pulumi Community or
suggesting another communication channel



Thanks!

fyi @julienp
2024-07-08 09:51:12 +00:00
..
0-Empty-function-closure Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
1-Empty-named-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
2-Named-function-with-self-reference Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
3-Function-closure-with-this-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
4-Function-closure-with-this-and-arguments-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
5-Empty-arrow-closure Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
6-Arrow-closure-with-this-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
7-Async-lambda-that-does-not-capture-this Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
8-Async-lambda-that-does-capture-this Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
9-Async-function-that-does-not-capture-this Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
10-Async-function-that-does-capture-this Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
11-Arrow-closure-with-this-and-arguments-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
12-Arrow-closure-with-this-capture-inside-function-closure Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
13-Arrow-closure-with-this-and-arguments-capture-inside-function-closure Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
14-Invocation-of-async-function-that-does-not-capture-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
15-Invocation-of-async-function-that-does-capture-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
16-Invocation-of-async-lambda-that-does-not-capture-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
17-Invocation-of-async-lambda-that-capture-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
18-Empty-function-closure-with-args Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
19-Empty-arrow-closure-with-args Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
20-Doesn-t-serialize-global-captures Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
21-Handle-edge-case-literals Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
22-Serializes-basic-captures Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
23-Doesn-t-serialize-non-free-variables-but-retains-frees Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
24-Complex-capturing-cases-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
25-Complex-capturing-cases-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
26-Complex-capturing-cases-3 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
27-Don-t-capture-built-ins Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
28-Capture-built-in-module-by-ref Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
29-Capture-built-in-crypto-module-by-ref Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
30-Use-webcrypto-via-global-crypto Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
31-Wrapped-lambda-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
32-Capture-module-through-indirect-function-references Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
33-Capture-user-defined-module-by-value Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
34-Don-t-capture-catch-variables Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
35-Capture-default-parameters Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
36-Serializes-recursive-function-captures Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
37-Serializes-this-capturing-arrow-functions Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
38-Don-t-serialize-this-in-function-expressions Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
39-Serialize-mutable-objects-by-value-at-the-time-of-capture-pre-mutation Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
40-Output-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
41-Multiple-output-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
42-Recursive-output-capture Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
43-Capturing-same-value-through-outputs-multiple-times Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
44-Capture-object-with-methods Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
45-Undeclared-variable-in-typeof Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
46-Declared-variable-in-typeof Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
47-Capture-numeric-property Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
48-Serialize-es5-style-class Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
49-Serialize-class Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
50-Serialize-class-with-constructor-and-field Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
51-Serialize-constructed-class Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
52-Serialize-instance-class-methods Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
53-Serialize-method-with-reserved-name Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
54-Serialize-static-class-methods Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
55-Serialize-static-class-methods-es5-class-style Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
56-Cyclic-object-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
57-Cyclic-object-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
58-Cyclic-object-3 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
59-Cyclic-object-4 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
60-Object-captured-across-multiple-functions Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
61-Complex-property-descriptor-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
62-Complex-property-descriptor-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
63-Test-array-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
64-Test-array-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
65-Test-function-with-property Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
66-Test-null-prototype Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
67-Test-non-default-object-prototype Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
68-Test-recursive-prototype-object-prototype Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
69-Test-non-default-function-prototype Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
70-Test-generator-func Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
71-Test-anonymous-generator-func Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
72-Test-getter-setter-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
73-Test-getter-setter-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
74-Test-computed-method-name Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
75-Test-symbols-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
76-Test-Symbol-iterator Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
77-Test-class-extension Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
78-Three-level-inheritance Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
79-Three-level-inheritance-with-symbols Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
80-Two-level-static-inheritance Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
81-Capture-subset-of-properties-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
82-Capture-subset-of-properties-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
83-Capture-subset-of-properties-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
84-Capture-subset-of-properties-2-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
85-Capture-all-if-object-is-used-as-is Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
86-Capture-all-if-object-property-is-invoked-and-it-uses-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
87-Capture-all-if-object-property-is-invoked-and-it-uses-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
88-Capture-all-if-object-property-is-invoked-and-it-uses-this-in-nested-arrow-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
89-Capture-one-if-object-property-is-invoked-but-it-uses-this-in-nested-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
90-Capture-one-if-object-property-is-captured-uses-this-but-is-not-invoked-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
91-Capture-one-if-object-property-is-captured-uses-this-but-is-not-invoked-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
92-Capture-one-if-object-property-is-invoked-and-it-does-not-use-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
93-Capture-one-if-object-property-is-invoked-and-it-does-not-use-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
94-Capture-subset-if-sub-object-property-is-invoked-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
95-Capture-subset-if-sub-object-property-is-invoked-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
96-Capture-all-if-getter-and-getter-uses-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
97-Capture-all-if-getter-and-getter-uses-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
98-Capture-one-if-getter-and-getter-does-not-use-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
99-Capture-one-if-getter-and-getter-does-not-use-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
100-Capture-multi-props-from-different-contexts-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
101-Capture-multi-props-from-different-contexts-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
102-Do-not-capture-non-existent-prop-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
103-Do-not-capture-non-existent-prop-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
104-Capture-all-props-from-different-contexts-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
105-Capture-all-props-from-different-contexts-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
106-Capture-all-props-from-different-contexts-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
107-Capture-all-props-from-different-contexts-2-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
108-Capture-all-props-if-prototype-is-and-uses-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
109-Capture-all-props-if-prototype-is-and-uses-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
110-Capture-no-props-if-prototype-is-used-but-does-not-use-this-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
111-Capture-no-props-if-prototype-is-used-but-does-not-use-this-1-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
112-Capture-all-props-if-prototype-is-accessed-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
113-Capture-all-props-if-prototype-is-accessed-2-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
114-Cloud-table-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
115-Do-not-capture-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
116-Do-not-capture-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
117-Merge-simple-functions Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
118-Share-awaiter-functions Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
119-Capture-of-exported-variable-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
120-Capture-of-exported-variable-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
121-Capture-of-exported-variable-3 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
122-Required-packages-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
123-Analyze-property-chain-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
124-Analyze-property-chain-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
125-Analyze-property-chain-3 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
126-Analyze-property-chain-4 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
127-Analyze-property-chain-5 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
128-Analyze-property-chain-6 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
129-Analyze-property-chain-7 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
130-Analyze-property-chain-8 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
131-Analyze-property-chain-9 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
132-Analyze-property-chain-10 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
133-Analyze-property-chain-11 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
134-Analyze-property-chain-12 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
135-Analyze-property-chain-13 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
136-Analyze-property-chain-14 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
137-Analyze-property-chain-15 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
138-Analyze-property-chain-16 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
139-Analyze-property-chain-17 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
140-Analyze-property-chain-18 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
141-Analyze-property-chain-19 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
142-Analyze-property-chain-20 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
143-Analyze-property-chain-21 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
144-Analyze-property-chain-22 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
145-Analyze-property-chain-23 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
146-Analyze-property-chain-24 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
147-Analyze-property-chain-25 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
148-Analyze-property-chain-26 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
149-Analyze-property-chain-27 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
150-Analyze-property-chain-28 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
151-Capture-config-created-on-the-outside Make function serialization work on typescript 4 and 5 (#15761) 2024-03-27 10:03:57 +00:00
152-Capture-config-created-on-the-inside Make function serialization work on typescript 4 and 5 (#15761) 2024-03-27 10:03:57 +00:00
153-Capture-factory-func-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
154-Capture-factory-func-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
155-Deconstructing-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
156-Deconstructing-async-function Make function serialization work on typescript 4 and 5 (#15761) 2024-03-27 10:03:57 +00:00
157-Deconstructing-arrow-function Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
158-Deconstructing-async-arrow-function Make function serialization work on typescript 4 and 5 (#15761) 2024-03-27 10:03:57 +00:00
159-Regex-1 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
160-Regex-2 Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
161-Regex-3-no-flags Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
162-Can-t-capture-secrets-without-allowSecrets Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
163-Can-capture-secrets-with-allowSecrets Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
164-Respects-package-json-exports Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
165-Async-anonymous-function-closure-js Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
166-Async-anonymous-function-closure-extra-space-js Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
167-Async-named-function-closure-js Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
168-Async-arrow-function-closure-js Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
169-Function-captures-V8-intrinsic-js Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
170-Captures-bigint Reorganize closure tests to prepare for multiple typescript versions (#15753) 2024-03-25 13:19:17 +00:00
171-fs-promises Update builtin module list for function serialization (#15830) 2024-04-02 08:28:18 +00:00
172-alias-builtins Handle serialization of aliases for well known native functions (#15873) 2024-04-08 15:06:40 +00:00
173-bound-function Serialize function values obtained from Function.bind (#15887) 2024-04-10 11:17:53 +00:00
174-bound-function-args Serialize function values obtained from Function.bind (#15887) 2024-04-10 11:17:53 +00:00
175-reserved-identifier-shadowing Support serialising reserved NodeJS identifiers (#15879) 2024-04-10 15:12:43 +00:00
176-getter Fix usage of getters and setters in Lambda callback functions (#16568) 2024-07-08 09:51:12 +00:00