TypeScript-TmLanguage/tests/cases/Issue646.ts

11 строки
225 B
TypeScript
Исходник Обычный вид История

// Good
const foo = 5; // The json data that the extension sent
console.log(`${foo}`)
// Good
const foo = 5
console.log(`${foo}`)
// Bad
const foo = 5 // The json data that the extension sent
console.log(`${foo}`)