diff options
Diffstat (limited to 'tests/testdata/inspector/foo.ts')
-rw-r--r-- | tests/testdata/inspector/foo.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/testdata/inspector/foo.ts b/tests/testdata/inspector/foo.ts new file mode 100644 index 000000000..c0735926f --- /dev/null +++ b/tests/testdata/inspector/foo.ts @@ -0,0 +1,10 @@ +class Foo { + hello(): string { + return "hello"; + } +} + +export function foo(): string { + const f = new Foo(); + return f.hello(); +} |