diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-01-13 10:25:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 16:25:20 +0100 |
commit | 282c235ba1ac2e3a666232e84ed2ff2d40070c6a (patch) | |
tree | 01ac735df2f466c1cf37ea0ac397f79fbbe39650 /cli/bench/testdata/code_lens.ts | |
parent | 50e8ab8a8630a272e9862f2fb7014107474405c6 (diff) |
chore: rename cli/bench/fixtures to cli/bench/testdata (#13363)
Diffstat (limited to 'cli/bench/testdata/code_lens.ts')
-rw-r--r-- | cli/bench/testdata/code_lens.ts | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/cli/bench/testdata/code_lens.ts b/cli/bench/testdata/code_lens.ts new file mode 100644 index 000000000..0822e31c4 --- /dev/null +++ b/cli/bench/testdata/code_lens.ts @@ -0,0 +1,56 @@ +interface A { + a: string; +} + +interface B { + b: string; +} + +interface C { + c: string; +} + +interface D { + d: string; +} + +interface E { + e: string; +} + +interface F { + f: string; +} + +interface G { + g: string; +} + +interface H { + h: string; +} + +class AB implements A, B { + a = "a"; + b = "b"; +} + +class CD implements C, D { + c = "c"; + d = "d"; +} + +class EF implements E, F { + e = "e"; + f = "f"; +} + +class GH implements G, H { + g = "g"; + h = "h"; +} + +new AB().a; +new CD().c; +new EF().e; +new GH().g; |