TypeScript/tests/cases/fourslash/syntacticClassificationWithErrors.ts
Cyrus Najmabadi 9c7d1211a7 Update tests.
2015-07-13 16:57:11 -07:00

14 lines
327 B
TypeScript

/// <reference path='fourslash.ts'/>
////class A {
//// a:
////}
////c =
let c = classification
verify.syntacticClassificationsAre(
c.keyword("class"), c.className("A"), c.punctuation("{"),
c.identifier("a"), c.punctuation(":"),
c.punctuation("}"),
c.identifier("c"), c.operator("=")
);