Forgot to initialize method body for constructors.

Found by: jat
Patch by: tobyr
Review by: me


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1461 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java b/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java
index e9ffc37..4b3f6fe 100644
--- a/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java
+++ b/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java
@@ -77,6 +77,7 @@
 import com.google.gwt.dev.jjs.ast.JVariable;
 import com.google.gwt.dev.jjs.ast.JVariableRef;
 import com.google.gwt.dev.jjs.ast.JWhileStatement;
+import com.google.gwt.dev.jjs.ast.JAbstractMethodBody;
 import com.google.gwt.dev.jjs.ast.js.JsniFieldRef;
 import com.google.gwt.dev.jjs.ast.js.JsniMethodBody;
 import com.google.gwt.dev.jjs.ast.js.JsniMethodRef;
@@ -503,6 +504,7 @@
         SourceInfo info = ctor.getSourceInfo();
 
         currentMethod = ctor;
+        currentMethodBody = (JMethodBody) ctor.getBody();
         currentMethodScope = x.scope;
 
         JMethodCall superOrThisCall = null;