Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
195 lines (161 loc) · 5.21 KB

File metadata and controls

195 lines (161 loc) · 5.21 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import { LuaLibImportKind } from "../../src";
import * as util from "../util";
const usingTestLib = `
export const logs: string[] = [];
function loggedDisposable(id: string): Disposable {
logs.push(\`Creating \${id}\`);
return {
[Symbol.dispose]() {
logs.push(\`Disposing \${id}\`);
}
}
}`;
test("using disposes object at end of function", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"] });
});
test("handles multi-variable declarations", () => {
util.testModule`
function func() {
using a = loggedDisposable("a"), b = loggedDisposable("b");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"] });
});
test("using disposes object at end of nested block", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
{
using b = loggedDisposable("b");
logs.push("nested block");
}
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({
logs: ["Creating a", "Creating b", "nested block", "Disposing b", "function content", "Disposing a"],
});
});
test("using does not affect function return value", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
logs.push("function content");
return "success";
}
export const result = func();
`
.setTsHeader(usingTestLib)
.expectToEqual({
result: "success",
logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"],
});
});
test("using disposes even when error happens", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
throw "test-induced exception";
}
try
{
func();
}
catch (e)
{
logs.push(\`caught exception: \${e}\`);
}
`
.setTsHeader(usingTestLib)
.expectToEqual({
logs: [
"Creating a",
"Creating b",
"Disposing b",
"Disposing a",
"caught exception: test-induced exception",
],
});
});
test("await using disposes object with await at end of function", () => {
util.testModule`
let disposeAsync;
function loggedAsyncDisposable(id: string): AsyncDisposable {
logs.push(\`Creating \${id}\`);
return {
[Symbol.asyncDispose]() {
logs.push(\`Disposing async \${id}\`);
return new Promise(resolve => {
disposeAsync = () => {
logs.push(\`Disposed \${id}\`);
resolve();
};
});
}
}
}
async function func() {
await using a = loggedAsyncDisposable("a");
logs.push("function content");
return "function result";
}
const p = func().then(r => logs.push("promise resolved", r));
logs.push("function returned");
disposeAsync();
`
.setTsHeader(usingTestLib)
.setOptions({ luaLibImport: LuaLibImportKind.Inline })
.expectToEqual({
logs: [
"Creating a",
"function content",
"Disposing async a",
"function returned",
"Disposed a",
"promise resolved",
"function result",
],
});
});
test("await using can handle non-async disposables", () => {
util.testModule`
async function func() {
await using a = loggedDisposable("a");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "function content", "Disposing a"] });
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1571
test("await using no extra diagnostics (#1571)", () => {
util.testModule`
async function getResource(): Promise<AsyncDisposable> {
return {
[Symbol.asyncDispose]: async () => {}
};
}
async function someOtherAsync() {}
async function main() {
await using resource = await getResource();
await someOtherAsync();
}
`.expectToHaveNoDiagnostics();
});
Morty Proxy This is a proxified and sanitized view of the page, visit original site.