1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
=== tests/cases/compiler/weakType.ts ===
interface Settings {
timeout?: number;
>timeout : number
onError?(): void;
>onError : () => void
}
function getDefaultSettings() {
>getDefaultSettings : () => { timeout: number; }
return { timeout: 1000 };
>{ timeout: 1000 } : { timeout: number; }
>timeout : number
>1000 : 1000
}
interface CtorOnly {
new(s: string): { timeout: 1000 }
>s : string
>timeout : 1000
}
function doSomething(settings: Settings) { /* ... */ }
>doSomething : (settings: Settings) => void
>settings : Settings
// forgot to call `getDefaultSettings`
doSomething(getDefaultSettings);
>doSomething(getDefaultSettings) : void
>doSomething : (settings: Settings) => void
>getDefaultSettings : () => { timeout: number; }
doSomething(() => ({ timeout: 1000 }));
>doSomething(() => ({ timeout: 1000 })) : void
>doSomething : (settings: Settings) => void
>() => ({ timeout: 1000 }) : () => { timeout: number; }
>({ timeout: 1000 }) : { timeout: number; }
>{ timeout: 1000 } : { timeout: number; }
>timeout : number
>1000 : 1000
doSomething(null as CtorOnly);
>doSomething(null as CtorOnly) : void
>doSomething : (settings: Settings) => void
>null as CtorOnly : CtorOnly
>null : null
doSomething(12);
>doSomething(12) : void
>doSomething : (settings: Settings) => void
>12 : 12
doSomething('completely wrong');
>doSomething('completely wrong') : void
>doSomething : (settings: Settings) => void
>'completely wrong' : "completely wrong"
doSomething(false);
>doSomething(false) : void
>doSomething : (settings: Settings) => void
>false : false
// this is an oddly popular way of defining settings
// this example is from services/textChanges.ts
type ConfigurableStart = { useStart?: boolean }
>ConfigurableStart : { useStart?: boolean; }
>useStart : boolean
type ConfigurableEnd = { useEnd?: boolean }
>ConfigurableEnd : { useEnd?: boolean; }
>useEnd : boolean
type ConfigurableStartEnd = ConfigurableStart & ConfigurableEnd
>ConfigurableStartEnd : ConfigurableStart & ConfigurableEnd
interface InsertOptions {
prefix?: string
>prefix : string
suffix?: string
>suffix : string
}
type ChangeOptions = ConfigurableStartEnd & InsertOptions;
>ChangeOptions : ConfigurableStart & ConfigurableEnd & InsertOptions
function del(options: ConfigurableStartEnd = {},
>del : (options?: ConfigurableStartEnd, error?: { error?: number;}) => void
>options : ConfigurableStartEnd
>{} : {}
error: { error?: number } = {}) {
>error : { error?: number; }
>error : number
>{} : {}
let changes: ChangeOptions[];
>changes : ChangeOptions[]
changes.push(options);
>changes.push(options) : number
>changes.push : (...items: ChangeOptions[]) => number
>changes : ChangeOptions[]
>push : (...items: ChangeOptions[]) => number
>options : ConfigurableStartEnd
changes.push(error);
>changes.push(error) : number
>changes.push : (...items: ChangeOptions[]) => number
>changes : ChangeOptions[]
>push : (...items: ChangeOptions[]) => number
>error : { error?: number; }
}
class K {
>K : K
constructor(s: string) { }
>s : string
}
// Ctor isn't a weak type because it has a construct signature
interface Ctor {
new (s: string): K
>s : string
n?: number
>n : number
}
let ctor: Ctor = K
>ctor : Ctor
>K : typeof K
type Spoiler = { nope?: string }
>Spoiler : { nope?: string; }
>nope : string
type Weak = {
>Weak : { a?: number; properties?: { b?: number;}; }
a?: number
>a : number
properties?: {
>properties : { b?: number; }
b?: number
>b : number
}
}
declare let propertiesWrong: {
>propertiesWrong : { properties: { wrong: string;}; }
properties: {
>properties : { wrong: string; }
wrong: string
>wrong : string
}
}
let weak: Weak & Spoiler = propertiesWrong
>weak : Weak & Spoiler
>propertiesWrong : { properties: { wrong: string; }; }
|