DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / baselines / reference / boolInsteadOfBoolean.js
123456789
//// [boolInsteadOfBoolean.ts] var x: bool; var a: boolean = x; x = a; //// [boolInsteadOfBoolean.js] var x; var a = x; x = a;