TypeScript/tests/cases/fourslash/syntacticClassificationsTripleSlash11.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

15 lines
409 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\""),
c.comment(" "),
c.comment("/"));