Make the compiler to support super.X/L.super.X which access super class' fields....
[IRC.git] / Robust / src / IR / Tree / BuildIR.java
index 9785ebbbab5d46b5cfe372f4a9a7523f8aad984d..6f3ed520c4f21eb96f52667005807ab026bb9654 100644 (file)
@@ -1,18 +1,21 @@
 package IR.Tree;
 import IR.*;
 import Util.Lattice;
+import Util.Pair;
 
 import java.io.File;
 import java.util.*;
-
+import java.io.*;
+import java.lang.Throwable;
 public class BuildIR {
   State state;
-
+  private boolean isRunningRecursiveInnerClass;
   private int m_taskexitnum;
 
   public BuildIR(State state) {
     this.state=state;
     this.m_taskexitnum = 0;
+    this.isRunningRecursiveInnerClass = false;
   }
 
   public void buildtree(ParseNode pn, Set toanalyze, String sourcefile) {
@@ -24,23 +27,38 @@ public class BuildIR {
     while(it_classes.hasNext()) {
       ClassDescriptor cd = (ClassDescriptor)it_classes.next();
       if(cd.isInterface()) {
-       cd.setInterfaceId(if_num++);
+        cd.setInterfaceId(if_num++);
       }
     }
   }
 
   //This is all single imports and a subset of the
   //multi imports that have been resolved.
-  Hashtable mandatoryImports;
+  ChainHashMap mandatoryImports;
   //maps class names in file to full name
   //Note may map a name to an ERROR.
-  Hashtable multiimports;
-  NameDescriptor packages;
+  ChainHashMap multiimports;
+  String packageName;
+
+  String currsourcefile;
+  Set analyzeset;
+
+  void pushChainMaps() {
+    mandatoryImports=mandatoryImports.makeChild();
+    multiimports=multiimports.makeChild();
+  }
+  
+  void popChainMaps() {
+    mandatoryImports=mandatoryImports.getParent();
+    multiimports=multiimports.getParent();
+  }
 
   /** Parse the classes in this file */
   public void parseFile(ParseNode pn, Set toanalyze, String sourcefile) {
-    mandatoryImports = new Hashtable();
-    multiimports = new Hashtable();
+    mandatoryImports = new ChainHashMap();
+    multiimports = new ChainHashMap();
+    currsourcefile=sourcefile;
+    analyzeset=toanalyze;
 
     if(state.JNI) {
       //add java.lang as our default multi-import
@@ -48,29 +66,29 @@ public class BuildIR {
     }
 
     ParseNode ipn = pn.getChild("imports").getChild("import_decls_list");
-    if (ipn != null) {
+    if ((ipn != null) && !state.MGC) {
       ParseNodeVector pnv = ipn.getChildren();
       for (int i = 0; i < pnv.size(); i++) {
-       ParseNode pnimport = pnv.elementAt(i);
-       NameDescriptor nd = parseName(pnimport.getChild("name"));
-       if (isNode(pnimport, "import_single")) {
-         if (!mandatoryImports.containsKey(nd.getIdentifier())) {
-           // map name to full name (includes package/directory
-           mandatoryImports.put(nd.getIdentifier(), nd.getPathFromRootToHere());
-         } else {
-           throw new Error("An ambiguous class "+ nd.getIdentifier() +" has been found. It is included for " +
-                           ((String)mandatoryImports.get(nd.getIdentifier())) + " and " +
-                           nd.getPathFromRootToHere());
-         }
-       } else {
-         addMultiImport(sourcefile, nd.getPathFromRootToHere(), false);
-       }
+        ParseNode pnimport = pnv.elementAt(i);
+        NameDescriptor nd = parseName(pnimport.getChild("name"));
+        if (isNode(pnimport, "import_single")) {
+          if (!mandatoryImports.containsKey(nd.getIdentifier())) {
+            // map name to full name (includes package/directory
+            mandatoryImports.put(nd.getIdentifier(), nd.getPathFromRootToHere());
+          } else {
+            throw new Error("An ambiguous class "+ nd.getIdentifier() +" has been found. It is included for " +
+                            ((String)mandatoryImports.get(nd.getIdentifier())) + " and " +
+                            nd.getPathFromRootToHere());
+          }
+        } else {
+          addMultiImport(sourcefile, nd.getPathFromRootToHere(), false);
+        }
       }
     }
 
     ParseNode ppn=pn.getChild("packages").getChild("package");
-    String packageName = null;
-    if (ppn!=null) {
+    packageName = null;
+    if ((ppn!=null) && !state.MGC){
       NameDescriptor nd = parseClassName(ppn.getChild("name"));
       packageName = nd.getPathFromRootToHere();
       //Trick -> import the package directory as a multi-import and it'll
@@ -82,103 +100,52 @@ public class BuildIR {
     if (tpn != null) {
       ParseNodeVector pnv = tpn.getChildren();
       for (int i = 0; i < pnv.size(); i++) {
-       ParseNode type_pn = pnv.elementAt(i);
-       if (isEmpty(type_pn)) /* Skip the semicolon */
-         continue;
-       if (isNode(type_pn, "class_declaration")) {
-         ClassDescriptor cn = parseTypeDecl(type_pn, packageName);
-         cn.setSourceFileName(sourcefile);
-         parseInitializers(cn);
-         if (toanalyze != null)
-           toanalyze.add(cn);
-         state.addClass(cn);
-         // for inner classes/enum
-         HashSet tovisit = new HashSet();
-         Iterator it_icds = cn.getInnerClasses();
-         while (it_icds.hasNext()) {
-           tovisit.add(it_icds.next());
-         }
-
-         while (!tovisit.isEmpty()) {
-           ClassDescriptor cd = (ClassDescriptor) tovisit.iterator().next();
-           tovisit.remove(cd);
-           parseInitializers(cd);
-           if (toanalyze != null) {
-             toanalyze.add(cd);
-           }
-           cd.setSourceFileName(sourcefile);
-           state.addClass(cd);
-
-           Iterator it_ics = cd.getInnerClasses();
-           while (it_ics.hasNext()) {
-             tovisit.add(it_ics.next());
-           }
-
-           Iterator it_ienums = cd.getEnum();
-           while (it_ienums.hasNext()) {
-             ClassDescriptor iecd = (ClassDescriptor) it_ienums.next();
-             if (toanalyze != null) {
-               toanalyze.add(iecd);
-             }
-             iecd.setSourceFileName(sourcefile);
-             state.addClass(iecd);
-           }
-         }
-
-         Iterator it_enums = cn.getEnum();
-         while (it_enums.hasNext()) {
-           ClassDescriptor ecd = (ClassDescriptor) it_enums.next();
-           if (toanalyze != null) {
-             toanalyze.add(ecd);
-           }
-           ecd.setSourceFileName(sourcefile);
-           state.addClass(ecd);
-         }
-       } else if (isNode(type_pn, "task_declaration")) {
-         TaskDescriptor td = parseTaskDecl(type_pn);
-         if (toanalyze != null)
-           toanalyze.add(td);
-         state.addTask(td);
-       } else if (isNode(type_pn, "interface_declaration")) {
-         // TODO add version for normal Java later
-         ClassDescriptor cn = parseInterfaceDecl(type_pn, packageName);
-         if (toanalyze != null)
-           toanalyze.add(cn);
-         cn.setSourceFileName(sourcefile);
-         state.addClass(cn);
-
-         // for enum
-         Iterator it_enums = cn.getEnum();
-         while (it_enums.hasNext()) {
-           ClassDescriptor ecd = (ClassDescriptor) it_enums.next();
-           if (toanalyze != null) {
-             toanalyze.add(ecd);
-           }
-           ecd.setSourceFileName(sourcefile);
-           state.addClass(ecd);
-         }
-       } else if (isNode(type_pn, "enum_declaration")) {
-         // TODO add version for normal Java later
-         ClassDescriptor cn = parseEnumDecl(null, type_pn);
-         if (toanalyze != null)
-           toanalyze.add(cn);
-         cn.setSourceFileName(sourcefile);
-         state.addClass(cn);
-       } else if(isNode(type_pn,"annotation_type_declaration")) {
-         ClassDescriptor cn=parseAnnotationTypeDecl(type_pn);
-         if (toanalyze != null)
-           toanalyze.add(cn);
-         cn.setSourceFileName(sourcefile);
-         state.addClass(cn);
-       } else {
-         throw new Error(type_pn.getLabel());
-       }
+        ParseNode type_pn = pnv.elementAt(i);
+        if (isEmpty(type_pn)) /* Skip the semicolon */
+          continue;
+        if (isNode(type_pn, "class_declaration")) {
+          ClassDescriptor cn = parseTypeDecl(type_pn);
+          parseInitializers(cn);
+
+          // for inner classes/enum
+          HashSet tovisit = new HashSet();
+          Iterator it_icds = cn.getInnerClasses();
+          while (it_icds.hasNext()) {
+            tovisit.add(it_icds.next());
+          }
+
+          while (!tovisit.isEmpty()) {
+            ClassDescriptor cd = (ClassDescriptor) tovisit.iterator().next();
+            tovisit.remove(cd);
+            parseInitializers(cd);
+
+            Iterator it_ics = cd.getInnerClasses();
+            while (it_ics.hasNext()) {
+              tovisit.add(it_ics.next());
+            }
+          }
+        } else if (isNode(type_pn, "task_declaration")) {
+          TaskDescriptor td = parseTaskDecl(type_pn);
+          if (toanalyze != null)
+            toanalyze.add(td);
+          state.addTask(td);
+        } else if (isNode(type_pn, "interface_declaration")) {
+          // TODO add version for normal Java later
+          ClassDescriptor cn = parseInterfaceDecl(type_pn, null);
+        } else if (isNode(type_pn, "enum_declaration")) {
+          // TODO add version for normal Java later
+          ClassDescriptor cn = parseEnumDecl(null, type_pn);
+
+        } else if(isNode(type_pn,"annotation_type_declaration")) {
+          ClassDescriptor cn=parseAnnotationTypeDecl(type_pn);
+        } else {
+          throw new Error(type_pn.getLabel());
+        }
       }
     }
   }
 
 
-
   //This kind of breaks away from tradition a little bit by doing the file checks here
   // instead of in Semantic check, but doing it here is easier because we have a mapping early on
   // if I wait until semantic check, I have to change ALL the type descriptors to match the new
@@ -189,27 +156,26 @@ public class BuildIR {
       String path = (String) state.classpath.get(j);
       File folder = new File(path, importPath.replace('.', '/'));
       if (folder.exists()) {
-       found = true;
-       for (String file : folder.list()) {
-         // if the file is of type *.java add to multiImport list.
-         if (file.lastIndexOf('.') != -1 && file.substring(file.lastIndexOf('.')).equalsIgnoreCase(".java")) {
-           String classname = file.substring(0, file.length() - 5);
-           // single imports have precedence over multi-imports
-           if (!mandatoryImports.containsKey(classname)) {
-             //package files have precedence over multi-imports.
-             if (multiimports.containsKey(classname)  && !isPackageDirectory) {
-               // put error in for later, in case we try to import
-               multiimports.put(classname, new Error("Error: class " + classname + " is defined more than once in a multi-import in " + currentSource));
-             } else {
-               multiimports.put(classname, importPath + "." + classname);
-             }
-           }
-         }
-       }
+        found = true;
+        for (String file : folder.list()) {
+          // if the file is of type *.java add to multiImport list.
+          if (file.lastIndexOf('.') != -1 && file.substring(file.lastIndexOf('.')).equalsIgnoreCase(".java")) {
+            String classname = file.substring(0, file.length() - 5);
+            // single imports have precedence over multi-imports
+            if (!mandatoryImports.containsKey(classname)) {
+              //package files have precedence over multi-imports.
+              if (multiimports.containsKey(classname)  && !isPackageDirectory) {
+                // put error in for later, in case we try to import
+                multiimports.put(classname, new Error("Error: class " + classname + " is defined more than once in a multi-import in " + currentSource));
+              } else {
+                multiimports.put(classname, importPath + "." + classname);
+              }
+            }
+          }
+        }
       }
     }
 
-
     if(!found) {
       throw new Error("Import package " + importPath + " in  " + currentSource
                       + " cannot be resolved.");
@@ -222,24 +188,35 @@ public class BuildIR {
     for(int i=0; i<fv.size(); i++) {
       FieldDescriptor fd=(FieldDescriptor)fv.get(i);
       if(fd.getExpressionNode()!=null) {
-       Iterator methodit = cn.getMethods();
-       while(methodit.hasNext()) {
-         MethodDescriptor currmd=(MethodDescriptor)methodit.next();
-         if(currmd.isConstructor()) {
-           BlockNode bn=state.getMethodBody(currmd);
-           NameNode nn=new NameNode(new NameDescriptor(fd.getSymbol()));
-           AssignmentNode an=new AssignmentNode(nn,fd.getExpressionNode(),new AssignOperation(1));
-           bn.addBlockStatementAt(new BlockExpressionNode(an), pos);
-         }
-       }
-       pos++;
+        Iterator methodit = cn.getMethods();
+        while(methodit.hasNext()) {
+          MethodDescriptor currmd=(MethodDescriptor)methodit.next();
+          if(currmd.isConstructor()) {
+            BlockNode bn=state.getMethodBody(currmd);
+            NameNode nn=new NameNode(new NameDescriptor(fd.getSymbol()));
+            AssignmentNode an=new AssignmentNode(nn,fd.getExpressionNode(),new AssignOperation(1));
+            bn.addBlockStatementAt(new BlockExpressionNode(an), pos);
+          }
+        }
+        pos++;
       }
     }
   }
-
-  private ClassDescriptor parseEnumDecl(ClassDescriptor cn, ParseNode pn) {
-    ClassDescriptor ecd=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
-    ecd.setImports(mandatoryImports);
+  
+  private ClassDescriptor parseEnumDecl(ClassDescriptor cn, ParseNode pn) {    
+    String basename=pn.getChild("name").getTerminal();
+    String classname=(cn!=null)?cn.getClassName()+"$"+basename:basename;
+    ClassDescriptor ecd=new ClassDescriptor(cn!=null?cn.getPackage():null, classname, false);
+    
+    if (cn!=null) {
+      if (packageName==null)
+       cn.getSingleImportMappings().put(basename,classname);
+      else
+       cn.getSingleImportMappings().put(basename,packageName+"."+classname);
+    }
+
+    pushChainMaps();
+    ecd.setImports(mandatoryImports, multiimports);
     ecd.setAsEnum();
     if(cn != null) {
       ecd.setSurroundingClass(cn.getSymbol());
@@ -252,6 +229,13 @@ public class BuildIR {
     }
     ecd.setModifiers(parseModifiersList(pn.getChild("modifiers")));
     parseEnumBody(ecd, pn.getChild("enumbody"));
+
+    if (analyzeset != null)
+      analyzeset.add(ecd);
+    ecd.setSourceFileName(currsourcefile);
+    state.addClass(ecd);
+
+    popChainMaps();
     return ecd;
   }
 
@@ -260,10 +244,10 @@ public class BuildIR {
     if (decls!=null) {
       ParseNodeVector pnv=decls.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"enum_constant")) {
-         parseEnumConstant(cn,decl);
-       } else throw new Error();
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"enum_constant")) {
+          parseEnumConstant(cn,decl);
+        } else throw new Error();
       }
     }
   }
@@ -274,12 +258,20 @@ public class BuildIR {
 
   private ClassDescriptor parseAnnotationTypeDecl(ParseNode pn) {
     ClassDescriptor cn=new ClassDescriptor(pn.getChild("name").getTerminal(), true);
-    cn.setImports(mandatoryImports);
+    pushChainMaps();
+    cn.setImports(mandatoryImports, multiimports);
     ParseNode modifiers=pn.getChild("modifiers");
     if(modifiers!=null) {
       cn.setModifiers(parseModifiersList(modifiers));
     }
     parseAnnotationTypeBody(cn,pn.getChild("body"));
+    popChainMaps();
+
+    if (analyzeset != null)
+      analyzeset.add(cn);
+    cn.setSourceFileName(currsourcefile);
+    state.addClass(cn);
+
     return cn;
   }
 
@@ -288,53 +280,63 @@ public class BuildIR {
     if(list_node!=null) {
       ParseNodeVector pnv = list_node.getChildren();
       for (int i = 0; i < pnv.size(); i++) {
-       ParseNode element_node = pnv.elementAt(i);
-       if (isNode(element_node, "annotation_type_element_declaration")) {
-         ParseNodeVector elementProps = element_node.getChildren();
-         String identifier=null;
-         TypeDescriptor type=null;
-         Modifiers modifiers=new Modifiers();
-         for(int eidx=0; eidx<elementProps.size(); eidx++) {
-           ParseNode prop_node=elementProps.elementAt(eidx);
-           if(isNode(prop_node,"name")) {
-             identifier=prop_node.getTerminal();
-           } else if(isNode(prop_node,"type")) {
-             type=parseTypeDescriptor(prop_node);
-           } else if(isNode(prop_node,"modifier")) {
-             modifiers=parseModifiersList(prop_node);
-           }
-         }
-         cn.addField(new FieldDescriptor(modifiers, type, identifier, null, false));
-       }
+        ParseNode element_node = pnv.elementAt(i);
+        if (isNode(element_node, "annotation_type_element_declaration")) {
+          ParseNodeVector elementProps = element_node.getChildren();
+          String identifier=null;
+          TypeDescriptor type=null;
+          Modifiers modifiers=new Modifiers();
+          for(int eidx=0; eidx<elementProps.size(); eidx++) {
+            ParseNode prop_node=elementProps.elementAt(eidx);
+            if(isNode(prop_node,"name")) {
+              identifier=prop_node.getTerminal();
+            } else if(isNode(prop_node,"type")) {
+              type=parseTypeDescriptor(prop_node);
+            } else if(isNode(prop_node,"modifier")) {
+              modifiers=parseModifiersList(prop_node);
+            }
+          }
+          cn.addField(new FieldDescriptor(modifiers, type, identifier, null, false));
+        }
       }
     }
   }
 
-  public ClassDescriptor parseInterfaceDecl(ParseNode pn, String packageName) {
-    ClassDescriptor cn;
-    if(packageName == null) {
-      cn=new ClassDescriptor(pn.getChild("name").getTerminal(), true);
-    } else  {
-      String newClassname = packageName + "." + pn.getChild("name").getTerminal();
-      cn= new ClassDescriptor(packageName, newClassname, true);
+  public ClassDescriptor parseInterfaceDecl(ParseNode pn, ClassDescriptor outerclass) {
+    String basename=pn.getChild("name").getTerminal();
+    String classname=((outerclass==null)?"":(outerclass.getClassName()+"$"))+basename;
+    if (outerclass!=null) {
+      if (packageName==null)
+       outerclass.getSingleImportMappings().put(basename,classname);
+      else
+       outerclass.getSingleImportMappings().put(basename,packageName+"."+classname);
     }
+    ClassDescriptor cn= new ClassDescriptor(packageName, classname, true);
 
-    cn.setImports(mandatoryImports);
+    pushChainMaps();
+    cn.setImports(mandatoryImports, multiimports);
     //cn.setAsInterface();
     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
       /* parse inherited interface name */
       ParseNode snlist=pn.getChild("superIF").getChild("extend_interface_list");
       ParseNodeVector pnv=snlist.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"type")) {
-         NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
-         cn.addSuperInterface(nd.toString());
-       }
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"type")) {
+          NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
+          cn.addSuperInterface(nd.toString());
+        } else if (isNode(decl, "interface_declaration")) {
+          ClassDescriptor innercn = parseInterfaceDecl(decl, cn);
+       } else throw new Error();
       }
     }
     cn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
     parseInterfaceBody(cn, pn.getChild("interfacebody"));
+    if (analyzeset != null)
+      analyzeset.add(cn);
+    cn.setSourceFileName(currsourcefile);
+    state.addClass(cn);
+    popChainMaps();
     return cn;
   }
 
@@ -344,12 +346,14 @@ public class BuildIR {
     if (decls!=null) {
       ParseNodeVector pnv=decls.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"constant")) {
-         parseInterfaceConstant(cn,decl);
-       } else if (isNode(decl,"method")) {
-         parseInterfaceMethod(cn,decl.getChild("method_declaration"));
-       } else throw new Error();
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"constant")) {
+          parseInterfaceConstant(cn,decl);
+        } else if (isNode(decl,"method")) {
+          parseInterfaceMethod(cn,decl.getChild("method_declaration"));
+        } else if (isNode(decl, "interface_declaration")) {
+         parseInterfaceDecl(decl, cn);
+       } else throw new Error(decl.PPrint(2, true));
       }
     }
   }
