Package com.cholick.idea.spock.data

Examples of com.cholick.idea.spock.data.SpockLabel


        return nextLabel;
    }

    private void checkSuccessorValid(@NotNull GrLabeledStatement nextLabeledStatement) {
        if (SpockLabel.contains(nextLabeledStatement)) {
            SpockLabel nextSpockLabel = SpockLabel.valueOf(nextLabeledStatement);
            if (nextSpockLabel != null && !spockLabel.getSuccessors().contains(nextSpockLabel)) {
                PsiElement nextLabel = GrLabeledStatementAdapter.getInstance().getLabel(nextLabeledStatement);
                registerError(nextLabel);
            }
        }
View Full Code Here

TOP

Related Classes of com.cholick.idea.spock.data.SpockLabel

Copyright © 2018 www.massapicom. 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.