Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « csharp « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3d78bbdeb2a4abca05d0fd63df7bb918dd54759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
2009-12-16  Miguel de Icaza  <miguel@novell.com>

	* repl.cs: Avoid crash, fixes 554898

2009-09-07  Marek Safar  <marek.safar@gmail.com>

	* repl.cs: Disabled Report.Stderr hacking.

2009-04-17  Miguel de Icaza  <miguel@novell.com>

	* Makefile: Make this build using csharplib instead of referencing
	the gmcs.exe that was just built.
	
	* repl.cs: Support executing files that were specified in the
	command line. 

2008-12-16  Jb Evain  <jbevain@novell.com>

	* Makefile: use the monolinker.exe from the profile directory.

2008-11-02  Miguel de Icaza  <miguel@novell.com>

	* repl.cs: Fix regression, quit when requested.

2008-09-28  Miguel de Icaza  <miguel@novell.com>

	* repl.cs (PrettyPrint): Add support for displaying characters
	properly. 

2008-09-27  Miguel de Icaza  <miguel@novell.com>

	* getline.cs: Add support for autocompletion.
	
	* repl.cs (RunRepl): Catch exceptions, and send those as errors
	back to the client.

	* repl.cs: Rename AttachedCSharpShell to ClientCSharpShell.

	Make most of the CSharpShell code into instance code, so that we
	can override the behavior on ClientCSharpShell and reuse most of
	the logic there.

	CSharpShell now has a virtual `Evaluate' that is used to implement
	the evaluator. 

	Implemented a new more robust protocol for sending the information
	back and forth.

	Now the results are show on the client, and come prettyprinted.

2008-09-25  Miguel de Icaza  <miguel@novell.com>

	* repl.cs: On errors, return null.

2008-09-24  Zoltan Varga  <vargaz@gmail.com>

	* Makefile repl.cs: Add support for attaching to arbitrary mono
	processes.

2008-09-10  Miguel de Icaza  <miguel@novell.com>

	* Move the repl shell here.