소스 검색

additional template method

tags/V_1_1_b5
jhugunin 21 년 전
부모
커밋
c5b90daa74
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Clinit.java

+ 9
- 0
org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Clinit.java 파일 보기

@@ -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() {


Loading…
취소
저장