TypeScript/tests/baselines/reference/taggedTemplateWithoutDeclaredHelper.symbols
Jack Bates 6aaefe41fe
Remove vestigial baselines (#45916)
* Remove vestigial baselines

* Update Baselines and/or Applied Lint Fixes

* Add --quiet

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-09-16 12:49:47 -07:00

19 lines
538 B
Plaintext

=== tests/cases/compiler/foo.ts ===
function id<T>(x: T) {
>id : Symbol(id, Decl(foo.ts, 0, 0))
>T : Symbol(T, Decl(foo.ts, 0, 12))
>x : Symbol(x, Decl(foo.ts, 0, 15))
>T : Symbol(T, Decl(foo.ts, 0, 12))
return x;
>x : Symbol(x, Decl(foo.ts, 0, 15))
}
export const result = id `hello world`;
>result : Symbol(result, Decl(foo.ts, 4, 12))
>id : Symbol(id, Decl(foo.ts, 0, 0))
=== tests/cases/compiler/node_modules/tslib/index.d.ts ===
export { };
No type information for this code.
No type information for this code.