org.eclipse.jdt.internal.compiler.lookup.BlockScope.methodScope()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(10.6k)|赞(0)|评价(0)|浏览(127)

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

BlockScope.methodScope介绍

暂无

代码示例

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

private boolean methodHasMissingSwitchDefault() {
  MethodScope methodScope = null;
  if (this.referenceContext instanceof Block) {
    methodScope = ((Block)this.referenceContext).scope.methodScope();
  } else if (this.referenceContext instanceof AbstractMethodDeclaration) {
    methodScope = ((AbstractMethodDeclaration)this.referenceContext).scope;
  }
  return methodScope != null && methodScope.hasMissingSwitchDefault;	
}
public void unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult) {

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

private boolean methodHasMissingSwitchDefault() {
  MethodScope methodScope = null;
  if (this.referenceContext instanceof Block) {
    methodScope = ((Block)this.referenceContext).scope.methodScope();
  } else if (this.referenceContext instanceof AbstractMethodDeclaration) {
    methodScope = ((AbstractMethodDeclaration)this.referenceContext).scope;
  }
  return methodScope != null && methodScope.hasMissingSwitchDefault;	
}
public void unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult) {

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

private boolean methodHasMissingSwitchDefault() {
  MethodScope methodScope = null;
  if (this.referenceContext instanceof Block) {
    methodScope = ((Block)this.referenceContext).scope.methodScope();
  } else if (this.referenceContext instanceof AbstractMethodDeclaration) {
    methodScope = ((AbstractMethodDeclaration)this.referenceContext).scope;
  }
  return methodScope != null && methodScope.hasMissingSwitchDefault;	
}
public void unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult) {

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

private boolean methodHasMissingSwitchDefault() {
  MethodScope methodScope = null;
  if (this.referenceContext instanceof Block) {
    methodScope = ((Block)this.referenceContext).scope.methodScope();
  } else if (this.referenceContext instanceof AbstractMethodDeclaration) {
    methodScope = ((AbstractMethodDeclaration)this.referenceContext).scope;
  }
  return methodScope != null && methodScope.hasMissingSwitchDefault;	
}
public void unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult) {

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

private boolean methodHasMissingSwitchDefault() {
  MethodScope methodScope = null;
  if (this.referenceContext instanceof Block) {
    methodScope = ((Block)this.referenceContext).scope.methodScope();
  } else if (this.referenceContext instanceof AbstractMethodDeclaration) {
    methodScope = ((AbstractMethodDeclaration)this.referenceContext).scope;
  }
  return methodScope != null && methodScope.hasMissingSwitchDefault;	
}
public void unmatchedBracket(int position, ReferenceContext context, CompilationResult compilationResult) {

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

private FakedTrackingVariable(BlockScope scope, ASTNode location, FlowInfo flowInfo, int nullStatus) {
  super(UNASSIGNED_CLOSEABLE_NAME, location.sourceStart, location.sourceEnd);
  this.type = new SingleTypeReference(
      TypeConstants.OBJECT,
      ((long)this.sourceStart <<32)+this.sourceEnd);
  this.methodScope = scope.methodScope();
  this.originalBinding = null;
  resolve(scope);
  if (nullStatus != 0)
    flowInfo.markNullStatus(this.binding, nullStatus); // mark that this flow has seen the resource
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private FakedTrackingVariable(BlockScope scope, ASTNode location, FlowInfo flowInfo, int nullStatus) {
  super(UNASSIGNED_CLOSEABLE_NAME, location.sourceStart, location.sourceEnd);
  this.type = new SingleTypeReference(
      TypeConstants.OBJECT,
      ((long)this.sourceStart <<32)+this.sourceEnd);
  this.methodScope = scope.methodScope();
  this.originalBinding = null;
  resolve(scope);
  if (nullStatus != 0)
    flowInfo.markNullStatus(this.binding, nullStatus); // mark that this flow has seen the resource
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

public TypeBinding resolveType(BlockScope scope) {
  this.constant = Constant.NotAConstant;
  if (!isImplicitThis() &&!checkAccess(scope.methodScope())) {
    return null;
  }
  return this.resolvedType = scope.enclosingReceiverType();
}

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

private FakedTrackingVariable(BlockScope scope, ASTNode location, FlowInfo flowInfo, int nullStatus) {
  super(UNASSIGNED_CLOSEABLE_NAME, location.sourceStart, location.sourceEnd);
  this.type = new SingleTypeReference(
      TypeConstants.OBJECT,
      ((long)this.sourceStart <<32)+this.sourceEnd);
  this.methodScope = scope.methodScope();
  this.originalBinding = null;
  resolve(scope);
  if (nullStatus != 0)
    flowInfo.markNullStatus(this.binding, nullStatus); // mark that this flow has seen the resource
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private void recordCallingClose(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Expression closeTarget) {
  FakedTrackingVariable trackingVariable = FakedTrackingVariable.getCloseTrackingVariable(closeTarget, flowInfo, flowContext);
  if (trackingVariable != null) { // null happens if target is not a local variable or not an AutoCloseable
    if (trackingVariable.methodScope == currentScope.methodScope()) {
      trackingVariable.markClose(flowInfo, flowContext);
    } else {
      trackingVariable.markClosedInNestedMethod();
    }
  }
}

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

private FakedTrackingVariable(BlockScope scope, ASTNode location, FlowInfo flowInfo, int nullStatus) {
  super(UNASSIGNED_CLOSEABLE_NAME, location.sourceStart, location.sourceEnd);
  this.type = new SingleTypeReference(
      TypeConstants.OBJECT,
      ((long)this.sourceStart <<32)+this.sourceEnd);
  this.methodScope = scope.methodScope();
  this.originalBinding = null;
  resolve(scope);
  if (nullStatus != 0)
    flowInfo.markNullStatus(this.binding, nullStatus); // mark that this flow has seen the resource
}

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

public TypeBinding resolveType(BlockScope scope) {
  this.constant = Constant.NotAConstant;
  if (!checkAccess(scope.methodScope()))
    return null;
  ReferenceBinding enclosingReceiverType = scope.enclosingReceiverType();
  if (enclosingReceiverType.id == T_JavaLangObject) {
    scope.problemReporter().cannotUseSuperInJavaLangObject(this);
    return null;
  }
  return this.resolvedType = enclosingReceiverType.superclass();
}

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

public TypeBinding resolveType(BlockScope scope) {
  this.constant = Constant.NotAConstant;
  if (!checkAccess(scope.methodScope()))
    return null;
  ReferenceBinding enclosingReceiverType = scope.enclosingReceiverType();
  if (enclosingReceiverType.id == T_JavaLangObject) {
    scope.problemReporter().cannotUseSuperInJavaLangObject(this);
    return null;
  }
  return this.resolvedType = enclosingReceiverType.superclass();
}

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

private boolean shouldGenerateImplicitLambda(BlockScope currentScope) {
  // these cases are either too complicated, impossible to handle or result in significant code duplication 
  return (this.binding.isVarargs() || 
      (isConstructorReference() && this.receiverType.syntheticOuterLocalVariables() != null && currentScope.methodScope().isStatic) ||
      this.expectedType instanceof IntersectionCastTypeBinding || // marker interfaces require alternate meta factory.
      this.expectedType.findSuperTypeOriginatingFrom(currentScope.getJavaIoSerializable()) != null || // serialization support.
      this.requiresBridges()); // bridges.
  // To fix: We should opt for direct code generation wherever possible.
}

相关文章

微信公众号

最新文章

更多

BlockScope类方法