docstring for AST_StatementWithBody
authorMihai Bazon <mihai@bazon.net>
Tue, 28 Aug 2012 12:39:53 +0000 (15:39 +0300)
committerMihai Bazon <mihai@bazon.net>
Tue, 28 Aug 2012 12:39:53 +0000 (15:39 +0300)
lib/ast.js

index a4a87a2..bfafac6 100644 (file)
@@ -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", {