TypeScript/tests/cases/fourslash/syntacticClassificationsTemplates2.ts

11 lines
532 B
TypeScript

/// <reference path="fourslash.ts"/>
////var tiredOfCanonicalExamples =
////`goodbye "${ `hello world` }"
////and ${ `good${ " " }riddance` }`;
var c = classification;
verify.syntacticClassificationsAre(
c.keyword("var"), c.text("tiredOfCanonicalExamples"), c.operator("="),
c.stringLiteral("`goodbye \"${"), c.stringLiteral("`hello world`"),
c.stringLiteral("}\" \nand ${"), c.stringLiteral("`good${"), c.stringLiteral("\" \""), c.stringLiteral("}riddance`"), c.stringLiteral("}`"), c.punctuation(";"));