TypeScript/tests/cases/fourslash/syntacticClassificationsTripleSlash2.ts

19 lines
455 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.comment(" "),
c.operator("="),
c.comment(" "),
c.jsxAttributeStringLiteralValue("\"./module.ts\""),
c.punctuation("/>"));