@@ -374,17 +378,6 @@ public class BuildIR {
       BlockNode bn=parseBlock(bodyn);
       cn.addMethod(md);
       state.addTreeCode(md,bn);
-
-      // this is a hack for investigating new language features
-      // at the AST level, someday should evolve into a nice compiler
-      // option *wink*
-      //if( cn.getSymbol().equals( ***put a class in here like:     "Test" ) &&
-      //    md.getSymbol().equals( ***put your method in here like: "main" )
-      //) {
-      //  bn.setStyle( BlockNode.NORMAL );
-      //  System.out.println( bn.printNode( 0 ) );
-      //}
-
     } catch (Exception e) {
       System.out.println("Error with method:"+md.getSymbol());
       e.printStackTrace();
@@ -423,9 +416,9 @@ public class BuildIR {
       String flagname=pn.getChild("name").getTerminal();
       FlagEffects fe=new FlagEffects(flagname);
       if (pn.getChild("flag_list")!=null)
-       parseFlagEffect(fe, pn.getChild("flag_list"));
+        parseFlagEffect(fe, pn.getChild("flag_list"));
       if (pn.getChild("tag_list")!=null)
-       parseTagEffect(fe, pn.getChild("tag_list"));
+        parseTagEffect(fe, pn.getChild("tag_list"));
       return fe;
     } else throw new Error();
   }
