io.cucumber.cucumberexpressions.DefaultPatternCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-expressions Show documentation
Show all versions of cucumber-expressions Show documentation
Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps
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