GenericParameter.cs: override Module properly
[mcs.git] / tools / csharp / ChangeLog
blob0bfcb3ea65409f6429bbb4741547438a546e0c91
1 2010-02-08  Miguel de Icaza  <miguel@novell.com>
3         * getline.cs: Add support for ESC-letter to become Alt-letter.
5 2010-02-05  Miguel de Icaza  <miguel@novell.com>
7         * getline.cs (NextAvailable): Fix off-by-one error
9 2010-02-04  Miguel de Icaza  <miguel@novell.com>
11         * Take advantage of the Describe feature.
13 2009-12-16  Miguel de Icaza  <miguel@novell.com>
15         * repl.cs: Avoid crash, fixes 554898
17 2009-09-07  Marek Safar  <marek.safar@gmail.com>
19         * repl.cs: Disabled Report.Stderr hacking.
21 2009-04-17  Miguel de Icaza  <miguel@novell.com>
23         * Makefile: Make this build using csharplib instead of referencing
24         the gmcs.exe that was just built.
25         
26         * repl.cs: Support executing files that were specified in the
27         command line. 
29 2008-12-16  Jb Evain  <jbevain@novell.com>
31         * Makefile: use the monolinker.exe from the profile directory.
33 2008-11-02  Miguel de Icaza  <miguel@novell.com>
35         * repl.cs: Fix regression, quit when requested.
37 2008-09-28  Miguel de Icaza  <miguel@novell.com>
39         * repl.cs (PrettyPrint): Add support for displaying characters
40         properly. 
42 2008-09-27  Miguel de Icaza  <miguel@novell.com>
44         * getline.cs: Add support for autocompletion.
45         
46         * repl.cs (RunRepl): Catch exceptions, and send those as errors
47         back to the client.
49         * repl.cs: Rename AttachedCSharpShell to ClientCSharpShell.
51         Make most of the CSharpShell code into instance code, so that we
52         can override the behavior on ClientCSharpShell and reuse most of
53         the logic there.
55         CSharpShell now has a virtual `Evaluate' that is used to implement
56         the evaluator. 
58         Implemented a new more robust protocol for sending the information
59         back and forth.
61         Now the results are show on the client, and come prettyprinted.
63 2008-09-25  Miguel de Icaza  <miguel@novell.com>
65         * repl.cs: On errors, return null.
67 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
69         * Makefile repl.cs: Add support for attaching to arbitrary mono
70         processes.
72 2008-09-10  Miguel de Icaza  <miguel@novell.com>
74         * Move the repl shell here.