blob: 8f5b5bc2fc2000ed0bca9938f6c8560000208e34 [file] [log] [blame]
package com.intellij.structuralsearch.impl.matcher.strategies;
import com.intellij.psi.PsiElement;
/**
* CommonStrategy of metching process
*/
public interface MatchingStrategy {
boolean continueMatching(PsiElement start);
boolean shouldSkip(PsiElement element, PsiElement elementToMatchWith);
}