]> source.dussan.org Git - aspectj.git/commitdiff
Promoted visibility of dump method for use from test cases.
authoraclement <aclement>
Thu, 20 Jan 2005 09:22:26 +0000 (09:22 +0000)
committeraclement <aclement>
Thu, 20 Jan 2005 09:22:26 +0000 (09:22 +0000)
asm/src/org/aspectj/asm/AsmManager.java

index 0177bb4c259c5134a86ad7b40399064efe80b68a..f7c81df06aec8ff65c192c8a2acfd66e3004ffd5 100644 (file)
@@ -386,7 +386,7 @@ public class AsmManager {
        }
        
 
-       private void dumptree(Writer w,IProgramElement node,int indent) throws IOException {
+       public static void dumptree(Writer w,IProgramElement node,int indent) throws IOException {
                for (int i =0 ;i<indent;i++) w.write(" ");
                w.write(node+"  ["+(node==null?"null":node.getKind().toString())+"]\n");
                if (node!=null)