TypeScript/tests/baselines/reference/parserVariableDeclaration3.types
Anders Hejlsberg a4f9bf0fce
Create type aliases for unresolved type symbols (#45976)
* Create type aliases for unresolved type symbols

* Accept new baselines

* Update fourslash tests

* Unresolved import aliases create tagged unresolved symbols

* Add comments

* Accept new baselines

* Add fourslash tests
2021-09-23 13:21:27 -07:00

36 lines
1.1 KiB
Plaintext

=== tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts ===
function runTests() {
>runTests : () => void
var outfile = new Harness.Compiler.WriterAggregator()
>outfile : any
>new Harness.Compiler.WriterAggregator() : any
>Harness.Compiler.WriterAggregator : any
>Harness.Compiler : any
>Harness : any
>Compiler : any
>WriterAggregator : any
, outerr = new Harness.Compiler.WriterAggregator()
>outerr : any
>new Harness.Compiler.WriterAggregator() : any
>Harness.Compiler.WriterAggregator : any
>Harness.Compiler : any
>Harness : any
>Compiler : any
>WriterAggregator : any
, compiler = <TypeScript.TypeScriptCompiler>new TypeScript.TypeScriptCompiler(outerr)
>compiler : TypeScript.TypeScriptCompiler
><TypeScript.TypeScriptCompiler>new TypeScript.TypeScriptCompiler(outerr) : TypeScript.TypeScriptCompiler
>TypeScript : any
>new TypeScript.TypeScriptCompiler(outerr) : any
>TypeScript.TypeScriptCompiler : any
>TypeScript : any
>TypeScriptCompiler : any
>outerr : any
, code;
>code : any
}