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

ChangeLog « Mono.Debugging.Server.Mdb « MonoDevelop.Debugger.Mdb « extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57ff94e5d72845fbcf79d2877c4b3d9323269718 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
2009-11-23  Lluis Sanchez Gual  <lluis@novell.com>

	* Convert.cs: Improve conversion of corlib types.

2009-11-19  Lluis Sanchez Gual  <lluis@novell.com>

	* BacktraceWrapper.cs: Subclass BaseBacktrace and reuse some
	  code from it.

	* MdbObjectValueAdaptor.cs: Track api changes. Improved check
	  for evaluation options.

2009-11-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Always show properties, even if we
	  can't evaluate them.

	* IndexerValueReference.cs: Don't allow evaluating properties
	  if target invoke is disabled.

2009-11-18  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs:
	* BacktraceWrapper.cs:
	* EvaluationContext.cs:
	* MdbObjectValueAdaptor.cs: Track api changes.

2009-11-17  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs:
	* BacktraceWrapper.cs:
	* EvaluationContext.cs:
	* MdbObjectValueAdaptor.cs: Use the new options object. Track
	  api changes.

2009-10-18  Michael Hutchinson  <mhutchinson@novell.com>

	* DebuggerServer.cs: Fix Pocess/Process spelling.

2009-10-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptorFactory.cs: Don't write compilation errors to the
	  standard output.

2009-10-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Avoid cast exception in GetMembers
	  when the object is of type TargetObjectObject. Fixes bug
	  #543805.

2009-10-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor-2-4-2.cs: Add missing null check. Fixes bug
	  #544137 - Exception while run command.

2009-10-05  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Use long for thread and process id.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Use the correct exception to
	  report target exceptions.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* BacktraceWrapper.cs: Sort locals.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* Convert.cs:
	* MdbObjectValueAdaptor.cs: Improve support for nullable
	  types.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Notify the started event before starting
	  the session. In this way, breakpoints will be inserted
	  before reaching main. Fixes bug #541727 - Debugger never
	  stops at the breakpoint.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* ArrayAdaptor.cs: CreateElementValue is not required anymore.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Don't show compiler generated
	  fields.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Implemented CreateValue. Fixed
	  resolution of nested types in GetType(name).

2009-09-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Add support for
	  DebuggerTypeProxyAttribute, DebuggerBrowsable and
	  DebuggerDisplayAttribute.

2009-09-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Add support for examining nested
	  types.

2009-09-22  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Remove debug code.

2009-09-22  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Watch the parent process, and stop the
	  server if the parent dies.

	* MdbObjectValueAdaptor.cs: Fix incorrect check for
	  AllowTargetInvoke.

2009-09-17  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Properly parse quoted arguments. Fixes
	  bug #539317 - NUnit addin fails to run tests under the
	  debugger.

2009-09-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor.cs:
	* MdbAdaptor-2-0.cs:
	* DebuggerServer.cs:
	* MdbAdaptor-2-4-2.cs:
	* MdbAdaptor-2-4-4.cs: Implemented AllowBreakEventChanges
	  property.

2009-09-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Added some checks for
	  AllowTargetInvoke flag. When resolving a method, in case of
	  multiple valid matches, just pick the first one. Fixes bug
	  #538059.

2009-09-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor-2-4-4.cs:
	* MdbAdaptor-2-4-2.cs: Breakpoint activation while running was
	  not supported by mono 2.4.2.

2009-08-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbObjectValueAdaptor.cs: Fixed some issue with static
	  method invocation, and implemented HasMethod.

2009-08-28  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile:
	* MdbAdaptor.cs:
	* MdbAdaptor-2-6.cs:
	* MdbAdaptor-2-0.cs:
	* DebuggerServer.cs:
	* MdbAdaptor-2-4-2.cs:
	* MdbAdaptor-2-4-4.cs:
	* MdbAdaptorFactory.cs:
	* Mono.Debugging.Server.Mdb.csproj: Reorganized adaptors a
	  bit. Added real support for setting breakpoints while
	  running.

