TypeScript/tests/cases/fourslash/syntacticClassificationsTripleSlash1.ts

18 lines
435 B
TypeScript
Raw Normal View History

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