1 30 package org.jruby.parser; 31 32 public interface ReOptions { 33 int RE_OPTION_IGNORECASE = 1; 34 int RE_OPTION_EXTENDED = (RE_OPTION_IGNORECASE << 1); 35 int RE_OPTION_MULTILINE = (RE_OPTION_EXTENDED << 1); 36 int RE_OPTION_SINGLELINE = (RE_OPTION_MULTILINE << 1); 37 int RE_OPTION_POSIXLINE = (RE_OPTION_MULTILINE | RE_OPTION_SINGLELINE); 38 int RE_OPTION_LONGEST = (RE_OPTION_SINGLELINE << 1); 39 int RE_MAY_IGNORECASE = (RE_OPTION_LONGEST << 1); 40 int RE_OPTION_ONCE = 0x80; } 42 | Popular Tags |