summaryrefslogtreecommitdiff
path: root/tests/testdata/inspector/foo.ts
blob: c0735926f1af9f7c485bd295ec02aad9f2e0356a (plain)
1
2
3
4
5
6
7
8
9
10
class Foo {
  hello(): string {
    return "hello";
  }
}

export function foo(): string {
  const f = new Foo();
  return f.hello();
}