make some expression into statements

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@4434 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2012-02-08 02:49:21 +00:00
parent 79946e98d6
commit f557348885
1 changed files with 1 additions and 1 deletions

View File

@ -1123,7 +1123,7 @@ public class RhinoToAstTranslator {
} else {
return
Ast.makeNode(CAstNode.LOCAL_SCOPE,
Ast.makeNode(CAstNode.BLOCK_EXPR, nodes.toArray(new CAstNode[ nodes.size() ])));
Ast.makeNode(CAstNode.BLOCK_STMT, nodes.toArray(new CAstNode[ nodes.size() ])));
}
}