@@ -436,8 +429,8 @@ public class BuildIR {
       ParseNode pn2=pnv.elementAt(i);
       boolean status=true;
       if (isNode(pn2,"not")) {
-       status=false;
-       pn2=pn2.getChild("name");
+        status=false;
+        pn2=pn2.getChild("name");
       }
       String name=pn2.getTerminal();
       fes.addTagEffect(new TagEffect(name,status));
@@ -450,8 +443,8 @@ public class BuildIR {
       ParseNode pn2=pnv.elementAt(i);
       boolean status=true;
       if (isNode(pn2,"not")) {
-       status=false;
-       pn2=pn2.getChild("name");
+        status=false;
+        pn2=pn2.getChild("name");
       }
       String name=pn2.getTerminal();
       fes.addEffect(new FlagEffect(name,status));
@@ -498,8 +491,8 @@ public class BuildIR {
       Vector[] args=parseConsArgumentList(pn);
       ConstraintCheck cc=new ConstraintCheck(specname);
       for(int i=0; i<args[0].size(); i++) {
-       cc.addVariable((String)args[0].get(i));
-       cc.addArgument((ExpressionNode)args[1].get(i));
+        cc.addVariable((String)args[0].get(i));
+        cc.addArgument((ExpressionNode)args[1].get(i));
       }
       return cc;
     } else throw new Error();
@@ -515,24 +508,24 @@ public class BuildIR {
     for(int i=0; i<pnv.size(); i++) {
       ParseNode paramn=pnv.elementAt(i);
       if(paramn.getChild("optional")!=null) {
-       optional = true;
-       paramn = paramn.getChild("optional").getFirstChild();
-       System.out.println("OPTIONAL FOUND!!!!!!!");
+        optional = true;
+        paramn = paramn.getChild("optional").getFirstChild();
+        System.out.println("OPTIONAL FOUND!!!!!!!");
       } else { optional = false;
-              System.out.println("NOT OPTIONAL"); }
+               System.out.println("NOT OPTIONAL"); }
 
       TypeDescriptor type=parseTypeDescriptor(paramn);
 
       String paramname=paramn.getChild("single").getTerminal();
       FlagExpressionNode fen=null;
       if (paramn.getChild("flag")!=null)
-       fen=parseFlagExpression(paramn.getChild("flag").getFirstChild());
+        fen=parseFlagExpression(paramn.getChild("flag").getFirstChild());
 
       ParseNode tagnode=paramn.getChild("tag");
 
       TagExpressionList tel=null;
       if (tagnode!=null) {
-       tel=parseTagExpressionList(tagnode);
+        tel=parseTagExpressionList(tagnode);
       }
 
       td.addParameter(type,paramname,fen, tel, optional);
@@ -553,17 +546,10 @@ public class BuildIR {
     return tel;
   }
 
-  public ClassDescriptor parseTypeDecl(ParseNode pn, String packageName) {
-    ClassDescriptor cn;
-    // if is in no package, then create a class descriptor with just the name.
-    // else add the package on
-    if(packageName == null) {
-      cn=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
-    } else  {
-      String newClassname = packageName + "." + pn.getChild("name").getTerminal();
-      cn= new ClassDescriptor(packageName, newClassname, false);
-    }
-    cn.setImports(mandatoryImports);
+  public ClassDescriptor parseTypeDecl(ParseNode pn) {
+    ClassDescriptor cn=new ClassDescriptor(packageName, pn.getChild("name").getTerminal(), false);
+    pushChainMaps();
+    cn.setImports(mandatoryImports, multiimports);
     if (!isEmpty(pn.getChild("super").getTerminal())) {
       /* parse superclass name */
       ParseNode snn=pn.getChild("super").getChild("type").getChild("class").getChild("name");
@@ -572,7 +558,7 @@ public class BuildIR {
     } else {
       if (!(cn.getSymbol().equals(TypeUtil.ObjectClass)||
             cn.getSymbol().equals(TypeUtil.TagClass)))
-       cn.setSuper(TypeUtil.ObjectClass);
+        cn.setSuper(TypeUtil.ObjectClass);
     }
     // check inherited interfaces
     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
@@ -580,11 +566,11 @@ public class BuildIR {
       ParseNode snlist=pn.getChild("superIF").getChild("interface_type_list");
       ParseNodeVector pnv=snlist.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"type")) {
-         NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
-         cn.addSuperInterface(nd.toString());
-       }
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"type")) {
+          NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
+          cn.addSuperInterface(nd.toString());
+        }
       }
     }
     cn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
@@ -604,66 +590,131 @@ public class BuildIR {
       md.setDefaultConstructor();
       cn.addMethod(md);
     }
+
+
+    popChainMaps();
+
+    cn.setSourceFileName(currsourcefile);
+
+
+    
+    if (analyzeset != null)
+      analyzeset.add(cn);
+    state.addClass(cn);
+//create this$n representing a final reference to the next surrounding class. each inner class should have whatever inner class
+//pointers the surrounding class has + a pointer to the surrounding class.
+   if( true )
+   {
+       this.isRunningRecursiveInnerClass = true; //fOR dEBUGGING PURPOSES IN ORDER TO DUMP STRINGS WHILE IN THIS CODE PATH
+       addOuterClassReferences( cn, 0 );
+       addOuterClassParam( cn, 0 );
+       this.isRunningRecursiveInnerClass = false;
+    }
     return cn;
   }
 
