Added JavaDoc comment to BLOCK_EXPR.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@757 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
rmfuhrer 2007-02-14 16:33:35 +00:00
parent 2af4e3b189
commit 1ad96deff3
1 changed files with 12 additions and 0 deletions

View File

@ -117,6 +117,18 @@ public interface CAstNode {
public static final int EXPR_LIST = 101;
public static final int CALL = 102;
public static final int GET_CAUGHT_EXCEPTION = 103;
/**
* Represents a block of sequentially-executed nodes, the last of which produces
* the value for the entire block (like progn from lisp).
* Children:
* <ul>
* <li>node 1
* <li>node 2
* <li>...
* <li>block value expression
* </ul>
*/
public static final int BLOCK_EXPR = 104;
public static final int BINARY_EXPR = 105;
public static final int UNARY_EXPR = 106;