2009-07-22  Lluis Sanchez Gual  <lluis@novell.com>

	* Util.cs:
	* Makefile:
	* Convert.cs:
	* ObjectUtil.cs:
	* ArrayAdaptor.cs:
	* RawViewSource.cs:
	* FieldReference.cs:
	* TimedEvaluator.cs:
	* DebuggerServer.cs:
	* ValueReference.cs:
	* TimeOutException.cs:
	* BacktraceWrapper.cs:
	* EvaluationContext.cs:
	* PropertyReference.cs:
	* VariableReference.cs:
	* RemoteFrameObject.cs:
	* CollectionAdaptor.cs:
	* ArrayElementGroup.cs:
	* TypeValueReference.cs:
	* NullValueReference.cs:
	* ICollectionAdaptor.cs:
	* ArrayValueReference.cs:
	* NRefactoryEvaluator.cs:
	* ExpressionEvaluator.cs:
	* RuntimeInvokeManager.cs:
	* IndexerValueReference.cs:
	* UserVariableReference.cs:
	* LiteralValueReference.cs:
	* MdbObjectValueAdaptor.cs:
	* AsyncEvaluationTracker.cs:
	* NamespaceValueReference.cs:
	* Mono.Debugging.Server.Mdb.csproj: Use the new expression
	  evaluation api, shared with the win32 debugger.

2009-06-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor-2-4-2.cs: Track api changes.

2009-06-11  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile:
	* NRefactoryEvaluator.cs:
	* UserVariableReference.cs:
	* Mono.Debugging.Server.Mdb.csproj: Added support for defining
	  variables.

2009-06-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile:
	* MdbAdaptor.cs:
	* MdbAdaptor-2-0.cs:
	* DebuggerServer.cs:
	* MdbAdaptor-2-6.cs:
	* MdbAdaptor-2-4-2.cs:
	* MdbAdaptorFactory.cs:
	* RuntimeInvokeManager.cs:
	* Mono.Debugging.Server.Mdb.csproj: Track api changes in the
	  debugger.

	* ObjectUtil.cs:
	* TimedEvaluator.cs:
	* CollectionAdaptor.cs: Fix warning.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Mono.Debugging.Server.Mdb.csproj: Flush.

2009-05-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor-2-6.cs: Don't enable user modules for normal app
	  debugging.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MdbAdaptor.cs:
	* MdbAdaptor-2-6.cs:
	* DebuggerServer.cs: SourceBreakpoint.IsUserModule requires
	  latest mdb.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs:
	* MdbAdaptorFactory.cs: Try to detect the mdb version only
	  once per session.

	* MdbAdaptor.cs:
	* MdbAdaptor-2-6.cs: Properly set user modules when
	  initializing.

2009-04-27  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Fix api change issue.

2009-04-27  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile:
	* MdbAdaptor.cs:
	* DebuggerServer.cs:
	* MdbAdaptor-2-6.cs:
	* BacktraceWrapper.cs:
	* MdbAdaptorFactory.cs:
	* Mono.Debugging.Server.Mdb.csproj: Initial support for XSP.

2009-03-13  Michael Hutchinson  <mhutchinson@novell.com>

	* NRefactoryEvaluator.cs: Fix typo.

	* Mono.Debugging.Server.Mdb.csproj: Updated.

2009-02-20  Lluis Sanchez Gual  <lluis@novell.com>

	* Mono.Debugging.Server.Mdb.csproj: Updated references.

2009/02/06  Lluis Sanchez Gual  <lluis@novell.com>

 * Mono.Debugging.Server.Mdb.mdp:
 * Mono.Debugging.Server.Mdb.csproj: Migrated to MSBuild file format.

2009-01-27  Lluis Sanchez Gual  <lluis@novell.com>

	* Mono.Debugging.Server.Mdb.mdp: Fix target framework.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* Mono.Debugging.Server.Mdb.mdp: Flush project format changes.

2008-12-20  Lluis Sanchez Gual  <lluis@novell.com>

	* TimedEvaluator.cs: Fix build for old mono versions.

