All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cucumber.cucumberexpressions.DefaultPatternCompiler Maven / Gradle / Ivy

Go to download

Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps

There is a newer version: 18.0.1
Show newest version
package io.cucumber.cucumberexpressions;

import java.util.regex.Pattern;

/**
 * Default {@link PatternCompiler}
 */
final class DefaultPatternCompiler implements PatternCompiler {

    @Override
    public Pattern compile(String regexp, int flags) {
        return Pattern.compile(regexp, flags);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy