diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-08-28 15:39:53 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-08-28 15:39:53 +0300 |
commit | 86cff2029f15b0883622957a5a98d9c27956914e (patch) | |
tree | 1b0a78ccc49f30d39df7e5c3eb13832753c4d6ce /lib/ast.js | |
parent | 1b6bcca7170c8f08f255448533c211cdb1010f34 (diff) | |
download | tracifyjs-86cff2029f15b0883622957a5a98d9c27956914e.tar.gz tracifyjs-86cff2029f15b0883622957a5a98d9c27956914e.zip |
docstring for AST_StatementWithBody
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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", { |