Package org.aspectj.org.eclipse.jdt.internal.compiler.parser

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.parser.RecoveredMethod


  /* recovery in method body */
  lastCheckPoint = 0;

  RecoveredElement element = null;
  if (referenceContext instanceof AbstractMethodDeclaration){
    element = new RecoveredMethod((AbstractMethodDeclaration) referenceContext, null, 0, this);
    lastCheckPoint = ((AbstractMethodDeclaration) referenceContext).bodyStart;
  } else {
    /* Initializer bodies are parsed in the context of the type declaration, we must thus search it inside */
    if (referenceContext instanceof TypeDeclaration){
      TypeDeclaration type = (TypeDeclaration) referenceContext;
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.parser.RecoveredMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.