2008-12-19  Lluis Sanchez Gual  <lluis@novell.com>

	* TimedEvaluator.cs:
	* ValueReference.cs:
	* DebuggerServer.cs:
	* BacktraceWrapper.cs:
	* TimeOutException.cs:
	* RemoteFrameObject.cs:
	* RuntimeInvokeManager.cs:
	* AsyncEvaluationTracker.cs: Implemented support for async evaluation of
	expressions.

	* Util.cs:
	* Convert.cs:
	* ObjectUtil.cs:
	* ArrayAdaptor.cs:
	* RawViewSource.cs:
	* FieldReference.cs:
	* EvaluationContext.cs:
	* PropertyReference.cs:
	* CollectionAdaptor.cs:
	* ArrayElementGroup.cs:
	* VariableReference.cs:
	* TypeValueReference.cs:
	* NullValueReference.cs:
	* ArrayValueReference.cs:
	* NRefactoryEvaluator.cs:
	* ExpressionEvaluator.cs:
	* IndexerValueReference.cs:
	* LiteralValueReference.cs:
	* NamespaceValueReference.cs: Use the new EvaluationContext class to get
	the current frame or thread. Thread.CurrentFrame will not give the
	original frame if some runtime invocation has been done since the
	debugger stopped.

	* Makefile:
	* Mono.Debugging.Server.Mdb.mdp: Added new files.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* Mono.Debugging.Server.Mdb.mdp: Don't require a specific version of
	Mono.Addins.

2008-12-04  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Properly set the working directory.

	* BacktraceWrapper.cs: Add a missing try/catch.

	* TypeValueReference.cs: Improve reliability.

2008-12-02  Lluis Sanchez Gual  <lluis@novell.com>

	* BacktraceWrapper.cs:
	* NRefactoryEvaluator.cs: There is now a new kind flag for NotSupported
	errors. Use it.

	* NamespaceValueReference.cs: Properly get child namespaces of a
	namespace.

2008-12-01  Lluis Sanchez Gual  <lluis@novell.com>

	* DebuggerServer.cs: Get the exception object from the frame.
	Language.CreateObject won't work for native language.

	* BacktraceWrapper.cs: Fixed NRE. Native methods don't have a declaring
	type.

	* Makefile:
	* Mono.Debugging.Server.Mdb.mdp: Add required ref.

	* NamespaceValueReference.cs: Use system.reflection to access to the
	mono.cecil object model. We can't use MD's Mono.Cecil here because
	the debugger is using its own copy and conflicts.

2008-11-25  Lluis Sanchez Gual  <lluis@novell.com>

	* CollectionAdaptor.cs: Add missing check. Collection adaptors are not
	implemented for non-managed languages.

2008-09-26  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Improve thread location string.

2008-09-25  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Use the gui manager to resume internally stopped
	  threads.
	* Convert.cs: Fix object conversion.
	* ObjectUtil.cs: Make GetTypeDisplayData more robust.

2008-09-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Mono.Debugging.Server.Mdb.mdp: Updated projects.

2008-09-03  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Fill the Exception property for the Exception and
	  UnhandledException events.

2008-08-29  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Fix build.

2008-08-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MyTextReader.cs, Expression.cs: Remove unused stuff.

2008-08-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Mono.Debugging.Server.Mdb.mdp: Fix reference to Mono.TextEditor. The
	  incorrect add-in version number causes problems in the makefile
	  synchronization.

2008-08-18  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Optimize backtrace retrieval (trying to get the
	  unmanaged backtrace when the current frame is managed is slow).
	* Util.cs: Ignore properties which don't have a getter.
	* ObjectUtil.cs: Added null check.

2008-08-06  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Add support for live hit count and trace updating.

2008-08-05  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Provide a location when creating a ThreadInfo.

2008-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Report module loading. Fixed break command.

2008-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* ObjectUtil.cs: Added hack to make the proxy attribute work for
	  generic types.
	* CollectionAdaptor.cs: Don't try to create a collection adaptor for
	  generic types. It won't work.

