TypeScript/tests/cases/fourslash/syntacticClassificationsTripleSlash10.ts
Andrew Casey 9647506d8c Support classification of triple-slash references
Note: not restricted to the element and attribute names that actually
bind
2019-07-25 15:59:17 -07:00

13 lines
365 B
TypeScript

/// <reference path="fourslash.ts"/>
//// /// <reference path="./module.ts"
var c = classification;
verify.syntacticClassificationsAre(
c.comment("/// "),
c.punctuation("<"),
c.jsxSelfClosingTagName("reference"),
c.comment(" "),
c.jsxAttribute("path"),
c.operator("="),
c.jsxAttributeStringLiteralValue("\"./module.ts\""));