TypeScript/tests/cases/conformance/controlFlow/controlFlowBinaryOrExpression.ts

36 lines
715 B
TypeScript
Raw Normal View History

2016-03-25 21:29:58 +01:00
let x: string | number | boolean;
let cond: boolean;
(x = "") || (x = 0);
x; // string | number
x = "";
cond || (x = 0);
x; // string | number
2016-04-21 19:49:39 +02:00
export interface NodeList {
length: number;
}
export interface HTMLCollection {
length: number;
}
declare function isNodeList(sourceObj: any): sourceObj is NodeList;
declare function isHTMLCollection(sourceObj: any): sourceObj is HTMLCollection;
type EventTargetLike = {a: string} | HTMLCollection | NodeList;
var sourceObj: EventTargetLike = <any>undefined;
if (isNodeList(sourceObj)) {
sourceObj.length;
}
if (isHTMLCollection(sourceObj)) {
sourceObj.length;
}
if (isNodeList(sourceObj) || isHTMLCollection(sourceObj)) {
sourceObj.length;
}