2008-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, ExpressionEvaluator.cs,
	  Mono.Debugging.Server.Mdb.mdp, ValueReference.cs,
	  NRefactoryEvaluator.cs, ObjectUtil.cs, ArrayElementGroup.cs,
	  RawViewSource.cs, CollectionAdaptor.cs, Makefile,
	  IndexerValueReference.cs: Implemented support for
	  DebuggerDisplayAttribute, DebuggerBrowsableAttribute and
	  DebuggerTypeProxyAttribute.

2008-07-31  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Enable support for conditional breakpoints.
	* Convert.cs: Allow fundamental conversions of strings. Use new boxing
	  API.
	* ObjectUtil.cs: Some cleanup.
	* ArrayElementGroup.cs: Report exception when setting a value.

2008-07-28  Lluis Sanchez Gual <lluis@novell.com> 

	* NRefactoryEvaluator.cs: Track changes in NRefactory.

2008-07-25  Lluis Sanchez Gual <lluis@novell.com> 

	* BacktraceWrapper.cs: Implement GetAllLocals.

2008-07-25  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Added some support for conditional breakpoints and
	  tracepoints, although it is currently disabled because it requires
	  changes in GUIManager.
	* Util.cs, BacktraceWrapper.cs, ExpressionEvaluator.cs,
	  ArrayValueReference.cs, ValueReference.cs, FieldReference.cs,
	  PropertyReference.cs, VariableReference.cs,
	  LiteralValueReference.cs: Moved several methods for handling
	  TargetObject instances from Util to ObjectUtil.
	* Convert.cs: Casting fixes.
	* Mono.Debugging.Server.Mdb.mdp, Makefile: Added new files.
	* NRefactoryEvaluator.cs: Improved error reporting. Added support for
	  indexers.
	* ObjectUtil.cs: Moved several methods for handling TargetObject
	  instances from Util to ObjectUtil. Added api for invoking target
	  methods and getting property values.
	* CollectionAdaptor.cs: Use new api for calling methods and getting
	  properties.
	* IndexerValueReference.cs: New value reference to be used to get and
	  assign values to indexers.

2008-07-23  Lluis Sanchez Gual <lluis@novell.com> 

	* BacktraceWrapper.cs, ExpressionEvaluator.cs, ValueReference.cs:
	  Improved handling of evaluation errors.
	* CollectionAdaptor.cs: Fix null ref and some warnings.
	* LiteralValueReference.cs: Fix evaluation of literal value.
	* Util.cs: Added some new helper methods.

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Set breakpoints using a constructed SourceLocation
	  instead of looking for it. In this way the breakpoint can be set
	  even if the library is not yet loaded. Other minor fixes.
	* Util.cs: Make sure object references are properly dereferenced. Use
	  new collection adaptors.
	* ICollectionAdaptor.cs, ExpressionEvaluator.cs,
	  Mono.Debugging.Server.Mdb.mdp, ArrayAdaptor.cs,
	  NRefactoryEvaluator.cs, ArrayElementGroup.cs, CollectionAdaptor.cs:
	  When inspecting objects implementing ICollection and IDictionary,
	  show the elements as children of the object, and provide a "Raw
	  View" containing the members of the object.
	* BacktraceWrapper.cs: Provide completion for 'this' reference.
	* ArrayValueReference.cs, FieldReference.cs, PropertyReference.cs,
	  VariableReference.cs: Make sure object references are properly
	  dereferenced.
	* RemoteFrameObject.cs: Don't allow connecting a RemoteFrameObject more
	  than once.
	* Makefile: Added new files.

2008-07-16  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Implement support for catchpoints.
	* ExpressionEvaluator.cs: Fix pointer issue. Int64 can't be converted
	  to IntPtr in 32bit systems.

2008-07-11  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Fix internal stopping logic.
	* Util.cs, Convert.cs, ExpressionEvaluator.cs, ValueReference.cs,
	  NRefactoryEvaluator.cs: Improved support for generic instance
	  inspection.
	* BacktraceWrapper.cs: Don't remove parameter list of methods with
	  special names.
	* ArrayElementGroup.cs: Improved error catching.

2008-07-11  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile: Remove incorrect path.

