001 /* 002 * Copyright 2010-2015 JetBrains s.r.o. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017 package org.jetbrains.kotlin.resolve.calls.context; 018 019 import org.jetbrains.annotations.NotNull; 020 import org.jetbrains.kotlin.resolve.BindingTrace; 021 import org.jetbrains.kotlin.resolve.StatementFilter; 022 import org.jetbrains.kotlin.resolve.calls.checkers.CallChecker; 023 import org.jetbrains.kotlin.resolve.calls.smartcasts.DataFlowInfo; 024 import org.jetbrains.kotlin.resolve.scopes.JetScope; 025 import org.jetbrains.kotlin.types.JetType; 026 027 public class SimpleResolutionContext extends ResolutionContext<SimpleResolutionContext> { 028 private SimpleResolutionContext( 029 @NotNull BindingTrace trace, 030 @NotNull JetScope scope, 031 @NotNull JetType expectedType, 032 @NotNull DataFlowInfo dataFlowInfo, 033 @NotNull ContextDependency contextDependency, 034 @NotNull ResolutionResultsCache resolutionResultsCache, 035 @NotNull CallChecker callChecker, 036 @NotNull StatementFilter statementFilter, 037 boolean isAnnotationContext, 038 boolean collectAllCandidates 039 ) { 040 super(trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, callChecker, statementFilter, 041 isAnnotationContext, collectAllCandidates); 042 } 043 044 public SimpleResolutionContext( 045 @NotNull BindingTrace trace, 046 @NotNull JetScope scope, 047 @NotNull JetType expectedType, 048 @NotNull DataFlowInfo dataFlowInfo, 049 @NotNull ContextDependency contextDependency, 050 @NotNull CallChecker callChecker, 051 @NotNull StatementFilter statementFilter 052 ) { 053 this(trace, scope, expectedType, dataFlowInfo, contextDependency, new ResolutionResultsCacheImpl(), 054 callChecker, statementFilter, false, false); 055 } 056 057 @Override 058 protected SimpleResolutionContext create( 059 @NotNull BindingTrace trace, 060 @NotNull JetScope scope, 061 @NotNull DataFlowInfo dataFlowInfo, 062 @NotNull JetType expectedType, 063 @NotNull ContextDependency contextDependency, 064 @NotNull ResolutionResultsCache resolutionResultsCache, 065 @NotNull StatementFilter statementFilter, 066 boolean collectAllCandidates 067 ) { 068 return new SimpleResolutionContext( 069 trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, callChecker, statementFilter, 070 isAnnotationContext, collectAllCandidates); 071 } 072 }