2002-10-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System / System.Text.RegularExpressions / ChangeLog
1 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2
3         * parser.cs: applied fix from Tim Haynes (thaynes@openlinksw.com) to
4         solve bug #32807. Also modified GetMapping to return the same as MS.
5
6 2002-08-28  Juli Mallett  <jmallett@FreeBSD.org>
7
8         * arch.cs, compiler.cs: Give the interpreter machine a property
9         for the retrieval of the group count.
10
11         * regex.cs: Use the new GroupCount property of the factory to
12         initialise the current group count, and restructure code to compile
13         the pattern only the first time it is needed (essentially backing
14         out the previous revision of regex.cs, to use the new code.)
15
16 2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
17
18         * regex.cs: Added the ctr for ISerializable implementation and
19         implemented the GetObjectData function.
20
21 2002-07-30  Juli Mallett  <jmallett@FreeBSD.org>
22
23         * regex.cs: Fixed bug where the expression would not be
24         re-evaluated for grouping purposes when factory caches were
25         used, resulting in no groups being recognised after one call
26         with a given pattern and no change in options.
27
28 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
29
30         * regex.cs: Fixed bug in split.
31
32 2002-05-08  Dan Lewis  <dihlewis@yahoo.co.uk>
33
34         * interpreter.cs: Moved to an array-based stack representation
35         for faster captures.
36
37         * match.cs, collections.cs: Decoupled capture representation from
38         interpreter internals.
39
40         * cache.cs: Changed Key type from struct to class for speed.
41
42 2002-04-06  Dan Lewis  <dihlewis@yahoo.co.uk>
43
44         * cache.cs: Object methods should be overridden with "override".
45
46 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
47
48         * RegexRunner.cs, RegexRunnerFactory.cs: MS support classes. Stubs
49         added for completeness.
50
51         * regex.cs, match.cs, collections.cs: Serializable attribute.
52
53 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
54
55         * regex.cs: Added static Matches and IsMatch methods.
56
57 2002-04-03  Dan Lewis  <dihlewis@yahoo.co.uk>
58
59         * ChangeLog: Added changelog.
60
61         * cache.cs: Fixed bug in MRUList.Evict.