org.eclipse.jdt.internal.compiler.parser.Parser.consumeStatementCatch()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(6.1k)|赞(0)|评价(0)|浏览(157)

本文整理了Java中org.eclipse.jdt.internal.compiler.parser.Parser.consumeStatementCatch()方法的一些代码示例,展示了Parser.consumeStatementCatch()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Parser.consumeStatementCatch()方法的具体详情如下:
包路径:org.eclipse.jdt.internal.compiler.parser.Parser
类名称:Parser
方法名:consumeStatementCatch

Parser.consumeStatementCatch介绍

暂无

代码示例

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. /* recovery */
  4. recordLastStatementIfNeeded();
  5. }
  6. protected void consumeStatementContinue() {

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. @Override
  2. protected void consumeStatementCatch() {
  3. super.consumeStatementCatch();
  4. /* recovery */
  5. recordLastStatementIfNeeded();
  6. }
  7. @Override

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. /* recovery */
  4. recordLastStatementIfNeeded();
  5. }
  6. protected void consumeStatementContinue() {

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  4. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  5. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  6. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  7. }
  8. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. /* recovery */
  4. recordLastStatementIfNeeded();
  5. }
  6. protected void consumeStatementContinue() {

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. /* recovery */
  4. recordLastStatementIfNeeded();
  5. }
  6. protected void consumeStatementContinue() {

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. /* recovery */
  4. recordLastStatementIfNeeded();
  5. }
  6. protected void consumeStatementContinue() {

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  4. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  5. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  6. if (localDeclaration.type instanceof UnionTypeReference) {
  7. TypeReference[] refs = ((UnionTypeReference)localDeclaration.type).typeReferences;
  8. for (int i = 0, len = refs.length; i < len; i++) {
  9. this.patternLocator.match(refs[i], this.nodeSet);
  10. }
  11. } else {
  12. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  13. }
  14. }
  15. }

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. @Override
  2. protected void consumeStatementCatch() {
  3. super.consumeStatementCatch();
  4. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  5. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  6. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  7. if (localDeclaration.type instanceof UnionTypeReference) {
  8. TypeReference[] refs = ((UnionTypeReference)localDeclaration.type).typeReferences;
  9. for (int i = 0, len = refs.length; i < len; i++) {
  10. this.patternLocator.match(refs[i], this.nodeSet);
  11. }
  12. } else {
  13. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  14. }
  15. }
  16. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  4. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  5. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  6. if (localDeclaration.type instanceof UnionTypeReference) {
  7. TypeReference[] refs = ((UnionTypeReference)localDeclaration.type).typeReferences;
  8. for (int i = 0, len = refs.length; i < len; i++) {
  9. this.patternLocator.match(refs[i], this.nodeSet);
  10. }
  11. } else {
  12. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  13. }
  14. }
  15. }

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  4. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  5. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  6. if (localDeclaration.type instanceof UnionTypeReference) {
  7. TypeReference[] refs = ((UnionTypeReference)localDeclaration.type).typeReferences;
  8. for (int i = 0, len = refs.length; i < len; i++) {
  9. this.patternLocator.match(refs[i], this.nodeSet);
  10. }
  11. } else {
  12. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  13. }
  14. }
  15. }

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. protected void consumeStatementCatch() {
  2. super.consumeStatementCatch();
  3. if ((this.patternFineGrain & IJavaSearchConstants.CATCH_TYPE_REFERENCE) != 0) {
  4. // when no fine grain flag is set, type reference match is evaluated in getTypeReference(int) method
  5. LocalDeclaration localDeclaration = (LocalDeclaration) this.astStack[this.astPtr-1];
  6. if (localDeclaration.type instanceof UnionTypeReference) {
  7. TypeReference[] refs = ((UnionTypeReference)localDeclaration.type).typeReferences;
  8. for (int i = 0, len = refs.length; i < len; i++) {
  9. this.patternLocator.match(refs[i], this.nodeSet);
  10. }
  11. } else {
  12. this.patternLocator.match(localDeclaration.type, this.nodeSet);
  13. }
  14. }
  15. }

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.eclipse.jetty.orbit/org.eclipse.jdt.core

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.eclipse.jdt.core.compiler/ecj

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.eclipse.scout.sdk.deps/ecj

  1. consumeStatementCatch() ;
  2. break;

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. consumeStatementCatch() ;
  2. break;

相关文章

Parser类方法