TypeScript/tests/baselines/reference/controlFlowPrivateClassField.js
Wesley Wigham e5fd0dd1e3
Allow private symbols to be control flow narrowed (#39978)
* Allow private symbols to be control flow narrowed

* Add test with narrowing of inferred control flow type for completeness

* Reformat long line
2020-09-05 02:48:45 -07:00

52 lines
812 B
TypeScript

//// [controlFlowPrivateClassField.ts]
class Example {
#test;
constructor(test: number) {
this.#test = test;
}
get test() {
return this.#test
}
}
class Example2 {
#test;
constructor(test: number | undefined) {
this.#test = test;
}
get test() {
if (this.#test) {
return this.#test
}
return 0;
}
}
//// [controlFlowPrivateClassField.js]
"use strict";
class Example {
constructor(test) {
this.#test = test;
}
#test;
get test() {
return this.#test;
}
}
class Example2 {
constructor(test) {
this.#test = test;
}
#test;
get test() {
if (this.#test) {
return this.#test;
}
return 0;
}
}