TypeScript/tests/baselines/reference/jsdocInTypeScript.symbols
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

86 lines
2.9 KiB
Plaintext

=== tests/cases/compiler/jsdocInTypeScript.ts ===
// JSDoc typedef tags are not bound TypeScript files.
/** @typedef {function} T */
declare const x: T;
>x : Symbol(x, Decl(jsdocInTypeScript.ts, 2, 13))
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 2, 19))
class T {
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 2, 19))
prop: number;
>prop : Symbol(T.prop, Decl(jsdocInTypeScript.ts, 4, 9))
}
x.prop;
>x.prop : Symbol(T.prop, Decl(jsdocInTypeScript.ts, 4, 9))
>x : Symbol(x, Decl(jsdocInTypeScript.ts, 2, 13))
>prop : Symbol(T.prop, Decl(jsdocInTypeScript.ts, 4, 9))
// 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 : Symbol(myType, Decl(jsdocInTypeScript.ts, 15, 13))
// @param type has no effect.
/**
* @param {number} x
* @returns string
*/
function f(x: boolean) { return x * 2; } // Should error
>f : Symbol(f, Decl(jsdocInTypeScript.ts, 15, 29))
>x : Symbol(x, Decl(jsdocInTypeScript.ts, 22, 11))
>x : Symbol(x, Decl(jsdocInTypeScript.ts, 22, 11))
// Should fail, because it takes a boolean and returns a number
f(1); f(true).length;
>f : Symbol(f, Decl(jsdocInTypeScript.ts, 15, 29))
>f : Symbol(f, Decl(jsdocInTypeScript.ts, 15, 29))
// @type has no effect either.
/** @type {{ x?: number }} */
const z = {};
>z : Symbol(z, Decl(jsdocInTypeScript.ts, 28, 5))
z.x = 1; // Error
>z : Symbol(z, Decl(jsdocInTypeScript.ts, 28, 5))
// @template tag should not interfere with constraint or default.
/** @template T */
interface I<T extends number = 0> {}
>I : Symbol(I, Decl(jsdocInTypeScript.ts, 29, 8))
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 33, 12))
/** @template T */
function tem<T extends number>(t: T): I<T> { return {}; }
>tem : Symbol(tem, Decl(jsdocInTypeScript.ts, 33, 36))
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 36, 13))
>t : Symbol(t, Decl(jsdocInTypeScript.ts, 36, 31))
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 36, 13))
>I : Symbol(I, Decl(jsdocInTypeScript.ts, 29, 8))
>T : Symbol(T, Decl(jsdocInTypeScript.ts, 36, 13))
let i: I; // Should succeed thanks to type parameter default
>i : Symbol(i, Decl(jsdocInTypeScript.ts, 38, 3))
>I : Symbol(I, Decl(jsdocInTypeScript.ts, 29, 8))
/** @typedef {string} N.Str */
import M = N; // Error: @typedef does not create namespaces in TypeScript code.
>M : Symbol(M, Decl(jsdocInTypeScript.ts, 38, 9))
// Not legal JSDoc, but that shouldn't matter in TypeScript.
/**
* @type {{foo: (function(string, string): string)}}
*/
const obj = { foo: (a, b) => a + b };
>obj : Symbol(obj, Decl(jsdocInTypeScript.ts, 47, 5))
>foo : Symbol(foo, Decl(jsdocInTypeScript.ts, 47, 13))
>a : Symbol(a, Decl(jsdocInTypeScript.ts, 47, 20))
>b : Symbol(b, Decl(jsdocInTypeScript.ts, 47, 22))
>a : Symbol(a, Decl(jsdocInTypeScript.ts, 47, 20))
>b : Symbol(b, Decl(jsdocInTypeScript.ts, 47, 22))