2 // This software is now distributed according to
3 // the Lesser Gnu Public License. Please see
4 // http://www.gnu.org/copyleft/lesser.txt for
8 package com.stevesoft.pat;
10 import java.util.BitSet;
13 * Things that need to be kept track of during a match. Passed along with
14 * Pattern.matchInternal.
18 /** The current text we are attempting to match. */
19 public StringLike src;
22 * Whether we should ignore the case of letters in this match.
24 public boolean ignoreCase;
28 /** The mask to use when dontMatchInQuotes is set. */
31 /** Used to keep track of backreferences. */
32 // public Hashtable marks;
38 * Used to set the behavior of "." By default, it now fails to match the '\n'
41 public boolean dotDoesntMatchCR;
43 /** Determine if Skipped strings need to be checked. */
44 public boolean no_check;