TypeScript/tests/baselines/reference/jsdocInTypeScript.types
Wesley Wigham 5353475fce Always collect type and symbol baselines (#18621)
* Always generate type & symbol baselines

* Accept changed shadowed baselines

* Accept brand new type and symbol baselines

* Allow `getTypeAtLocation` to return undefined in the type writer

* Accept baselines which had missing type information

* Bind container for dynamically names enum members so they may be printed

* Accept type/symbol baselines for enums with computed members

* First pass at reducing typeWriter memory overhead

* Use generators to allow for type and symbol baselines with no cache

* Accept new baselines for tests whose output was fixed by better newline splitting

* Hard cap on number of declarations printed, cache declaration print text

* handle differing newlines better still to handle RWC newlines

* Lower abridging count, accept abridged baselines

* Limit max RWC error output size, limit RWC type and symbol baseline input size

* Move skip logic into type and symbol baseliner to streamline error handling

* Accept removal of empty baselines

* Canonicalize path earlier to handle odd paths in input files

* Do canonicalization earlier still, also ensure parallel perf profiles for different targets do not trample one another

* No need to pathify again
2017-09-22 15:52:04 -07:00

104 lines
2.1 KiB
Text

=== tests/cases/compiler/jsdocInTypeScript.ts ===
// JSDoc typedef tags are not bound TypeScript files.
/** @typedef {function} T */
declare const x: T;
>x : T
>T : T
class T {
>T : T
prop: number;
>prop : number
}
x.prop;
>x.prop : number
>x : T
>prop : number
// Just to be sure that @property has no impact either.
/**
* @typedef {Object} MyType
* @property {string} yes
*/
declare const myType: MyType; // should error, no such type
>myType : any
>MyType : No type information available!
// @param type has no effect.
/**
* @param {number} x
* @returns string
*/
function f(x: boolean) { return x * 2; } // Should error
>f : (x: boolean) => number
>x : boolean
>x * 2 : number
>x : boolean
>2 : 2
// Should fail, because it takes a boolean and returns a number
f(1); f(true).length;
>f(1) : number
>f : (x: boolean) => number
>1 : 1
>f(true).length : any
>f(true) : number
>f : (x: boolean) => number
>true : true
>length : any
// @type has no effect either.
/** @type {{ x?: number }} */
const z = {};
>z : {}
>{} : {}
z.x = 1; // Error
>z.x = 1 : 1
>z.x : any
>z : {}
>x : any
>1 : 1
// @template tag should not interfere with constraint or default.
/** @template T */
interface I<T extends number = 0> {}
>I : I<T>
>T : T
/** @template T */
function tem<T extends number>(t: T): I<T> { return {}; }
>tem : <T extends number>(t: T) => I<T>
>T : T
>t : T
>T : T
>I : I<T>
>T : T
>{} : {}
let i: I; // Should succeed thanks to type parameter default
>i : I<0>
>I : I<T>
/** @typedef {string} N.Str */
import M = N; // Error: @typedef does not create namespaces in TypeScript code.
>M : any
>N : No type information available!
// Not legal JSDoc, but that shouldn't matter in TypeScript.
/**
* @type {{foo: (function(string, string): string)}}
*/
const obj = { foo: (a, b) => a + b };
>obj : { foo: (a: any, b: any) => any; }
>{ foo: (a, b) => a + b } : { foo: (a: any, b: any) => any; }
>foo : (a: any, b: any) => any
>(a, b) => a + b : (a: any, b: any) => any
>a : any
>b : any
>a + b : any
>a : any
>b : any