TypeScript/tests/cases/compiler/forLoopEndingMultilineComments.ts
2019-07-19 12:21:54 +03:00

18 lines
376 B
TypeScript

declare var a: any;
export function consoleTestResultHandler(testResult: any): boolean {
// needed to get colors to show up when passing through Grunt
void a;
for (const q of a) {
void a;
/* eslint-disable no-console */
if (a) {
} else {
}
/* eslint-enable no-console */
}
return true;
}