+private void initializeOuterMember( MethodDescriptor md, String fieldName, String formalParameter ) {
+        BlockNode obn = state.getMethodBody(md);
+         NameNode nn=new NameNode( new NameDescriptor( fieldName ) );
+        NameNode fn = new NameNode ( new NameDescriptor( formalParameter ) );
+          //nn.setNumLine(en.getNumLine())
+         AssignmentNode an=new AssignmentNode(nn,fn,new AssignOperation(1));
+         //an.setNumLine(pn.getLine());
+         obn.addFirstBlockStatement(new BlockExpressionNode(an));
+       // System.out.print( "The code inserted is : " + obn.printNode( 0 ) + "\n" );
+         state.addTreeCode(md, obn);
+}
+
+private void addOuterClassParam( ClassDescriptor cn, int depth )
+{
+       Iterator nullCheckItr = cn.getInnerClasses();
+       if( false == nullCheckItr.hasNext() )
+               return;
+
+       //create a typedescriptor of type cn
+       TypeDescriptor theTypeDesc = new TypeDescriptor( cn );
+       
+       for(Iterator it=cn.getInnerClasses(); it.hasNext(); ) {
+               ClassDescriptor icd=(ClassDescriptor)it.next();
+               if(icd.isStatic()) {
+                   continue;
+               }
+               
+               //iterate over all ctors of I.Cs and add a new param
+               for(Iterator method_it=icd.getMethods(); method_it.hasNext(); ) {
+                        MethodDescriptor md=(MethodDescriptor)method_it.next();
+                        if( md.isConstructor() ){
+                               md.addParameter( theTypeDesc, "surrounding$" + String.valueOf(depth) ); 
+                               initializeOuterMember( md, "this$" + String.valueOf( depth ), "surrounding$" + String.valueOf(depth) );
+                               //System.out.println( "The added param is " + md.toString() + "\n" );           
+                       }
+               }
+               addOuterClassParam( icd, depth + 1 );
+               
+       }
+       
+}
+private void addOuterClassReferences( ClassDescriptor cn, int depth )
+{
+       //SYMBOLTABLE does not have a length or empty method, hence could not define a hasInnerClasses method in classDescriptor
+       Iterator nullCheckItr = cn.getInnerClasses();
+       if( false == nullCheckItr.hasNext() )
+               return;
+
+       String tempCopy = cn.getClassName();
+       //MESSY HACK FOLLOWS
+       int i = 0;
+
+       ParseNode theNode = new ParseNode( "field_declaration" );
+       theNode.addChild("modifier").addChild( new ParseNode( "modifier_list" ) ).addChild("final");
+       ParseNode theTypeNode = new ParseNode("type");
+       ParseNode tempChildNode = theTypeNode.addChild("class").addChild( "name" );
+               //tempChildNode.addChild("base").addChild( new ParseNode("empty") );
+       tempChildNode.addChild("identifier").addChild ( tempCopy );
+       theNode.addChild("type").addChild( theTypeNode );
+       ParseNode variableDeclaratorID = new ParseNode("single");
+       String theStr = "this$" + String.valueOf( depth );
+       variableDeclaratorID.addChild( theStr );
+       ParseNode variableDeclarator = new ParseNode( "variable_declarator" );
+       variableDeclarator.addChild( variableDeclaratorID );
+       ParseNode variableDeclaratorList = new ParseNode("variable_declarators_list");
+       variableDeclaratorList.addChild( variableDeclarator );
+       theNode.addChild("variables").addChild( variableDeclaratorList );
+
+       for(Iterator it=cn.getInnerClasses(); it.hasNext(); ) {
+               ClassDescriptor icd=(ClassDescriptor)it.next();
+               parseFieldDecl( icd, theNode );         
+               /*if( true ) {
+                       SymbolTable fieldTable = icd.getFieldTable();
+                       //System.out.println( fieldTable.toString() );
+               }*/
+               icd.setInnerDepth( depth + 1 );
+               addOuterClassReferences( icd, depth + 1 );      
+       }
+}
+
   private void parseClassBody(ClassDescriptor cn, ParseNode pn) {
     ParseNode decls=pn.getChild("class_body_declaration_list");
     if (decls!=null) {
       ParseNodeVector pnv=decls.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"member")) {
-         parseClassMember(cn,decl);
-       } else if (isNode(decl,"constructor")) {
-         parseConstructorDecl(cn,decl.getChild("constructor_declaration"));
-       } else if (isNode(decl, "static_block")) {
-         parseStaticBlockDecl(cn, decl.getChild("static_block_declaration"));
-       } else if (isNode(decl,"block")) {
-       } else if (isNode(decl,"location_order_declaration")) {
-         parseLocationOrder(cn,decl.getChild("location_order_list"));
-       } else throw new Error();
-      }
-    }
-  }
-
-  private void parseLocationOrder(ClassDescriptor cd, ParseNode pn) {
-    ParseNodeVector pnv = pn.getChildren();
-    Lattice<String> locOrder =
-      new Lattice<String>("_top_","_bottom_");
-    Set<String> spinLocSet=new HashSet<String>();
-    for (int i = 0; i < pnv.size(); i++) {
-      ParseNode loc = pnv.elementAt(i);
-      if(isNode(loc,"location_property")) {
-       String spinLoc=loc.getChildren().elementAt(0).getLabel();
-       spinLocSet.add(spinLoc);
-      } else {
-       String lowerLoc=loc.getChildren().elementAt(0).getLabel();
-       String higherLoc= loc.getChildren().elementAt(1).getLabel();
-       locOrder.put(higherLoc, lowerLoc);
-       if (locOrder.isIntroducingCycle(higherLoc)) {
-         throw new Error("Error: the order relation " + lowerLoc + " < " + higherLoc
-                         + " introduces a cycle.");
-       }
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"member")) {
+          parseClassMember(cn,decl);
+        } else if (isNode(decl,"constructor")) {
+          parseConstructorDecl(cn,decl.getChild("constructor_declaration"));
+        } else if (isNode(decl, "static_block")) {
+          parseStaticBlockDecl(cn, decl.getChild("static_block_declaration"));
+        } else if (isNode(decl,"block")) {
+        } else throw new Error();
       }
     }
