]> source.dussan.org Git - aspectj.git/commitdiff
additional template method
authorjhugunin <jhugunin>
Wed, 22 Jan 2003 01:06:59 +0000 (01:06 +0000)
committerjhugunin <jhugunin>
Wed, 22 Jan 2003 01:06:59 +0000 (01:06 +0000)
org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Clinit.java

index 3ce230c5c90c68e0e17dae16961ed71150591dea..8913672c7de0c6781b320057e82536db2c043b83 100644 (file)
@@ -172,6 +172,9 @@ public class Clinit extends AbstractMethodDeclaration {
                                }
                        }
                }
+               
+               generatePostSyntheticCode(classScope, codeStream);
+               
                if (codeStream.position == 0) {
                        // do not need to output a Clinit if no bytecodes
                        // so we reset the offset inside the byte array contents.
@@ -212,6 +215,12 @@ public class Clinit extends AbstractMethodDeclaration {
                        codeStream.putstatic(this.assertionSyntheticFieldBinding);
                }
        }
+       
+       protected void generatePostSyntheticCode(
+               ClassScope classScope,
+               CodeStream codeStream) {
+               }
+
 
        public boolean isClinit() {