/* * 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.ide.liveTemplates.macro; import java.util.LinkedList; import java.util.List; import org.jetbrains.annotations.NotNull; import consulo.annotations.RequiredReadAction; import consulo.csharp.lang.psi.impl.source.CSharpReferenceExpressionImplUtil; import consulo.csharp.lang.psi.impl.source.resolve.AsPsiElementProcessor; import consulo.csharp.lang.psi.impl.source.resolve.CSharpResolveOptions; import consulo.csharp.lang.psi.impl.source.resolve.CompletionResolveScopeProcessor; import consulo.csharp.lang.psi.impl.source.resolve.ExecuteTarget; import consulo.csharp.lang.psi.impl.source.resolve.SimpleNamedScopeProcessor; import consulo.csharp.lang.psi.impl.source.resolve.StubScopeProcessor; import consulo.csharp.lang.psi.impl.source.resolve.util.CSharpResolveUtil; import consulo.dotnet.psi.DotNetVariable; import com.intellij.openapi.util.Couple; import com.intellij.psi.PsiElement; import com.intellij.psi.ResolveState; /** * @author VISTALL * @since 29.12.14 */ public class CSharpLiveTemplateMacroUtil { @NotNull @RequiredReadAction public static List<DotNetVariable> resolveAllVariables(PsiElement scope) { Couple<PsiElement> resolveLayers = CSharpReferenceExpressionImplUtil.getResolveLayers(scope, false); AsPsiElementProcessor psiElementProcessor = new AsPsiElementProcessor(); StubScopeProcessor processor = new SimpleNamedScopeProcessor(psiElementProcessor, true, ExecuteTarget.LOCAL_VARIABLE_OR_PARAMETER); CSharpResolveUtil.treeWalkUp(processor, scope, scope, resolveLayers.getFirst()); CSharpResolveOptions options = CSharpResolveOptions.build(); options.element(scope); processor = new CompletionResolveScopeProcessor(options, psiElementProcessor, new ExecuteTarget[]{ ExecuteTarget.FIELD, ExecuteTarget.PROPERTY, ExecuteTarget.EVENT }); CSharpResolveUtil.walkChildren(processor, resolveLayers.getSecond(), true, false, ResolveState.initial()); List<DotNetVariable> list = new LinkedList<DotNetVariable>(); for(PsiElement element : psiElementProcessor.getElements()) { if(element instanceof DotNetVariable) { list.add((DotNetVariable) element); } } return list; } }