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 import org.jetbrains.jet.lang.types.expressions.LabelResolver;
026
027 public class SimpleResolutionContext extends ResolutionContext<SimpleResolutionContext> {
028 public 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 LabelResolver labelResolver,
036 @NotNull CallResolverExtension callResolverExtension,
037 boolean isAnnotationContext
038 ) {
039 super(trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, labelResolver, callResolverExtension,
040 isAnnotationContext);
041 }
042
043 @Override
044 protected SimpleResolutionContext create(
045 @NotNull BindingTrace trace,
046 @NotNull JetScope scope,
047 @NotNull DataFlowInfo dataFlowInfo,
048 @NotNull JetType expectedType,
049 @NotNull ContextDependency contextDependency,
050 @NotNull ResolutionResultsCache resolutionResultsCache,
051 @NotNull LabelResolver labelResolver
052 ) {
053 return new SimpleResolutionContext(
054 trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, labelResolver, callResolverExtension,
055 isAnnotationContext);
056 }
057
058 @Override
059 protected SimpleResolutionContext self() {
060 return this;
061 }
062 }