Package ro.redeul.google.go.lang.psi.utils

Source Code of ro.redeul.google.go.lang.psi.utils.GoPsiScopesUtil

/*
* Copyright 2000-2011 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.
*/

/**
* Created by IntelliJ IDEA.
* User: igork
* Date: Nov 25, 2002
* Time: 2:05:49 PM
* To change this template use Options | File Templates.
*/
package ro.redeul.google.go.lang.psi.utils;

import com.intellij.openapi.progress.ProgressIndicatorProvider;
import com.intellij.psi.PsiElement;
import com.intellij.psi.ResolveState;
import com.intellij.psi.scope.PsiScopeProcessor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import ro.redeul.google.go.lang.psi.GoPackage;
import ro.redeul.google.go.lang.psi.GoPsiElement;
import ro.redeul.google.go.lang.psi.processors.ResolveStates;

public class GoPsiScopesUtil {

    private GoPsiScopesUtil() {
    }

    public static boolean treeWalkUp(@NotNull PsiScopeProcessor processor,
                                     @NotNull PsiElement entrance,
                                     @Nullable PsiElement maxScope) {
        return treeWalkUp(processor, entrance, maxScope, ResolveState.initial());
    }

    public static boolean treeWalkUp(@NotNull final PsiScopeProcessor processor,
                                     @NotNull final PsiElement entrance,
                                     @Nullable final PsiElement maxScope,
                                     @NotNull final ResolveState state) {

        PsiElement prevParent = entrance;
        PsiElement scope = entrance;

        while (scope != null) {
            ProgressIndicatorProvider.checkCanceled();

            if (!scope.processDeclarations(processor, state, prevParent, entrance)) {
                return false; // resolved
            }


            if (scope == maxScope) break;
            prevParent = scope;
            scope = prevParent.getContext();
            if (scope != null && scope != prevParent.getParent() && !scope.isValid()) {
                break;
            }

        }

        return true;
    }

    public static boolean walkPackage(@NotNull PsiScopeProcessor processor,
                                      @NotNull PsiElement entrance,
                                      @NotNull GoPackage goPackage) {
        return goPackage.processDeclarations(processor, ResolveStates.packageExports(), null, entrance);
    }

    public static boolean walkChildrenScopes(@NotNull PsiElement thisElement,
                                             @NotNull PsiScopeProcessor processor,
                                             @NotNull ResolveState state,
                                             PsiElement lastParent,
                                             PsiElement place) {
        PsiElement child = null;
        if (lastParent != null && lastParent.getParent() == thisElement) {
            child = lastParent.getPrevSibling();
            if (child == null) return true; // first element
        }

        if (child == null) {
            child = thisElement.getLastChild();
        }

        while (child != null) {
            if (!child.processDeclarations(processor, state, lastParent, place)) return false;
            child = child.getPrevSibling();
        }

        return true;
    }

    @Deprecated
    public static boolean packageWalk(GoPackage goPackage, PsiScopeProcessor processor, GoPsiElement entrance, ResolveState state) {
        return goPackage.processDeclarations(processor, state, entrance.getContainingFile(), entrance);
    }
}
TOP

Related Classes of ro.redeul.google.go.lang.psi.utils.GoPsiScopesUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.