diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-02-01 09:20:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 17:20:13 +0800 |
commit | ba6e29d6fd8df2434cb372b94c7aaccb68bc272f (patch) | |
tree | 90502d564901f98168ce35538cdacbb1b11c5da0 /lib/ast.js | |
parent | d4685640a00a0c998041c96ec197e613bd67b7b3 (diff) | |
download | tracifyjs-ba6e29d6fd8df2434cb372b94c7aaccb68bc272f.tar.gz tracifyjs-ba6e29d6fd8df2434cb372b94c7aaccb68bc272f.zip |
introduce `templates` (#4603)
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1422,7 +1422,7 @@ var AST_Template = DEFNODE("Template", "expressions strings tag", { $documentation: "A template literal, i.e. tag`str1${expr1}...strN${exprN}strN+1`", $propdoc: { expressions: "[AST_Node*] the placeholder expressions", - strings: "[string*] the interpolating text segments", + strings: "[string*] the raw text segments", tag: "[AST_Node] tag function, or null if absent", }, walk: function(visitor) { |