2008-07-09  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Ignore target events which don't stop the thread.
	* BacktraceWrapper.cs: Fix method name returned by StackFrame.
	* Makefile: Install the assemblies to the correct directory.

2008-07-09  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Implemented SetActiveThread. Ignore target events
	  coming from non-stopped threads.

2008-07-09  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, PropertyReference.cs: Make sure internal
	  invokes to the debugged process do not fire target events.
	* BacktraceWrapper.cs, ExpressionEvaluator.cs, ValueReference.cs,
	  ArrayElementGroup.cs: Use a new EvaluationOptions object to provide
	  options to the evaluator.
	* TypeValueReference.cs, NamespaceValueReference.cs: Use the internal
	  cecil modules to locate types.
	* NRefactoryEvaluator.cs: Support for array access and other fixes.

2008-07-09  Lluis Sanchez Gual <lluis@novell.com> 

	* BacktraceWrapper.cs, ValueReference.cs, TypeValueReference.cs,
	  NamespaceValueReference.cs: Added support for code completion.

2008-07-08  Lluis Sanchez Gual <lluis@novell.com> 

	* RemoteFrameObject.cs: Crash fix.

2008-07-07  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, MyTextReader.cs, Convert.cs,
	  BacktraceWrapper.cs, ExpressionEvaluator.cs,
	  Mono.Debugging.Server.Mdb.mdp, NullValueReference.cs,
	  IExpressionValueSource.cs, ArrayValueReference.cs,
	  ValueReference.cs, RemoteFrameObject.cs, TypeValueReference.cs,
	  Expression.cs, NRefactoryEvaluator.cs, FieldReference.cs,
	  PropertyReference.cs, VariableReference.cs, IValueReference.cs,
	  ArrayElementGroup.cs, Server.cs, NamespaceValueReference.cs,
	  LiteralValueReference.cs, Makefile: Implemented an expression
	  evaluator based on NRefactory.

2008-07-02  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, BacktraceWrapper.cs, FieldReference.cs,
	  Mono.Debugging.Server.Mdb.mdp, PropertyReference.cs,
	  IValueReference.cs, VariableReference.cs,
	  IExpressionValueSource.cs, Makefile, ArrayValueReference.cs:
	  Implement support for modifying variable values and disassembling
	  files.

2008-07-01  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Fix some deadlocks.
	* BacktraceWrapper.cs: Fix infinite loop.

2008-07-01  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Insert breakpoints using the global thread group.

2008-06-26  Lluis Sanchez Gual <lluis@novell.com> 

	* Mono.Debugging.Server.Mdb.mdp, Server.cs, Makefile: Enable unix
	  channel support.

2008-06-26  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Allow setting the active thread. Implemented
	  GetThreads and GetProcesses.
	* Util.cs, BacktraceWrapper.cs: Fix warnings.

2008-06-20  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs: Implemented detach. Send all events to the client
	  asynchronously, to avoid deadlocks. Report debug output to the
	  client.
	* Server.cs: Implemented detach.

2008-06-20  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, BacktraceWrapper.cs,
	  Mono.Debugging.Server.Mdb.mdp: Implemented support for attach to
	  process, disassemble.

2008-06-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Mono.Debugging.Server.Mdb.mdp: Updated.

2008-05-27  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, BacktraceWrapper.cs: Track api changes. Properly
	  redirect debugger output. Implemented support for adding
	  breakpoints while the target process is running, it seems to kinda
	  work.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* Mono.Debugging.Server.Mdb.mdp: Updated project.

2008-05-16  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, Util.cs, BacktraceWrapper.cs,
	  Mono.Debugging.Server.Mdb.mdp, IExpressionValueSource.cs, Makefile:
	  Implemented query of variable and field data.

2008-05-14  Lluis Sanchez Gual <lluis@novell.com> 

	* DebuggerServer.cs, AssemblyInfo.cs, Util.cs, BacktraceWrapper.cs,
	  Mono.Debugging.Server.Mdb.mdp, ChangeLog, Server.cs, Makefile:
	  Initial import.

2008-04-28  Ankit Jain  <jankit@novell.com>

	* Initial import.