/* * Copyright 2013-2017 consulo.io * * 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 consulo.csharp.lang.psi.impl.source.resolve; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import consulo.annotations.RequiredReadAction; import consulo.csharp.lang.psi.impl.CSharpTypeUtil; import consulo.csharp.lang.psi.impl.source.CSharpConstantExpressionImpl; import consulo.csharp.lang.psi.impl.source.resolve.type.CSharpConstantTypeRef; import consulo.csharp.lang.psi.impl.source.resolve.type.CSharpFastImplicitTypeRef; import consulo.dotnet.resolve.DotNetTypeRef; import consulo.dotnet.resolve.DotNetTypeRefWithCachedResult; import consulo.dotnet.resolve.DotNetTypeResolveResult; import com.intellij.psi.PsiElement; /** * @author VISTALL * @since 31.10.2015 */ public abstract class CSharpConstantBaseTypeRef extends DotNetTypeRefWithCachedResult implements CSharpFastImplicitTypeRef { protected CSharpConstantExpressionImpl myExpression; private DotNetTypeRef myDelegate; public CSharpConstantBaseTypeRef(CSharpConstantExpressionImpl expression, DotNetTypeRef delegate) { myExpression = expression; myDelegate = delegate; } @RequiredReadAction @NotNull @Override protected DotNetTypeResolveResult resolveResult() { return myDelegate.resolve(); } @Nullable @Override @RequiredReadAction public DotNetTypeRef doMirror(@NotNull DotNetTypeRef another, PsiElement scope) { DotNetTypeRef anotherTypeRef = CSharpConstantTypeRef.testNumberConstant(myExpression, getPrefix(), another, scope); if(anotherTypeRef != null) { DotNetTypeRef defaultConstantTypeRef = myExpression.getDefaultConstantTypeRef(); if(defaultConstantTypeRef != null && CSharpTypeUtil.isTypeEqual(anotherTypeRef, defaultConstantTypeRef, myExpression)) { return null; } return anotherTypeRef; } return null; } @RequiredReadAction @NotNull @Override public String toString() { return myDelegate.toString(); } @NotNull @RequiredReadAction protected String getPrefix() { return ""; } @Override public boolean isConversion() { return false; } @Override public boolean equals(Object obj) { return myDelegate.equals(obj); } }