TypeScript/tests/baselines/reference/extendStringInterface.types
2015-04-13 14:29:37 -07:00

50 lines
2.2 KiB
Plaintext

=== tests/cases/conformance/types/primitives/string/extendStringInterface.ts ===
interface String {
>String : String, Symbol(String, Decl(lib.d.ts, 275, 1), Decl(lib.d.ts, 443, 11), Decl(extendStringInterface.ts, 0, 0))
doStuff(): string;
>doStuff : () => string, Symbol(doStuff, Decl(extendStringInterface.ts, 0, 18))
doOtherStuff<T>(x:T): T;
>doOtherStuff : <T>(x: T) => T, Symbol(doOtherStuff, Decl(extendStringInterface.ts, 1, 22))
>T : T, Symbol(T, Decl(extendStringInterface.ts, 2, 17))
>x : T, Symbol(x, Decl(extendStringInterface.ts, 2, 20))
>T : T, Symbol(T, Decl(extendStringInterface.ts, 2, 17))
>T : T, Symbol(T, Decl(extendStringInterface.ts, 2, 17))
}
var x = '';
>x : string, Symbol(x, Decl(extendStringInterface.ts, 5, 3))
>'' : string
var a: string = x.doStuff();
>a : string, Symbol(a, Decl(extendStringInterface.ts, 6, 3))
>x.doStuff() : string
>x.doStuff : () => string, Symbol(String.doStuff, Decl(extendStringInterface.ts, 0, 18))
>x : string, Symbol(x, Decl(extendStringInterface.ts, 5, 3))
>doStuff : () => string, Symbol(String.doStuff, Decl(extendStringInterface.ts, 0, 18))
var b: string = x.doOtherStuff('hm');
>b : string, Symbol(b, Decl(extendStringInterface.ts, 7, 3))
>x.doOtherStuff('hm') : string
>x.doOtherStuff : <T>(x: T) => T, Symbol(String.doOtherStuff, Decl(extendStringInterface.ts, 1, 22))
>x : string, Symbol(x, Decl(extendStringInterface.ts, 5, 3))
>doOtherStuff : <T>(x: T) => T, Symbol(String.doOtherStuff, Decl(extendStringInterface.ts, 1, 22))
>'hm' : string
var c: string = x['doStuff']();
>c : string, Symbol(c, Decl(extendStringInterface.ts, 8, 3))
>x['doStuff']() : string
>x['doStuff'] : () => string
>x : string, Symbol(x, Decl(extendStringInterface.ts, 5, 3))
>'doStuff' : string, Symbol(String.doStuff, Decl(extendStringInterface.ts, 0, 18))
var d: string = x['doOtherStuff']('hm');
>d : string, Symbol(d, Decl(extendStringInterface.ts, 9, 3))
>x['doOtherStuff']('hm') : string
>x['doOtherStuff'] : <T>(x: T) => T
>x : string, Symbol(x, Decl(extendStringInterface.ts, 5, 3))
>'doOtherStuff' : string, Symbol(String.doOtherStuff, Decl(extendStringInterface.ts, 1, 22))
>'hm' : string