/* * Copyright 2010-2016 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jetbrains.kotlin.types.expressions; import kotlin.jvm.functions.Function1; import org.jetbrains.annotations.NotNull; import org.jetbrains.kotlin.psi.KtExpression; import org.jetbrains.kotlin.resolve.BindingTrace; import org.jetbrains.kotlin.resolve.StatementFilter; import org.jetbrains.kotlin.resolve.calls.context.*; import org.jetbrains.kotlin.resolve.calls.smartcasts.DataFlowInfo; import org.jetbrains.kotlin.resolve.scopes.LexicalScope; import org.jetbrains.kotlin.types.KotlinType; public class ExpressionTypingContext extends ResolutionContext<ExpressionTypingContext> { @NotNull public static ExpressionTypingContext newContext( @NotNull BindingTrace trace, @NotNull LexicalScope scope, @NotNull DataFlowInfo dataFlowInfo, @NotNull KotlinType expectedType ) { return newContext(trace, scope, dataFlowInfo, expectedType, ContextDependency.INDEPENDENT, StatementFilter.NONE); } @NotNull public static ExpressionTypingContext newContext( @NotNull BindingTrace trace, @NotNull LexicalScope scope, @NotNull DataFlowInfo dataFlowInfo, @NotNull KotlinType expectedType, @NotNull ContextDependency contextDependency, @NotNull StatementFilter statementFilter ) { return newContext(trace, scope, dataFlowInfo, expectedType, contextDependency, new ResolutionResultsCacheImpl(), statementFilter, false); } @NotNull public static ExpressionTypingContext newContext(@NotNull ResolutionContext context) { return new ExpressionTypingContext( context.trace, context.scope, context.dataFlowInfo, context.expectedType, context.contextDependency, context.resolutionResultsCache, context.statementFilter, context.isAnnotationContext, context.isDebuggerContext, context.collectAllCandidates, context.callPosition, context.expressionContextProvider); } @NotNull public static ExpressionTypingContext newContext(@NotNull ResolutionContext context, boolean isDebuggerContext) { return new ExpressionTypingContext( context.trace, context.scope, context.dataFlowInfo, context.expectedType, context.contextDependency, context.resolutionResultsCache, context.statementFilter, context.isAnnotationContext, isDebuggerContext, context.collectAllCandidates, context.callPosition, context.expressionContextProvider); } @NotNull public static ExpressionTypingContext newContext( @NotNull BindingTrace trace, @NotNull LexicalScope scope, @NotNull DataFlowInfo dataFlowInfo, @NotNull KotlinType expectedType, @NotNull ContextDependency contextDependency, @NotNull ResolutionResultsCache resolutionResultsCache, @NotNull StatementFilter statementFilter, boolean isAnnotationContext ) { return new ExpressionTypingContext( trace, scope, dataFlowInfo, expectedType, contextDependency, resolutionResultsCache, statementFilter, isAnnotationContext, false, false, CallPosition.Unknown.INSTANCE, DEFAULT_EXPRESSION_CONTEXT_PROVIDER); } private ExpressionTypingContext( @NotNull BindingTrace trace, @NotNull LexicalScope scope, @NotNull DataFlowInfo dataFlowInfo, @NotNull KotlinType expectedType, @NotNull ContextDependency contextDependency, @NotNull ResolutionResultsCache resolutionResultsCache, @NotNull StatementFilter statementFilter, boolean isAnnotationContext, boolean isDebuggerContext, boolean collectAllCandidates, @NotNull CallPosition callPosition, @NotNull Function1<KtExpression, KtExpression> expressionContextProvider ) { super(trace, scope, expectedType, dataFlowInfo, contextDependency, resolutionResultsCache, statementFilter, isAnnotationContext, isDebuggerContext, collectAllCandidates, callPosition, expressionContextProvider); } @Override protected ExpressionTypingContext create( @NotNull BindingTrace trace, @NotNull LexicalScope scope, @NotNull DataFlowInfo dataFlowInfo, @NotNull KotlinType expectedType, @NotNull ContextDependency contextDependency, @NotNull ResolutionResultsCache resolutionResultsCache, @NotNull StatementFilter statementFilter, boolean collectAllCandidates, @NotNull CallPosition callPosition, @NotNull Function1<KtExpression, KtExpression> expressionContextProvider ) { return new ExpressionTypingContext(trace, scope, dataFlowInfo, expectedType, contextDependency, resolutionResultsCache, statementFilter, isAnnotationContext, isDebuggerContext, collectAllCandidates, callPosition, expressionContextProvider); } }