diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-02-14 22:48:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 22:48:39 +0000 |
commit | 1ad754b4123009e01dbecb3b880e7f0545e46c2f (patch) | |
tree | 400ef028fc459827b3c9e0faded780d853531da5 /tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts | |
parent | 66baff763fad65e8b209763d5c8d16084a3ab60c (diff) |
feat(lsp): jsr support with cache probing (#22418)
Diffstat (limited to 'tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts')
-rw-r--r-- | tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts b/tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts new file mode 100644 index 000000000..864e8dd32 --- /dev/null +++ b/tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts @@ -0,0 +1,4 @@ +// This is renamed to `add()` in 1.0.0. +export function sum(a: number, b: number): number { + return a + b; +} |