| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
- * regex.cs: fixed little mistake (closes #35860).
- 2002-11-12 Jackson Harper <[email protected]>
- * arch.cs compiler.cs regex.cs: Added mapping attribute to MachineFactories
- 2002-11-06 Gonzalo Paniagua Javier <[email protected]>
- * parser.cs: detect illegal \ at end of pattern. Fixes 31334.
- 2002-10-25 Gonzalo Paniagua Javier <[email protected]>
- * parser.cs: applied fix from Tim Haynes ([email protected]) to
- solve bug #32807. Also modified GetMapping to return the same as MS.
- 2002-08-28 Juli Mallett <[email protected]>
- * arch.cs, compiler.cs: Give the interpreter machine a property
- for the retrieval of the group count.
- * regex.cs: Use the new GroupCount property of the factory to
- initialise the current group count, and restructure code to compile
- the pattern only the first time it is needed (essentially backing
- out the previous revision of regex.cs, to use the new code.)
- 2002-08-14 Cesar Octavio Lopez Nataren <[email protected]>
- * regex.cs: Added the ctr for ISerializable implementation and
- implemented the GetObjectData function.
- 2002-07-30 Juli Mallett <[email protected]>
- * regex.cs: Fixed bug where the expression would not be
- re-evaluated for grouping purposes when factory caches were
- used, resulting in no groups being recognised after one call
- with a given pattern and no change in options.
- 2002-05-13 Dan Lewis <[email protected]>
- * regex.cs: Fixed bug in split.
- 2002-05-08 Dan Lewis <[email protected]>
- * interpreter.cs: Moved to an array-based stack representation
- for faster captures.
- * match.cs, collections.cs: Decoupled capture representation from
- interpreter internals.
- * cache.cs: Changed Key type from struct to class for speed.
- 2002-04-06 Dan Lewis <[email protected]>
- * cache.cs: Object methods should be overridden with "override".
- 2002-04-04 Dan Lewis <[email protected]>
- * RegexRunner.cs, RegexRunnerFactory.cs: MS support classes. Stubs
- added for completeness.
- * regex.cs, match.cs, collections.cs: Serializable attribute.
- 2002-04-04 Dan Lewis <[email protected]>
- * regex.cs: Added static Matches and IsMatch methods.
- 2002-04-03 Dan Lewis <[email protected]>
- * ChangeLog: Added changelog.
- * cache.cs: Fixed bug in MRUList.Evict.
|