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