diff options
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; |