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