15161718192021
/** * Created on: 01.09.2010 23:43:07 */ public class RegexCompiler { public static PatternSet compile(List<RxNode> roots) { return new DFARopePatternSet(compileToBiDFA(roots)); }