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
|
//// [contextualExpressionTypecheckingDoesntBlowStack.ts]
// repro for: https://github.com/Microsoft/TypeScript/issues/23661
export interface IValidationError {
message: string;
}
export default class Operation {
validateParameters(parameterValues: any) : IValidationError[] | null {
let result: IValidationError[] | null = null;
for(const parameterLocation of Object.keys(parameterValues)) {
const parameter: any = (this as any).getParameter();;
const values = (this as any).getValues();
const innerResult = parameter.validate(values[parameter.oaParameter.name]);
if(innerResult && innerResult.length > 0) {
// Commenting out this line will fix the problem.
result = (result || []).concat(innerResult);
}
}
return result;
}
}
//// [contextualExpressionTypecheckingDoesntBlowStack.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Operation = /** @class */ (function () {
function Operation() {
}
Operation.prototype.validateParameters = function (parameterValues) {
var result = null;
for (var _i = 0, _a = Object.keys(parameterValues); _i < _a.length; _i++) {
var parameterLocation = _a[_i];
var parameter = this.getParameter();
;
var values = this.getValues();
var innerResult = parameter.validate(values[parameter.oaParameter.name]);
if (innerResult && innerResult.length > 0) {
// Commenting out this line will fix the problem.
result = (result || []).concat(innerResult);
}
}
return result;
};
return Operation;
}());
exports.default = Operation;
|