TypeScript/tests/baselines/reference/declFileEmitDeclarationOnly.types
Daniel Rosenwasser cce4bfbc7c
Revert changes for template literal types, keeping tests. (#42588)
* Revert changes for template literal types, keeping tests.

* Update Baselines and/or Applied Lint Fixes

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-02-03 14:49:03 -08:00

33 lines
657 B
Plaintext

=== tests/cases/compiler/helloworld.ts ===
const Log = {
>Log : { info(msg: string): void; }
>{ info(msg: string) {}} : { info(msg: string): void; }
info(msg: string) {}
>info : (msg: string) => void
>msg : string
}
class HelloWorld {
>HelloWorld : HelloWorld
constructor(private name: string) {
>name : string
}
public hello() {
>hello : () => void
Log.info(`Hello ${this.name}`);
>Log.info(`Hello ${this.name}`) : void
>Log.info : (msg: string) => void
>Log : { info(msg: string): void; }
>info : (msg: string) => void
>`Hello ${this.name}` : string
>this.name : string
>this : this
>name : string
}
}