diff --git a/lib/ast.js b/lib/ast.js index 513f239e..beff1390 100644 --- a/lib/ast.js +++ b/lib/ast.js @@ -853,6 +853,13 @@ var AST_String = DEFNODE("String", "value", { } }, AST_Constant); +var AST_StringTemplate = DEFNODE("StringTemplate", null, { + $documentation: "A string template", + $propdoc: { + body: "[AST_Statement*] the contents of this string template" + } +}, AST_Block); + var AST_Number = DEFNODE("Number", "value", { $documentation: "A number literal", $propdoc: { diff --git a/lib/index.html b/lib/index.html index e627c725..80cda37f 100644 --- a/lib/index.html +++ b/lib/index.html @@ -13,23 +13,91 @@ +
- + + + +