TypeScript/tests/cases/compiler/forLoopEndingMultilineComments.ts

18 lines
376 B
TypeScript
Raw Normal View History

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;
2019-07-19 10:22:00 +02:00
/* eslint-disable no-console */
if (a) {
} else {
}
2019-07-19 10:22:00 +02:00
/* eslint-enable no-console */
}
return true;
}