TypeScript/tests/baselines/reference/unknownSymbolOffContextualType1.js
Sheetal Nandi 1b5023bad3 Emit leading/trailing comments for return statement
Note the detachedComments and copyright headers comment emitting is not part of this change
2014-08-15 15:16:17 -07:00

42 lines
1.1 KiB
TypeScript

//// [unknownSymbolOffContextualType1.ts]
declare var document: Document;
interface Document {
getElementById(elementId: string): HTMLElement;
}
interface HTMLElement {
isDisabled: boolean;
}
function getMaxWidth(elementNames: string[]) {
var elements = elementNames.map(function (name) {
return document.getElementById(name);
});
var enabled = elements.filter(function (e) {
return !e.isDisabled;
});
var widths = enabled.map(function (e) {
return e.xyxyxyx; // error expected here
});
var maxWidth = widths.reduce(function (a, b) {
return a > b ? a : b;
});
return maxWidth;
}
//// [unknownSymbolOffContextualType1.js]
function getMaxWidth(elementNames) {
var elements = elementNames.map(function (name) {
return document.getElementById(name);
});
var enabled = elements.filter(function (e) {
return !e.isDisabled;
});
var widths = enabled.map(function (e) {
return e.xyxyxyx; // error expected here
});
var maxWidth = widths.reduce(function (a, b) {
return a > b ? a : b;
});
return maxWidth;
}