mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
try {
|
|
await Deno.open("./some/file.txt");
|
|
} catch (e) {}
|
|
|
|
// deno-lint-ignore no-explicit-any require-await
|
|
function foo(): any {}
|
|
|
|
// deno-lint-ignore
|
|
while (false) {}
|