add API-graph test for the new tagged template calls

This commit is contained in:
erik-krogh
2023-10-06 21:25:34 +02:00
parent 18e6a5491c
commit 9b6501787a
4 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1 @@
import ApiGraphs.VerifyAssertions

View File

@@ -0,0 +1,9 @@
const tag = require("tag");
tag.string`string1
${23}` // def=moduleImport("tag").getMember("exports").getMember("string").getParameter(1)
tag.highlight`string2
${23}
morestring
${42}` // def=moduleImport("tag").getMember("exports").getMember("highlight").getParameter(2)

View File

@@ -0,0 +1,3 @@
{
"name": "tagged-template"
}