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

20 lines
462 B
TypeScript

/// <reference path="fourslash.ts"/>
//// /** @param foo { number /* } */
//// var v;
var c = classification;
verify.syntacticClassificationsAre(
c.comment("/** "),
c.punctuation("@"),
c.docCommentTagName("param"),
c.comment(" "),
c.parameterName("foo"),
c.comment(" "),
c.punctuation("{"),
c.keyword("number"),
c.comment(" /* } */"),
c.keyword("var"),
c.identifier("v"),
c.punctuation(";"));