From 86cff2029f15b0883622957a5a98d9c27956914e Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Tue, 28 Aug 2012 15:39:53 +0300 Subject: [PATCH] docstring for AST_StatementWithBody --- lib/ast.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ast.js b/lib/ast.js index a4a87a2a..bfafac6c 100644 --- a/lib/ast.js +++ b/lib/ast.js @@ -150,6 +150,7 @@ var AST_EmptyStatement = DEFNODE("EmptyStatement", null, { }, AST_Statement); var AST_StatementWithBody = DEFNODE("StatementWithBody", null, { + $documentation: "Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`." }, AST_Statement); var AST_DWLoop = DEFNODE("DWLoop", "condition", { -- 2.34.1