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

18 lines
400 B
TypeScript

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