001 /*
002 * Copyright 2010-2013 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.jet.lang.resolve.calls.context;
018
019 import org.jetbrains.annotations.NotNull;
020 import org.jetbrains.jet.lang.resolve.BindingTrace;
021 import org.jetbrains.jet.lang.resolve.calls.CallResolverExtension;
022 import org.jetbrains.jet.lang.resolve.calls.autocasts.DataFlowInfo;
023 import org.jetbrains.jet.lang.resolve.scopes.JetScope;
024 import org.jetbrains.jet.lang.types.JetType;
025
026 public class SimpleResolutionContext extends ResolutionContext<SimpleResolutionContext> {
027 private SimpleResolutionContext(
028 @NotNull BindingTrace trace,
029 @NotNull JetScope scope,
030 @NotNull JetType expectedType,
031 @NotNull DataFlowInfo dataFlowInfo,
032 @NotNull ContextDependency contextDependency,
033 @NotNull ResolutionResultsCache resolutionResultsCache,
034 @NotNull CallResolverExtension callResolverExtension,
035 boolean isAnnotationContext,
036 boolean collectAllCandidates
037 ) {
038 super(trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, callResolverExtension,
039 isAnnotationContext, collectAllCandidates);
040 }
041
042 public SimpleResolutionContext(
043 @NotNull BindingTrace trace,
044 @NotNull JetScope scope,
045 @NotNull JetType expectedType,
046 @NotNull DataFlowInfo dataFlowInfo,
047 @NotNull ContextDependency contextDependency,
048 @NotNull CallResolverExtension callResolverExtension
049 ) {
050 this(trace, scope, expectedType, dataFlowInfo, contextDependency, new ResolutionResultsCacheImpl(),
051 callResolverExtension, false, false);
052 }
053
054 @Override
055 protected SimpleResolutionContext create(
056 @NotNull BindingTrace trace,
057 @NotNull JetScope scope,
058 @NotNull DataFlowInfo dataFlowInfo,
059 @NotNull JetType expectedType,
060 @NotNull ContextDependency contextDependency,
061 @NotNull ResolutionResultsCache resolutionResultsCache,
062 boolean collectAllCandidates
063 ) {
064 return new SimpleResolutionContext(
065 trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, callResolverExtension,
066 isAnnotationContext, collectAllCandidates);
067 }
068 }