-    if(spinLocSet.size()>0) {
-      //checking if location is actually defined in the hierarchy
-      for (Iterator iterator = spinLocSet.iterator(); iterator.hasNext(); ) {
-       String locID = (String) iterator.next();
-       if(!locOrder.containsKey(locID)) {
-         throw new Error("Error: The spinning location '"+
-                         locID + "' is not defined in the hierarchy of the class '"+cd +"'.");
-       }
-      }
-      state.addLocationPropertySet(cd, spinLocSet);
-    }
-    state.addLocationOrder(cd, locOrder);
   }
 
   private void parseClassMember(ClassDescriptor cn, ParseNode pn) {
     ParseNode fieldnode=pn.getChild("field");
     if (fieldnode!=null) {
+      //System.out.println( pn.PPrint( 0, true ) );
       parseFieldDecl(cn,fieldnode.getChild("field_declaration"));
       return;
     }
@@ -677,9 +728,15 @@ public class BuildIR {
       parseInnerClassDecl(cn,innerclassnode);
       return;
     }
+     ParseNode innerinterfacenode=pn.getChild("interface_declaration");
+    if (innerinterfacenode!=null) {
+      parseInterfaceDecl(innerinterfacenode, cn);
+      return;
+    }
+
     ParseNode enumnode=pn.getChild("enum_declaration");
     if (enumnode!=null) {
-      parseEnumDecl(cn,enumnode);
+      ClassDescriptor ecn=parseEnumDecl(cn,enumnode);
       return;
     }
     ParseNode flagnode=pn.getChild("flag");
@@ -692,17 +749,29 @@ public class BuildIR {
     if(emptynode != null) {
       return;
     }
+    System.out.println("Unrecognized node:"+pn.PPrint(2,true));
     throw new Error();
   }
 
+//10/9/2011 changed this function to enable creation of default constructor for inner classes.
+//the change was refactoring this function with the corresponding version for normal classes. sganapat
   private ClassDescriptor parseInnerClassDecl(ClassDescriptor cn, ParseNode pn) {
-    ClassDescriptor icn=new ClassDescriptor(pn.getChild("name").getTerminal(), false);
-    icn.setImports(mandatoryImports);
-    icn.setAsInnerClass();
+    String basename=pn.getChild("name").getTerminal();
+    String classname=cn.getClassName()+"$"+basename;
+
+    if (cn.getPackage()==null)
+      cn.getSingleImportMappings().put(basename,classname);
+    else
+      cn.getSingleImportMappings().put(basename,cn.getPackage()+"."+classname);
+    
+    ClassDescriptor icn=new ClassDescriptor(cn.getPackage(), classname, false);
+    pushChainMaps();
+    icn.setImports(mandatoryImports, multiimports);
     icn.setSurroundingClass(cn.getSymbol());
     icn.setSurrounding(cn);
     cn.addInnerClass(icn);
-    if (!isEmpty(pn.getChild("super").getTerminal())) {
+
+     if (!isEmpty(pn.getChild("super").getTerminal())) {
       /* parse superclass name */
       ParseNode snn=pn.getChild("super").getChild("type").getChild("class").getChild("name");
       NameDescriptor nd=parseClassName(snn);
@@ -710,7 +779,7 @@ public class BuildIR {
     } else {
       if (!(icn.getSymbol().equals(TypeUtil.ObjectClass)||
             icn.getSymbol().equals(TypeUtil.TagClass)))
-       icn.setSuper(TypeUtil.ObjectClass);
+        icn.setSuper(TypeUtil.ObjectClass);
     }
     // check inherited interfaces
     if (!isEmpty(pn.getChild("superIF").getTerminal())) {
@@ -718,19 +787,42 @@ public class BuildIR {
       ParseNode snlist=pn.getChild("superIF").getChild("interface_type_list");
       ParseNodeVector pnv=snlist.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode decl=pnv.elementAt(i);
-       if (isNode(decl,"type")) {
-         NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
-         icn.addSuperInterface(nd.toString());
-       }
+        ParseNode decl=pnv.elementAt(i);
+        if (isNode(decl,"type")) {
+          NameDescriptor nd=parseClassName(decl.getChild("class").getChild("name"));
+          icn.addSuperInterface(nd.toString());
+        }
       }
     }
     icn.setModifiers(parseModifiersList(pn.getChild("modifiers")));
-    if(!icn.isStatic()) {
-      throw new Error("Error: inner class " + icn.getSymbol() + " in Class " +
-                      cn.getSymbol() + " is not a nested class and is not supported yet!");
-    }
+
+   if (!icn.isStatic())
+     icn.setAsInnerClass();
+
     parseClassBody(icn, pn.getChild("classbody"));
+
+    boolean hasConstructor = false;
+    for(Iterator method_it=icn.getMethods(); method_it.hasNext(); ) {
+      MethodDescriptor md=(MethodDescriptor)method_it.next();
+      hasConstructor |= md.isConstructor();
+    }
+//sganapat adding change to allow proper construction of inner class objects
+    if((!hasConstructor) && (!icn.isEnum())) {
+      // add a default constructor for this class
+      MethodDescriptor md = new MethodDescriptor(new Modifiers(Modifiers.PUBLIC),
+                                                 icn.getSymbol(), false);
+      BlockNode bn=new BlockNode();
+      state.addTreeCode(md,bn);
+      md.setDefaultConstructor();
+      icn.addMethod(md);
+   }
+    popChainMaps();
+
+     if (analyzeset != null)
+      analyzeset.add(icn);
+    icn.setSourceFileName(currsourcefile);
+    state.addClass(icn);
+
     return icn;
   }
 
@@ -761,7 +853,7 @@ public class BuildIR {
       TypeDescriptor td=parseTypeDescriptor(nn.getChild("basetype"));
       Integer numdims=(Integer)nn.getChild("dims").getLiteral();
       for(int i=0; i<numdims.intValue(); i++)
-       td=td.makeArray(state);
+        td=td.makeArray(state);
       return td;
     } else {
       System.out.println(pn.PPrint(2, true));
@@ -773,6 +865,8 @@ public class BuildIR {
   //we do not want to apply our resolveName function (i.e. deal with imports)
   //otherwise, if base == null, we do just want to resolve name.
   private NameDescriptor parseClassName(ParseNode nn) {
+    
+
     ParseNode base=nn.getChild("base");
     ParseNode id=nn.getChild("identifier");
     String classname = id.getTerminal();
@@ -795,20 +889,21 @@ public class BuildIR {
   //This will get the mapping of a terminal class name
   //to a canonical classname (with imports/package locations in them)
   private String resolveName(String terminal) {
+    
     if(mandatoryImports.containsKey(terminal)) {
       return (String) mandatoryImports.get(terminal);
     } else {
       if(multiimports.containsKey(terminal)) {
-       //Test for error
-       Object o = multiimports.get(terminal);
-       if(o instanceof Error) {
-         throw new Error("Class " + terminal + " is ambiguous. Cause: more than 1 package import contain the same class.");
-       } else {
-         //At this point, if we found a unique class
-         //we can treat it as a single, mandatory import.
-         mandatoryImports.put(terminal, o);
-         return (String) o;
-       }
+        //Test for error
+        Object o = multiimports.get(terminal);
+        if(o instanceof Error) {
+          throw new Error("Class " + terminal + " is ambiguous. Cause: more than 1 package import contain the same class.");
+        } else {
+          //At this point, if we found a unique class
+          //we can treat it as a single, mandatory import.
+          mandatoryImports.put(terminal, o);
+          return (String) o;
+        }
       }
     }
 
@@ -842,7 +937,7 @@ public class BuildIR {
       // Can only be PUBLIC or STATIC or FINAL
       if((m.isAbstract()) || (m.isAtomic()) || (m.isNative())
          || (m.isSynchronized())) {
-       throw new Error("Error: field in Interface " + cn.getSymbol() + "can only be PUBLIC or STATIC or FINAL");
+        throw new Error("Error: field in Interface " + cn.getSymbol() + "can only be PUBLIC or STATIC or FINAL");
       }
       m.addModifier(Modifiers.PUBLIC);
       m.addModifier(Modifiers.STATIC);
@@ -851,7 +946,6 @@ public class BuildIR {
 
     ParseNode tn=pn.getChild("type");
     TypeDescriptor t=parseTypeDescriptor(tn);
-    assignAnnotationsToType(m,t);
     ParseNode vn=pn.getChild("variables").getChild("variable_declarators_list");
     ParseNodeVector pnv=vn.getChildren();
     boolean isglobal=pn.getChild("global")!=null;
@@ -860,56 +954,63 @@ public class BuildIR {
       ParseNode vardecl=pnv.elementAt(i);
       ParseNode tmp=vardecl;
       TypeDescriptor arrayt=t;
+       if( this.isRunningRecursiveInnerClass && false )
+       {       
+               System.out.println( "the length of the list is " + String.valueOf( pnv.size() ) );
+               System.out.println( "\n the parse node is \n" + tmp.PPrint( 0, true ) );
+       }
       while (tmp.getChild("single")==null) {
-       arrayt=arrayt.makeArray(state);
-       tmp=tmp.getChild("array");
+        arrayt=arrayt.makeArray(state);
+        tmp=tmp.getChild("array");
       }
       String identifier=tmp.getChild("single").getTerminal();
       ParseNode epn=vardecl.getChild("initializer");
 
       ExpressionNode en=null;
+      
       if (epn!=null) {
-       en=parseExpression(epn.getFirstChild());
-       en.setNumLine(epn.getFirstChild().getLine());
-       if(m.isStatic()) {
-         // for static field, the initializer should be considered as a
-         // static block
-         boolean isfirst = false;
-         MethodDescriptor md = (MethodDescriptor)cn.getMethodTable().getFromSameScope("staticblocks");
-         if(md == null) {
-           // the first static block for this class
-           Modifiers m_i=new Modifiers();
-           m_i.addModifier(Modifiers.STATIC);
-           md = new MethodDescriptor(m_i, "staticblocks", false);
-           md.setAsStaticBlock();
-           isfirst = true;
-         }
-         if(isfirst) {
-           cn.addMethod(md);
-         }
-         cn.incStaticBlocks();
-         BlockNode bn=new BlockNode();
-         NameNode nn=new NameNode(new NameDescriptor(identifier));
-         nn.setNumLine(en.getNumLine());
-         AssignmentNode an=new AssignmentNode(nn,en,new AssignOperation(1));
-         an.setNumLine(pn.getLine());
-         bn.addBlockStatement(new BlockExpressionNode(an));
-         if(isfirst) {
-           state.addTreeCode(md,bn);
-         } else {
-           BlockNode obn = state.getMethodBody(md);
-           for(int ii = 0; ii < bn.size(); ii++) {
-             BlockStatementNode bsn = bn.get(ii);
-             obn.addBlockStatement(bsn);
-           }
-           state.addTreeCode(md, obn);
-           bn = null;
-         }
-         en = null;
-       }
+        en=parseExpression(epn.getFirstChild());
+        en.setNumLine(epn.getFirstChild().getLine());
+        if(m.isStatic()) {
+          // for static field, the initializer should be considered as a
+          // static block
+          boolean isfirst = false;
+          MethodDescriptor md = (MethodDescriptor)cn.getMethodTable().getFromSameScope("staticblocks");
+          if(md == null) {
+            // the first static block for this class
+            Modifiers m_i=new Modifiers();
+            m_i.addModifier(Modifiers.STATIC);
+            md = new MethodDescriptor(m_i, "staticblocks", false);
+            md.setAsStaticBlock();
+            isfirst = true;
+          }
+          if(isfirst) {
+            cn.addMethod(md);
+          }
+          cn.incStaticBlocks();
+          BlockNode bn=new BlockNode();
+          NameNode nn=new NameNode(new NameDescriptor(identifier));
+          nn.setNumLine(en.getNumLine());
+          AssignmentNode an=new AssignmentNode(nn,en,new AssignOperation(1));
+          an.setNumLine(pn.getLine());
+          bn.addBlockStatement(new BlockExpressionNode(an));
+          if(isfirst) {
+            state.addTreeCode(md,bn);
+          } else {
+            BlockNode obn = state.getMethodBody(md);
+            for(int ii = 0; ii < bn.size(); ii++) {
+              BlockStatementNode bsn = bn.get(ii);
+              obn.addBlockStatement(bsn);
+            }
+            state.addTreeCode(md, obn);
+            bn = null;
+          }
+          en = null;
+        }
       }
 
       cn.addField(new FieldDescriptor(m, arrayt, identifier, en, isglobal));
+      assignAnnotationsToType(m,arrayt);
     }
   }
 
@@ -926,7 +1027,10 @@ public class BuildIR {
 
   private ExpressionNode parseExpression(ParseNode pn) {
     if (isNode(pn,"assignment"))
+       {
+          //System.out.println( "parsing a field decl in my class that has assignment in initialization " + pn.PPrint( 0, true ) + "\n");
       return parseAssignmentExpression(pn);
+       }
     else if (isNode(pn,"logical_or")||isNode(pn,"logical_and")||
              isNode(pn,"bitwise_or")||isNode(pn,"bitwise_xor")||
              isNode(pn,"bitwise_and")||isNode(pn,"equal")||
@@ -983,40 +1087,74 @@ public class BuildIR {
       boolean isglobal = pn.getChild("global") != null || pn.getChild("scratch") != null;
       String disjointId = null;
       if (pn.getChild("disjoint") != null) {
-       disjointId = pn.getChild("disjoint").getTerminal();
+        disjointId = pn.getChild("disjoint").getTerminal();
       }
+      ParseNode idChild = (pn.getChild( "id" ));
+      ParseNode baseChild = (pn.getChild( "base" ));
+      
       CreateObjectNode con = new CreateObjectNode(td, isglobal, disjointId);
+      if( null != idChild && null != idChild.getFirstChild() ) {
+       idChild = idChild.getFirstChild();
+       //System.out.println( "\nThe object passed has this expression " + idChild.PPrint( 0, true ) );
+       ExpressionNode en = parseExpression( idChild ); 
+       //System.out.println( "\nThe object passed has this expression " + en.printNode( 0 ) );
+       con.setSurroundingExpression( en );
+      }
+      else if( null != baseChild  && null != baseChild.getFirstChild()  ) {
+       baseChild = baseChild.getFirstChild();
+       //System.out.println( "\nThe object passed has this expression " + baseChild.PPrint( 0, true ) );
+       ExpressionNode en = parseExpression( baseChild ); 
+       //System.out.println( "\nThe object passed has this expression " + en.printNode( 0 ) );
+       con.setSurroundingExpression( en );     
+      }
       con.setNumLine(pn.getLine());
       for (int i = 0; i < args.size(); i++) {
-       con.addArgument((ExpressionNode) args.get(i));
+        con.addArgument((ExpressionNode) args.get(i));
       }
       /* Could have flag set or tag added here */
       if (pn.getChild("flag_list") != null || pn.getChild("tag_list") != null) {
-       FlagEffects fe = new FlagEffects(null);
-       if (pn.getChild("flag_list") != null)
-         parseFlagEffect(fe, pn.getChild("flag_list"));
+        FlagEffects fe = new FlagEffects(null);
+        if (pn.getChild("flag_list") != null)
+          parseFlagEffect(fe, pn.getChild("flag_list"));
 
-       if (pn.getChild("tag_list") != null)
-         parseTagEffect(fe, pn.getChild("tag_list"));
-       con.addFlagEffects(fe);
+        if (pn.getChild("tag_list") != null)
+          parseTagEffect(fe, pn.getChild("tag_list"));
+        con.addFlagEffects(fe);
       }
 
       return con;
     } else if (isNode(pn,"createobjectcls")) {
       //TODO:::  FIX BUG!!!  static fields in caller context need to become parameters
+      //TODO::: caller context need to be passed in here
       TypeDescriptor td=parseTypeDescriptor(pn);
       innerCount++;
-      ClassDescriptor cnnew=new ClassDescriptor(td.getSymbol()+"$"+innerCount, false);
-      cnnew.setImports(mandatoryImports);
+      ClassDescriptor cnnew=new ClassDescriptor(packageName,td.getSymbol()+"$"+innerCount, false);
+      pushChainMaps();
+      cnnew.setImports(mandatoryImports, multiimports);
       cnnew.setSuper(td.getSymbol());
+      cnnew.setInline();
       parseClassBody(cnnew, pn.getChild("decl").getChild("classbody"));
-      Vector args=parseArgumentList(pn);
+      TypeDescriptor tdnew=state.getTypeDescriptor(cnnew.getSymbol());
 
-      CreateObjectNode con=new CreateObjectNode(td, false, null);
+      Vector args=parseArgumentList(pn);
+      ParseNode idChild = pn.getChild( "id" );
+      ParseNode baseChild = pn.getChild( "base" );
+      //System.out.println("\n to print idchild and basechild for ");
+      /*if( null != idChild )
+       System.out.println( "\n trying to create an inner class and the id child passed is "  + idChild.PPrint( 0, true ) );
+      if( null != baseChild )
+       System.out.println( "\n trying to create an inner class and the base child passed is "  + baseChild.PPrint( 0, true ) );*/
+      CreateObjectNode con=new CreateObjectNode(tdnew, false, null);
       con.setNumLine(pn.getLine());
       for(int i=0; i<args.size(); i++) {
-       con.addArgument((ExpressionNode)args.get(i));
+        con.addArgument((ExpressionNode)args.get(i));
       }
+      popChainMaps();
+
+      if (analyzeset != null)
+       analyzeset.add(cnnew);
+      cnnew.setSourceFileName(currsourcefile);
+      state.addClass(cnnew);
 
       return con;
     } else if (isNode(pn,"createarray")) {
@@ -1025,19 +1163,19 @@ public class BuildIR {
                         pn.getChild("scratch")!=null;
       String disjointId=null;
       if( pn.getChild("disjoint") != null) {
-       disjointId = pn.getChild("disjoint").getTerminal();
+        disjointId = pn.getChild("disjoint").getTerminal();
       }
       TypeDescriptor td=parseTypeDescriptor(pn);
       Vector args=parseDimExprs(pn);
       int num=0;
       if (pn.getChild("dims_opt").getLiteral()!=null)
-       num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
+        num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
       for(int i=0; i<(args.size()+num); i++)
-       td=td.makeArray(state);
+        td=td.makeArray(state);
       CreateObjectNode con=new CreateObjectNode(td, isglobal, disjointId);
       con.setNumLine(pn.getLine());
       for(int i=0; i<args.size(); i++) {
-       con.addArgument((ExpressionNode)args.get(i));
+        con.addArgument((ExpressionNode)args.get(i));
       }
       return con;
     }
@@ -1045,9 +1183,9 @@ public class BuildIR {
       TypeDescriptor td=parseTypeDescriptor(pn);
       int num=0;
       if (pn.getChild("dims_opt").getLiteral()!=null)
-       num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
+        num=((Integer)pn.getChild("dims_opt").getLiteral()).intValue();
       for(int i=0; i<num; i++)
-       td=td.makeArray(state);
+        td=td.makeArray(state);
       CreateObjectNode con=new CreateObjectNode(td, false, null);
       con.setNumLine(pn.getLine());
       ParseNode ipn = pn.getChild("initializer");
@@ -1066,6 +1204,14 @@ public class BuildIR {
       NameNode nn=new NameNode(nd);
       nn.setNumLine(pn.getLine());
       return nn;
+    } else if (isNode(pn,"parentclass")) {
+      NameDescriptor nd=new NameDescriptor(pn.getChild("name").getFirstChild().getFirstChild().getTerminal());
+      NameNode nn=new NameNode(nd);
+      nn.setNumLine(pn.getLine());
+       //because inner classes pass right thru......
+      FieldAccessNode fan=new FieldAccessNode(nn,"this");
+      fan.setNumLine(pn.getLine());
+      return fan;
     } else if (isNode(pn,"isavailable")) {
       NameDescriptor nd=new NameDescriptor(pn.getTerminal());
       NameNode nn=new NameNode(nd);
@@ -1077,7 +1223,7 @@ public class BuildIR {
       MethodInvokeNode min=new MethodInvokeNode(nd);
       min.setNumLine(pn.getLine());
       for(int i=0; i<args.size(); i++) {
-       min.addArgument((ExpressionNode)args.get(i));
+        min.addArgument((ExpressionNode)args.get(i));
       }
       return min;
     } else if (isNode(pn,"methodinvoke2")) {
@@ -1087,7 +1233,7 @@ public class BuildIR {
       MethodInvokeNode min=new MethodInvokeNode(methodid,exp);
       min.setNumLine(pn.getLine());
       for(int i=0; i<args.size(); i++) {
-       min.addArgument((ExpressionNode)args.get(i));
+        min.addArgument((ExpressionNode)args.get(i));
       }
       return min;
     } else if (isNode(pn,"fieldaccess")) {
@@ -1097,6 +1243,22 @@ public class BuildIR {
       FieldAccessNode fan=new FieldAccessNode(en,fieldname);
       fan.setNumLine(pn.getLine());
       return fan;
+    } else if (isNode(pn,"superfieldaccess")) {
+       ExpressionNode en=new NameNode(new NameDescriptor("super"));
+       String fieldname=pn.getChild("field").getTerminal();
+
+       FieldAccessNode fan=new FieldAccessNode(en,fieldname);
+       fan.setNumLine(pn.getLine());
+       return fan;
+    } else if (isNode(pn,"supernamefieldaccess")) {
+       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
+       ExpressionNode exp = new FieldAccessNode(en, "super");
+       exp.setNumLine(pn.getLine());
+       String fieldname=pn.getChild("field").getTerminal();
+
+       FieldAccessNode fan=new FieldAccessNode(exp,fieldname);
+       fan.setNumLine(pn.getLine());
+       return fan;
     } else if (isNode(pn,"arrayaccess")) {
       ExpressionNode en=parseExpression(pn.getChild("base").getFirstChild());
       ExpressionNode index=parseExpression(pn.getChild("index").getFirstChild());
@@ -1105,13 +1267,13 @@ public class BuildIR {
       return aan;
     } else if (isNode(pn,"cast1")) {
       try {
-       CastNode cn=new CastNode(parseTypeDescriptor(pn.getChild("type")),parseExpression(pn.getChild("exp").getFirstChild()));
-       cn.setNumLine(pn.getLine());
-       return cn;
+        CastNode cn=new CastNode(parseTypeDescriptor(pn.getChild("type")),parseExpression(pn.getChild("exp").getFirstChild()));
+        cn.setNumLine(pn.getLine());
+        return cn;
       } catch (Exception e) {
-       System.out.println(pn.PPrint(1,true));
-       e.printStackTrace();
-       throw new Error();
+        System.out.println(pn.PPrint(1,true));
+        e.printStackTrace();
+        throw new Error();
       }
     } else if (isNode(pn,"cast2")) {
       CastNode cn=new CastNode(parseExpression(pn.getChild("type").getFirstChild()),parseExpression(pn.getChild("exp").getFirstChild()));
@@ -1271,7 +1433,7 @@ public class BuildIR {
       MethodInvokeNode min=new MethodInvokeNode(nd);
       min.setNumLine(sin.getLine());
       for(int i=0; i<args.size(); i++) {
-       min.addArgument((ExpressionNode)args.get(i));
+        min.addArgument((ExpressionNode)args.get(i));
       }
       BlockExpressionNode ben=new BlockExpressionNode(min);
       bn.addFirstBlockStatement(ben);
@@ -1283,7 +1445,7 @@ public class BuildIR {
       MethodInvokeNode min=new MethodInvokeNode(nd);
       min.setNumLine(eci.getLine());
       for(int i=0; i<args.size(); i++) {
-       min.addArgument((ExpressionNode)args.get(i));
+        min.addArgument((ExpressionNode)args.get(i));
       }
       BlockExpressionNode ben=new BlockExpressionNode(min);
       ben.setNumLine(eci.getLine());
@@ -1320,8 +1482,8 @@ public class BuildIR {
     } else {
       BlockNode obn = state.getMethodBody(md);
       for(int i = 0; i < bn.size(); i++) {
-       BlockStatementNode bsn = bn.get(i);
-       obn.addBlockStatement(bsn);
+        BlockStatementNode bsn = bn.get(i);
+        obn.addBlockStatement(bsn);
       }
       state.addTreeCode(md, obn);
       bn = null;
@@ -1342,21 +1504,25 @@ public class BuildIR {
     for(int i=0; i<pnv.size(); i++) {
       Vector bsv=parseBlockStatement(pnv.elementAt(i));
       for(int j=0; j<bsv.size(); j++) {
-       bn.addBlockStatement((BlockStatementNode)bsv.get(j));
+        bn.addBlockStatement((BlockStatementNode)bsv.get(j));
       }
     }
     return bn;
   }
 
-  public BlockNode parseSingleBlock(ParseNode pn{
+  public BlockNode parseSingleBlock(ParseNode pn, String label){
     BlockNode bn=new BlockNode();
-    Vector bsv=parseBlockStatement(pn);
+    Vector bsv=parseBlockStatement(pn,label);
     for(int j=0; j<bsv.size(); j++) {
       bn.addBlockStatement((BlockStatementNode)bsv.get(j));
     }
     bn.setStyle(BlockNode.NOBRACES);
     return bn;
   }
+  
+  public BlockNode parseSingleBlock(ParseNode pn) {
+    return parseSingleBlock(pn,null);
+  }
 
   public Vector parseSESEBlock(Vector parentbs, ParseNode pn) {
     ParseNodeVector pnv=pn.getChildren();
@@ -1366,8 +1532,12 @@ public class BuildIR {
     }
     return bv;
   }
+  
+  public Vector parseBlockStatement(ParseNode pn){
+    return parseBlockStatement(pn,null);
+  }
 
-  public Vector parseBlockStatement(ParseNode pn) {
+  public Vector parseBlockStatement(ParseNode pn, String label) {
     Vector blockstatements=new Vector();
     if (isNode(pn,"tag_declaration")) {
       String name=pn.getChild("single").getTerminal();
@@ -1379,38 +1549,40 @@ public class BuildIR {
       blockstatements.add(tdn);
     } else if (isNode(pn,"local_variable_declaration")) {
 
-      ParseNode mn=pn.getChild("modifiers");
       TypeDescriptor t=parseTypeDescriptor(pn);
-      if(mn!=null) {
-       Modifiers m=parseModifiersList(mn);
-       assignAnnotationsToType(m, t);
-      }
       ParseNode vn=pn.getChild("variable_declarators_list");
       ParseNodeVector pnv=vn.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode vardecl=pnv.elementAt(i);
+        ParseNode vardecl=pnv.elementAt(i);
 
 
-       ParseNode tmp=vardecl;
-       TypeDescriptor arrayt=t;
+        ParseNode tmp=vardecl;
+        TypeDescriptor arrayt=t;
 
-       while (tmp.getChild("single")==null) {
-         arrayt=arrayt.makeArray(state);
-         tmp=tmp.getChild("array");
-       }
-       String identifier=tmp.getChild("single").getTerminal();
+        while (tmp.getChild("single")==null) {
+          arrayt=arrayt.makeArray(state);
+          tmp=tmp.getChild("array");
+        }
+        String identifier=tmp.getChild("single").getTerminal();
 
-       ParseNode epn=vardecl.getChild("initializer");
+        ParseNode epn=vardecl.getChild("initializer");
 
 
-       ExpressionNode en=null;
-       if (epn!=null)
-         en=parseExpression(epn.getFirstChild());
+        ExpressionNode en=null;
+        if (epn!=null)
+          en=parseExpression(epn.getFirstChild());
 
-       DeclarationNode dn=new DeclarationNode(new VarDescriptor(arrayt, identifier),en);
-       dn.setNumLine(tmp.getLine());
+        DeclarationNode dn=new DeclarationNode(new VarDescriptor(arrayt, identifier),en);
+        dn.setNumLine(tmp.getLine());
+        
+        ParseNode mn=pn.getChild("modifiers");
+        if(mn!=null) {
+          // here, modifers parse node has the list of annotations
+          Modifiers m=parseModifiersList(mn);
+          assignAnnotationsToType(m, arrayt);
+        }
 
-       blockstatements.add(dn);
+        blockstatements.add(dn);
       }
     } else if (isNode(pn,"nop")) {
       /* Do Nothing */
@@ -1435,32 +1607,32 @@ public class BuildIR {
       // TODO add version for normal Java later
       ParseNodeVector pnv=pn.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode sblockdecl=pnv.elementAt(i);
-
-       if(isNode(sblockdecl, "switch_block")) {
-         ParseNode lpn=sblockdecl.getChild("switch_labels").getChild("switch_label_list");
-         ParseNodeVector labelv=lpn.getChildren();
-         Vector<SwitchLabelNode> slv = new Vector<SwitchLabelNode>();
-         for(int j=0; j<labelv.size(); j++) {
-           ParseNode labeldecl=labelv.elementAt(j);
-           if(isNode(labeldecl, "switch_label")) {
-             SwitchLabelNode sln=new SwitchLabelNode(parseExpression(labeldecl.getChild("constant_expression").getFirstChild()), false);
-             sln.setNumLine(labeldecl.getLine());
-             slv.addElement(sln);
-           } else if(isNode(labeldecl, "default_switch_label")) {
-             SwitchLabelNode sln=new SwitchLabelNode(null, true);
-             sln.setNumLine(labeldecl.getLine());
-             slv.addElement(sln);
-           }
-         }
-
-         SwitchBlockNode sbn=new SwitchBlockNode(slv,
-                                                 parseSingleBlock(sblockdecl.getChild("switch_statements").getFirstChild()));
-         sbn.setNumLine(sblockdecl.getLine());
-
-         blockstatements.add(sbn);
-
-       }
+        ParseNode sblockdecl=pnv.elementAt(i);
+
+        if(isNode(sblockdecl, "switch_block")) {
+          ParseNode lpn=sblockdecl.getChild("switch_labels").getChild("switch_label_list");
+          ParseNodeVector labelv=lpn.getChildren();
+          Vector<SwitchLabelNode> slv = new Vector<SwitchLabelNode>();
+          for(int j=0; j<labelv.size(); j++) {
+            ParseNode labeldecl=labelv.elementAt(j);
+            if(isNode(labeldecl, "switch_label")) {
+              SwitchLabelNode sln=new SwitchLabelNode(parseExpression(labeldecl.getChild("constant_expression").getFirstChild()), false);
+              sln.setNumLine(labeldecl.getLine());
+              slv.addElement(sln);
+            } else if(isNode(labeldecl, "default_switch_label")) {
+              SwitchLabelNode sln=new SwitchLabelNode(null, true);
+              sln.setNumLine(labeldecl.getLine());
+              slv.addElement(sln);
+            }
+          }
+
+          SwitchBlockNode sbn=new SwitchBlockNode(slv,
+                                                  parseSingleBlock(sblockdecl.getChild("switch_statements").getFirstChild()));
+          sbn.setNumLine(sblockdecl.getLine());
+
+          blockstatements.add(sbn);
+
+        }
       }
     } else if (isNode(pn, "trycatchstatement")) {
       // TODO add version for normal Java later
@@ -1472,9 +1644,9 @@ public class BuildIR {
 
       ParseNode fbk = pn.getChild("finallyblock");
       if(fbk != null) {
-       ParseNode fpn = fbk.getFirstChild();
-       BlockNode fbn=parseBlockHelper(fpn);
-       blockstatements.add(new SubBlockNode(fbn));
+        ParseNode fpn = fbk.getFirstChild();
+        BlockNode fbn=parseBlockHelper(fpn);
+        blockstatements.add(new SubBlockNode(fbn));
       }
     } else if (isNode(pn, "throwstatement")) {
       // TODO Simply return here
@@ -1482,10 +1654,10 @@ public class BuildIR {
     } else if (isNode(pn,"taskexit")) {
       Vector vfe=null;
       if (pn.getChild("flag_effects_list")!=null)
-       vfe=parseFlags(pn.getChild("flag_effects_list"));
+        vfe=parseFlags(pn.getChild("flag_effects_list"));
       Vector ccs=null;
       if (pn.getChild("cons_checks")!=null)
-       ccs=parseChecks(pn.getChild("cons_checks"));
+        ccs=parseChecks(pn.getChild("cons_checks"));
       TaskExitNode ten=new TaskExitNode(vfe, ccs, this.m_taskexitnum++);
       ten.setNumLine(pn.getLine());
       blockstatements.add(ten);
@@ -1502,12 +1674,12 @@ public class BuildIR {
       blockstatements.add(sn);
     } else if (isNode(pn,"return")) {
       if (isEmpty(pn.getTerminal()))
-       blockstatements.add(new ReturnNode());
+        blockstatements.add(new ReturnNode());
       else {
-       ExpressionNode en=parseExpression(pn.getFirstChild());
-       ReturnNode rn=new ReturnNode(en);
-       rn.setNumLine(pn.getLine());
-       blockstatements.add(rn);
+        ExpressionNode en=parseExpression(pn.getFirstChild());
+        ReturnNode rn=new ReturnNode(en);
+        rn.setNumLine(pn.getLine());
+        blockstatements.add(rn);
       }
     } else if (isNode(pn,"block_statement_list")) {
       BlockNode bn=parseBlockHelper(pn);
@@ -1518,8 +1690,8 @@ public class BuildIR {
       ParseNodeVector pnv=pn.getChildren();
       BlockNode bn=new BlockNode();
       for(int i=0; i<pnv.size(); i++) {
-       ExpressionNode en=parseExpression(pnv.elementAt(i));
-       blockstatements.add(new BlockExpressionNode(en));
+        ExpressionNode en=parseExpression(pnv.elementAt(i));
+        blockstatements.add(new BlockExpressionNode(en));
       }
       bn.setStyle(BlockNode.EXPRLIST);
     } else if (isNode(pn,"forstatement")) {
@@ -1528,33 +1700,33 @@ public class BuildIR {
       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
       if(condition == null) {
-       // no condition clause, make a 'true' expression as the condition
-       condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
+        // no condition clause, make a 'true' expression as the condition
+        condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
       }
-      LoopNode ln=new LoopNode(init,condition,update,body);
+      LoopNode ln=new LoopNode(init,condition,update,body,label);
       ln.setNumLine(pn.getLine());
       blockstatements.add(ln);
     } else if (isNode(pn,"whilestatement")) {
       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
       if(condition == null) {
-       // no condition clause, make a 'true' expression as the condition
-       condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
+        // no condition clause, make a 'true' expression as the condition
+        condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
       }
-      blockstatements.add(new LoopNode(condition,body,LoopNode.WHILELOOP));
+      blockstatements.add(new LoopNode(condition,body,LoopNode.WHILELOOP,label));
     } else if (isNode(pn,"dowhilestatement")) {
       ExpressionNode condition=parseExpression(pn.getChild("condition").getFirstChild());
       BlockNode body=parseSingleBlock(pn.getChild("statement").getFirstChild());
       if(condition == null) {
-       // no condition clause, make a 'true' expression as the condition
-       condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
+        // no condition clause, make a 'true' expression as the condition
+        condition = (ExpressionNode) new LiteralNode("boolean", new Boolean(true));
       }
-      blockstatements.add(new LoopNode(condition,body,LoopNode.DOWHILELOOP));
+      blockstatements.add(new LoopNode(condition,body,LoopNode.DOWHILELOOP,label));
     } else if (isNode(pn,"sese")) {
       ParseNode pnID=pn.getChild("identifier");
       String stID=null;
       if( pnID != null ) {
-       stID=pnID.getFirstChild().getTerminal();
+        stID=pnID.getFirstChild().getTerminal();
       }
       SESENode start=new SESENode(stID);
       start.setNumLine(pn.getLine());
@@ -1575,14 +1747,18 @@ public class BuildIR {
       ParseNode idopt_pn=pn.getChild("identifier_opt");
       ParseNode name_pn=idopt_pn.getChild("name");
       // name_pn.getTerminal() gives you the label
+
     } else if (isNode(pn,"genreach")) {
       String graphName = pn.getChild("graphName").getTerminal();
       blockstatements.add(new GenReachNode(graphName) );
 
+    } else if (isNode(pn,"gen_def_reach")) {
+      String outputName = pn.getChild("outputName").getTerminal();
+      blockstatements.add(new GenDefReachNode(outputName) );
+
     } else if(isNode(pn,"labeledstatement")) {
-      String label = pn.getChild("name").getTerminal();
-      BlockNode bn=parseSingleBlock(pn.getChild("statement").getFirstChild());
-      bn.setLabel(label);
+      String labeledstatement = pn.getChild("name").getTerminal();
+      BlockNode bn=parseSingleBlock(pn.getChild("statement").getFirstChild(),labeledstatement);
       blockstatements.add(new SubBlockNode(bn));
     } else {
       System.out.println("---------------");
@@ -1621,25 +1797,25 @@ public class BuildIR {
       ParseNode paramn=pnv.elementAt(i);
 
       if (isNode(paramn, "tag_parameter")) {
-       String paramname=paramn.getChild("single").getTerminal();
-       TypeDescriptor type=new TypeDescriptor(TypeDescriptor.TAG);
-       md.addTagParameter(type, paramname);
+        String paramname=paramn.getChild("single").getTerminal();
+        TypeDescriptor type=new TypeDescriptor(TypeDescriptor.TAG);
+        md.addTagParameter(type, paramname);
       } else  {
 
-       TypeDescriptor type=parseTypeDescriptor(paramn);
+        TypeDescriptor type=parseTypeDescriptor(paramn);
 
-       ParseNode tmp=paramn;
-       while (tmp.getChild("single")==null) {
-         type=type.makeArray(state);
-         tmp=tmp.getChild("array");
-       }
-       String paramname=tmp.getChild("single").getTerminal();
+        ParseNode tmp=paramn;
+        while (tmp.getChild("single")==null) {
+          type=type.makeArray(state);
+          tmp=tmp.getChild("array");
+        }
+        String paramname=tmp.getChild("single").getTerminal();
 
-       md.addParameter(type, paramname);
-       if(isNode(paramn, "annotation_parameter")) {
-         ParseNode bodynode=paramn.getChild("annotation_body");
-         parseParameterAnnotation(bodynode,type);
-       }
+        md.addParameter(type, paramname);
+        if(isNode(paramn, "annotation_parameter")) {
+          ParseNode listnode=paramn.getChild("annotation_list");
+          parseParameterAnnotation(listnode,type);
+        }
 
       }
     }
@@ -1651,34 +1827,34 @@ public class BuildIR {
     if (modlist!=null) {
       ParseNodeVector pnv=modlist.getChildren();
       for(int i=0; i<pnv.size(); i++) {
-       ParseNode modn=pnv.elementAt(i);
-       if (isNode(modn,"public"))
-         m.addModifier(Modifiers.PUBLIC);
-       else if (isNode(modn,"protected"))
-         m.addModifier(Modifiers.PROTECTED);
-       else if (isNode(modn,"private"))
-         m.addModifier(Modifiers.PRIVATE);
-       else if (isNode(modn,"static"))
-         m.addModifier(Modifiers.STATIC);
-       else if (isNode(modn,"final"))
-         m.addModifier(Modifiers.FINAL);
-       else if (isNode(modn,"native"))
-         m.addModifier(Modifiers.NATIVE);
-       else if (isNode(modn,"synchronized"))
-         m.addModifier(Modifiers.SYNCHRONIZED);
-       else if (isNode(modn,"atomic"))
-         m.addModifier(Modifiers.ATOMIC);
-       else if (isNode(modn,"abstract"))
-         m.addModifier(Modifiers.ABSTRACT);
-       else if (isNode(modn,"volatile"))
-         m.addModifier(Modifiers.VOLATILE);
-       else if (isNode(modn,"transient"))
-         m.addModifier(Modifiers.TRANSIENT);
-       else if(isNode(modn,"annotation_list"))
-         parseAnnotationList(modn,m);
-       else {
-         throw new Error("Unrecognized Modifier:"+modn.getLabel());
-       }
+        ParseNode modn=pnv.elementAt(i);
+        if (isNode(modn,"public"))
+          m.addModifier(Modifiers.PUBLIC);
+        else if (isNode(modn,"protected"))
+          m.addModifier(Modifiers.PROTECTED);
+        else if (isNode(modn,"private"))
+          m.addModifier(Modifiers.PRIVATE);
+        else if (isNode(modn,"static"))
+          m.addModifier(Modifiers.STATIC);
+        else if (isNode(modn,"final"))
+          m.addModifier(Modifiers.FINAL);
+        else if (isNode(modn,"native"))
+          m.addModifier(Modifiers.NATIVE);
+        else if (isNode(modn,"synchronized"))
+          m.addModifier(Modifiers.SYNCHRONIZED);
+        else if (isNode(modn,"atomic"))
+          m.addModifier(Modifiers.ATOMIC);
+        else if (isNode(modn,"abstract"))
+          m.addModifier(Modifiers.ABSTRACT);
+        else if (isNode(modn,"volatile"))
+          m.addModifier(Modifiers.VOLATILE);
+        else if (isNode(modn,"transient"))
+          m.addModifier(Modifiers.TRANSIENT);
+        else if(isNode(modn,"annotation_list"))
+          parseAnnotationList(modn,m);
+        else {
+          throw new Error("Unrecognized Modifier:"+modn.getLabel());
+        }
       }
     }
     return m;
@@ -1689,28 +1865,34 @@ public class BuildIR {
     for (int i = 0; i < pnv.size(); i++) {
       ParseNode body_list = pnv.elementAt(i);
       if (isNode(body_list, "annotation_body")) {
-       ParseNode body_node = body_list.getFirstChild();
-       if (isNode(body_node, "marker_annotation")) {
-         m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
-       } else if (isNode(body_node, "single_annotation")) {
-         m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
-                                                  body_node.getChild("element_value").getTerminal()));
-       } else if (isNode(body_node, "normal_annotation")) {
-         throw new Error("Annotation with multiple data members is not supported yet.");
-       }
+        ParseNode body_node = body_list.getFirstChild();
+        if (isNode(body_node, "marker_annotation")) {
+          m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
+        } else if (isNode(body_node, "single_annotation")) {
+          m.addAnnotation(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
+                                                   body_node.getChild("element_value").getTerminal()));
+        } else if (isNode(body_node, "normal_annotation")) {
+          throw new Error("Annotation with multiple data members is not supported yet.");
+        }
       }
     }
   }
 
-  private void parseParameterAnnotation(ParseNode body_list,TypeDescriptor type) {
-    ParseNode body_node = body_list.getFirstChild();
-    if (isNode(body_node, "marker_annotation")) {
-      type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
-    } else if (isNode(body_node, "single_annotation")) {
-      type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
-                                                        body_node.getChild("element_value").getTerminal()));
-    } else if (isNode(body_node, "normal_annotation")) {
-      throw new Error("Annotation with multiple data members is not supported yet.");
+  private void parseParameterAnnotation(ParseNode pn,TypeDescriptor type) {
+    ParseNodeVector pnv = pn.getChildren();
+    for (int i = 0; i < pnv.size(); i++) {
+      ParseNode body_list = pnv.elementAt(i);
+      if (isNode(body_list, "annotation_body")) {
+        ParseNode body_node = body_list.getFirstChild();
+        if (isNode(body_node, "marker_annotation")) {
+          type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal()));
+        } else if (isNode(body_node, "single_annotation")) {
+          type.addAnnotationMarker(new AnnotationDescriptor(body_node.getChild("name").getTerminal(),
+                                                   body_node.getChild("element_value").getTerminal()));
+        } else if (isNode(body_node, "normal_annotation")) {
+          throw new Error("Annotation with multiple data members is not supported yet.");
+        }
+      }
     }
   }