docstring for AST_StatementWithBody

This commit is contained in:
Mihai Bazon
2012-08-28 15:39:53 +03:00
parent 1b6bcca717
commit 86cff2029f

View 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", {