mono.git
21 years ago2003-04-04 Gaurav Vaish <gvaish_mono AT lycos.com>
Gaurav Vaish [Fri, 4 Apr 2003 16:54:44 +0000 (16:54 -0000)]
2003-04-04 Gaurav Vaish <gvaish_mono AT lycos.com>

* DeviceSpecificChoice.cs: FindAndApplyProperty(...) - Bug fix.
* Style.cs               : Added several properties.

svn path=/trunk/mcs/; revision=13143

21 years agoUpdate
Miguel de Icaza [Fri, 4 Apr 2003 16:39:53 +0000 (16:39 -0000)]
Update

svn path=/trunk/mono/; revision=13142

21 years ago* man/sqlsharp.1: changed pass= to password= for the
Martin Willemoes Hansen [Fri, 4 Apr 2003 15:42:47 +0000 (15:42 -0000)]
* man/sqlsharp.1: changed pass= to password= for the
          PostgreSql provider.

svn path=/trunk/mono/; revision=13141

21 years ago2003-04-04 Gaurav Vaish <gvaish_mono AT lycos.com>
Gaurav Vaish [Fri, 4 Apr 2003 15:35:44 +0000 (15:35 -0000)]
2003-04-04 Gaurav Vaish <gvaish_mono AT lycos.com>

* DeviceSpecificChoice.cs: HasTemplates { get; },
                         : FindAndApplyEvent(...)     - Completed
                         : FindAndApplyProperty(...),
                         : CheckOnPageEvaluator(...)  - Init impl.

svn path=/trunk/mcs/; revision=13140

21 years ago2003-04-04 Dick Porter <dick@ximian.com>
Dick Porter [Fri, 4 Apr 2003 15:06:21 +0000 (15:06 -0000)]
2003-04-04  Dick Porter  <dick@ximian.com>

* Version.cs: Make operator== and operator!= cope with null
objects.  Didn't change operator<, operator<=, operator> or
operator>= because its not meaningful to use those to compare
against null, and throwing a NullReferenceException is probably
the best thing to do there anyway.

Fixes bug 40720.

svn path=/trunk/mcs/; revision=13139

21 years ago* ILParser.jay: Add parameterized types to classes.
Jackson Harper [Fri, 4 Apr 2003 05:09:38 +0000 (05:09 -0000)]
* ILParser.jay: Add parameterized types to classes.

svn path=/trunk/mcs/; revision=13130

21 years ago* ILToken.cs: Add open angle bracket, and close angle bracket tokens.
Jackson Harper [Fri, 4 Apr 2003 05:07:59 +0000 (05:07 -0000)]
* ILToken.cs: Add open angle bracket, and close angle bracket tokens.

svn path=/trunk/mcs/; revision=13129

21 years agonew test
Jackson Harper [Fri, 4 Apr 2003 05:05:09 +0000 (05:05 -0000)]
new test

svn path=/trunk/mcs/; revision=13128

21 years agoMemory friendly InflaterInputStream.cs
Miguel de Icaza [Fri, 4 Apr 2003 04:12:58 +0000 (04:12 -0000)]
Memory friendly InflaterInputStream.cs

svn path=/trunk/mcs/; revision=13113

21 years agoAdded syntatic rules for: switch_statement, case_block, case_clauses, case_clause...
César Natarén [Fri, 4 Apr 2003 04:04:50 +0000 (04:04 -0000)]
Added syntatic rules for: switch_statement, case_block, case_clauses, case_clause, default_clause, labelled_statement, try_statement, catch_exp, finally_exp, with_statement, object_literal, ( expression ), property_name_and_value_list, property_name, expression.

svn path=/trunk/mcs/; revision=13112

21 years ago2003-04-03 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Thu, 3 Apr 2003 21:40:42 +0000 (21:40 -0000)]
2003-04-03  Zoltan Varga  <vargaz@freemail.hu>

* object.c object.h class.h: Added experimental typed allocation
facility using the interfaces in gc_gcj.h.

* os/gc_wrapper.h: Added new include files.

svn path=/trunk/mono/; revision=13077

21 years agoOoops, forgot a debugging #ifdef.
Martin Baulig [Thu, 3 Apr 2003 20:16:49 +0000 (20:16 -0000)]
Ooops, forgot a debugging #ifdef.

svn path=/trunk/mono/; revision=13075

21 years ago2003-04-03 Martin Baulig <martin@ximian.com>
Martin Baulig [Thu, 3 Apr 2003 20:15:54 +0000 (20:15 -0000)]
2003-04-03  Martin Baulig  <martin@ximian.com>

The following change is conditional to `WITH_INCLUDED_LIBGC'
which is not yet enabled by default.

* threads.c (SuspendThread, ResumeThread): Fully implemented this.
(gc_init): New static function; install a signal handler for
SIGPWR which is used to suspend threads.  [FIXME: it SIGPWR
doesn't exist on all Unix systems, we need to find another
signal].
(mono_wapi_push_thread_stack): New public function.  Tells the
garbage collector about the current stack pointer of a suspended
thread.

svn path=/trunk/mono/; revision=13074

21 years ago2003-04-03 Martin Baulig <martin@ximian.com>
Martin Baulig [Thu, 3 Apr 2003 20:09:46 +0000 (20:09 -0000)]
2003-04-03  Martin Baulig  <martin@ximian.com>

* timed-thread.h (TimedThread): Added `suspended_sem',
`suspend_count' and `stack_ptr'.

svn path=/trunk/mono/; revision=13073

21 years agoFlush
Miguel de Icaza [Thu, 3 Apr 2003 19:46:42 +0000 (19:46 -0000)]
Flush

svn path=/trunk/mono/; revision=13072

21 years agoFlush
Miguel de Icaza [Thu, 3 Apr 2003 19:20:22 +0000 (19:20 -0000)]
Flush

svn path=/trunk/mono/; revision=13071

21 years ago2003-04-04 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
Atsushi Eno [Thu, 3 Apr 2003 19:03:17 +0000 (19:03 -0000)]
2003-04-04  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>

* XmlDocument.cs : Load() now closes the given XmlReader.
  Don't allow creation of XmlTextReader for Doctype. (workaround.)
* XmlInputStream.cs : It now closes its internal stream explicitly.
* XmlNode.cs : RemoveChild() bugfix for removing LastLinkedChild.
* XmlNodeReader.cs : GetAttribute() bugfix for not-present attribute.
* XmlParserInput.cs : added Close() method.
* XmlReader.cs : MoveToContent() should (1) not Read in case of empty
  element, and (2) MoveToElement() in case of attribute.
* XmlTextReader.cs : Close() now actually closes source TextReaders.

svn path=/trunk/mcs/; revision=13070

21 years ago2003-04-03 Martin Baulig <martin@ximian.com>
Martin Baulig [Thu, 3 Apr 2003 16:41:01 +0000 (16:41 -0000)]
2003-04-03  Martin Baulig  <martin@ximian.com>

All the following changes are conditional to `WITH_INCLUDED_LIBGC'
which is not yet enabled by default.

* gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
functions.
(mono_gc_lock, mono_gc_unlock): New static functions.

* threads.c (mono_gc_stop_world, mono_gc_start_world): New public
functions; stop/start the world for the garbage collector.  This
is using the windows API; we need to complete the SuspendThread()/
ResumeThread() implementation in the io-layer to make this work on Unix.
(mono_gc_push_all_stacks): New public function; tells the garbage
collector about the stack pointers from all managed threads.

svn path=/trunk/mono/; revision=13065

21 years ago2003-04-03 Martin Baulig <martin@ximian.com>
Martin Baulig [Thu, 3 Apr 2003 16:29:15 +0000 (16:29 -0000)]
2003-04-03  Martin Baulig  <martin@ximian.com>

* object.h (MonoThread): Added `gpointer stack_ptr'.

* threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.

svn path=/trunk/mono/; revision=13064

21 years ago2003-04-03 Martin Baulig <martin@ximian.com>
Martin Baulig [Thu, 3 Apr 2003 16:23:46 +0000 (16:23 -0000)]
2003-04-03  Martin Baulig  <martin@ximian.com>

* Makefile.am: It's called `cygpath -w', not `cygpath -m'.

svn path=/trunk/mono/; revision=13063

21 years ago * TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
Lluis Sanchez [Thu, 3 Apr 2003 15:32:16 +0000 (15:32 -0000)]
* TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
  sent by Jose Lu�s Mart�n.
* TcpClientTransportSink.cs: Added Content-Type header. Improved support
  for OneWay messages.

svn path=/trunk/mcs/; revision=13061

21 years ago * TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
Lluis Sanchez [Thu, 3 Apr 2003 15:32:16 +0000 (15:32 -0000)]
* TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
  sent by Jose Lu�s Mart�n.
* TcpClientTransportSink.cs: Added Content-Type header. Improved support
  for OneWay messages.

svn path=/trunk/mcs/; revision=13060

21 years ago2003-04-03 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Thu, 3 Apr 2003 15:16:15 +0000 (15:16 -0000)]
2003-04-03  Zoltan Varga  <vargaz@freemail.hu>

* reflection.c (typebuilder_setup_fields): Initialize field.first and
field.last.

svn path=/trunk/mono/; revision=13059

21 years ago2003-04-03 Gaurav Vaish <gvaish_mono AT lycos.com>
Gaurav Vaish [Thu, 3 Apr 2003 14:16:15 +0000 (14:16 -0000)]
2003-04-03 Gaurav Vaish <gvaish_mono AT lycos.com>

* DeviceSpecific.cs      : Almost done.
* DeviceSpecificChoice.cs: HasTemplates { get; } - Subbed.
* Style.cs               : Control      { get; } - Stubbed.
* MobileControl.cs       : FindClosestTemplateControl()
                                                 - Stubbed.

svn path=/trunk/mcs/; revision=13058

21 years agobits
Rafael Teixeira [Thu, 3 Apr 2003 13:20:56 +0000 (13:20 -0000)]
bits

svn path=/trunk/mcs/; revision=13057

21 years ago* ILParser.jay: Support most non-obsolete native types.
Jackson Harper [Thu, 3 Apr 2003 07:18:52 +0000 (07:18 -0000)]
* ILParser.jay: Support most non-obsolete native types.

svn path=/trunk/mcs/; revision=13055

21 years ago* ILParser.jay: Proper names for native int and native uint
Jackson Harper [Thu, 3 Apr 2003 06:10:50 +0000 (06:10 -0000)]
* ILParser.jay: Proper names for native int and native uint

svn path=/trunk/mcs/; revision=13054

21 years ago2003-04-02 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Thu, 3 Apr 2003 03:36:49 +0000 (03:36 -0000)]
2003-04-02  Miguel de Icaza  <miguel@ximian.com>

* loader.c (mono_lookup_internal_call): Report the corlib that is
out of sync.

svn path=/trunk/mono/; revision=13053

21 years agoUpdate debug info
Miguel de Icaza [Thu, 3 Apr 2003 03:22:31 +0000 (03:22 -0000)]
Update debug info

svn path=/trunk/mono/; revision=13052

21 years agoTemporarily remove the references to
Duncan Mak [Thu, 3 Apr 2003 00:55:22 +0000 (00:55 -0000)]
Temporarily remove the references to
Class.MustOverride to fix the build.

svn path=/trunk/mcs/; revision=13050

21 years agoremove nunit-gtk dir
Gonzalo Paniagua Javier [Thu, 3 Apr 2003 00:49:36 +0000 (00:49 -0000)]
remove nunit-gtk dir

svn path=/trunk/mcs/; revision=13049

21 years agomoved to its own module
Gonzalo Paniagua Javier [Thu, 3 Apr 2003 00:48:37 +0000 (00:48 -0000)]
moved to its own module

svn path=/trunk/mcs/; revision=13048

21 years ago- A lot of fixes for array/variable declaration and initialization
Marco Ridoni [Wed, 2 Apr 2003 17:55:20 +0000 (17:55 -0000)]
- A lot of fixes for array/variable declaration and initialization
- Fixed enums
- Removed a few conflicts from the grammar
- Added single-line If statement
- Fixed access modifiers for module members
- Started implementing MustOverride (not working yet)
- Added MyClass
- Added a couple of missing integral types

svn path=/trunk/mcs/; revision=13032

21 years ago- Added a preliminary test suite for regression testing
Marco Ridoni [Wed, 2 Apr 2003 17:52:40 +0000 (17:52 -0000)]
- Added a preliminary test suite for regression testing

svn path=/trunk/mcs/; revision=13031

21 years ago- Preliminary support for late binding in array access (needs support in
Marco Ridoni [Wed, 2 Apr 2003 17:51:22 +0000 (17:51 -0000)]
- Preliminary support for late binding in array access (needs support in
  the runtime

svn path=/trunk/mcs/; revision=13030

21 years ago- Fixed default namespace (VB.NET wants it to be an empty string)
Marco Ridoni [Wed, 2 Apr 2003 17:50:15 +0000 (17:50 -0000)]
- Fixed default namespace (VB.NET wants it to be an empty string)

svn path=/trunk/mcs/; revision=13029

21 years ago2003-03-05 Aleksey Demakov <avd@openlinksw.com>
Paolo Molaro [Wed, 2 Apr 2003 17:19:46 +0000 (17:19 -0000)]
2003-03-05  Aleksey Demakov <avd@openlinksw.com>

* icall.c (ves_icall_type_GetTypeCode): fixed check for
System.DBNull (it's class not valuetype).

svn path=/trunk/mono/; revision=13028

21 years agoWed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
Paolo Molaro [Wed, 2 Apr 2003 16:44:11 +0000 (16:44 -0000)]
Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>

* reflection.c: set table_idx in MonoReflectionArrayMethod object even
if the array method was already assigned a token (fixes bug#40646).

svn path=/trunk/mono/; revision=13027

21 years ago2003-04-02 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Wed, 2 Apr 2003 15:18:54 +0000 (15:18 -0000)]
2003-04-02  Zoltan Varga  <vargaz@freemail.hu>

* reflection.c (mono_reflection_get_type): Attempt type resolve even
if no assembly is given.

svn path=/trunk/mono/; revision=13026

21 years ago2003-04-02 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Wed, 2 Apr 2003 14:21:02 +0000 (14:21 -0000)]
2003-04-02  Zoltan Varga  <vargaz@freemail.hu>

* README.tests test-188.cs makefile: Added test-188.cs.

svn path=/trunk/mcs/; revision=13025

21 years agoForgot this
Gonzalo Paniagua Javier [Wed, 2 Apr 2003 13:01:10 +0000 (13:01 -0000)]
Forgot this

svn path=/trunk/mcs/; revision=13024

21 years ago2003-04-02 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Wed, 2 Apr 2003 11:47:18 +0000 (11:47 -0000)]
2003-04-02  Miguel de Icaza  <miguel@ximian.com>

* class.cs (Event.Define): Do not allow abstract events to have
initializers.

2003-04-01  Miguel de Icaza  <miguel@ximian.com>

* cs-parser.jay: Add error productions for ADD/REMOVE missing a
block in event declarations.

svn path=/trunk/mcs/; revision=13023

21 years agoInitialize call conv
Jackson Harper [Wed, 2 Apr 2003 08:09:09 +0000 (08:09 -0000)]
Initialize call conv

svn path=/trunk/mcs/; revision=13020

21 years ago * ILParser.jay: Add Call conventions, fix primitive spelling.
Jackson Harper [Wed, 2 Apr 2003 08:05:59 +0000 (08:05 -0000)]
* ILParser.jay: Add Call conventions, fix primitive spelling.

svn path=/trunk/mcs/; revision=13019

21 years ago* ILParser.jay: Add TypedRef primative type.
Jackson Harper [Wed, 2 Apr 2003 07:51:54 +0000 (07:51 -0000)]
* ILParser.jay: Add TypedRef primative type.

svn path=/trunk/mcs/; revision=13018

21 years ago* ILParser.jay: Support pinned, modreq, and modopt types.CVS: ------------------...
Jackson Harper [Wed, 2 Apr 2003 07:46:35 +0000 (07:46 -0000)]
* ILParser.jay: Support pinned, modreq, and modopt types.CVS: ----------------------------------------------------------------------

svn path=/trunk/mcs/; revision=13017

21 years ago* ILParser.jay: Support pinned, modreq, and modopt types.
Jackson Harper [Wed, 2 Apr 2003 07:45:43 +0000 (07:45 -0000)]
* ILParser.jay: Support pinned, modreq, and modopt types.

svn path=/trunk/mcs/; revision=13016

21 years ago2003-04-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Wed, 2 Apr 2003 02:56:45 +0000 (02:56 -0000)]
2003-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Initial check in.

svn path=/trunk/mcs/; revision=13014

21 years ago2003-04-01 Sebastien Pouliot <spouliot@videotron.ca>
Sebastien Pouliot [Wed, 2 Apr 2003 02:51:44 +0000 (02:51 -0000)]
2003-04-01  Sebastien Pouliot  <spouliot@videotron.ca>

* PKCS1.cs: Corrected fix (partially) for the lame PKCS1 v1.5
signatures done without specifying an OID.

svn path=/trunk/mcs/; revision=13013

21 years ago2003-04-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Wed, 2 Apr 2003 01:43:58 +0000 (01:43 -0000)]
2003-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

* AppDomain.cs: fixed InvalidCastException.

svn path=/trunk/mcs/; revision=13012

21 years ago2003-04-01 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Tue, 1 Apr 2003 23:38:06 +0000 (23:38 -0000)]
2003-04-01  Miguel de Icaza  <miguel@ximian.com>

* ecore.cs (FieldExpr.AddressOf): If our instance expression is a
value type, get its address.

svn path=/trunk/mcs/; revision=13011

21 years ago2003-04-01 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Tue, 1 Apr 2003 22:52:49 +0000 (22:52 -0000)]
2003-04-01  Miguel de Icaza  <miguel@ximian.com>

* class.cs (TypeContainer.GetClassBases): We were checking for the
parent class being sealed too late.

* expression.cs (Binary.Emit): For <= and >= when dealing with
floating point values, use cgt.un and clt.un instead of cgt and
clt alone.

svn path=/trunk/mcs/; revision=13010

21 years ago2003-04-01 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Tue, 1 Apr 2003 17:58:58 +0000 (17:58 -0000)]
2003-04-01  Zoltan Varga  <vargaz@freemail.hu>

* statement.cs: Apply the same optimization as MS: skip the
GetEnumerator returning an IEnumerator, and use the one returning a
CharEnumerator instead. This allows us to avoid the try-finally block
and the boxing.

svn path=/trunk/mcs/; revision=13009

21 years ago2003-04-01 Miguel de Icaza <miguel@ximian.com>
Miguel de Icaza [Tue, 1 Apr 2003 17:50:01 +0000 (17:50 -0000)]
2003-04-01  Miguel de Icaza  <miguel@ximian.com>

* metadata.h: Added the new tables.

* row-indexes.h: Added definitions for new tables.

* metadata.c: Add schemas for new tables, and add support for
computing the sizes of them.

* class.c: Update for handling the new type cases.

2003-03-31  Miguel de Icaza  <miguel@ximian.com>

* main.c: Sorted command line options table by name.

* dump.c: Add support for dumping the new generic tables.

* monodis.1: Update man page.

svn path=/trunk/mono/; revision=13008

21 years agoA few updates
Miguel de Icaza [Tue, 1 Apr 2003 16:40:39 +0000 (16:40 -0000)]
A few updates

svn path=/trunk/mono/; revision=13004

21 years agonew macro MONO_TYPE_IS_VOID
Dietmar Maurer [Tue, 1 Apr 2003 14:41:51 +0000 (14:41 -0000)]
new macro MONO_TYPE_IS_VOID

svn path=/trunk/mono/; revision=13003

21 years ago* ILParser.jay: Use the CodeGen CompleteClass method when a class
Jackson Harper [Tue, 1 Apr 2003 08:09:06 +0000 (08:09 -0000)]
* ILParser.jay: Use the CodeGen CompleteClass method when a class
is completed instead of setting the current class to null. This
does some extra cleanup

svn path=/trunk/mcs/; revision=12999

21 years ago* ClassTable.cs: Do not append a . to names that are not in a
Jackson Harper [Tue, 1 Apr 2003 08:06:29 +0000 (08:06 -0000)]
* ClassTable.cs: Do not append a . to names that are not in a
namespace
* CodeGen.cs: Handle nested classes

svn path=/trunk/mcs/; revision=12998

21 years ago* NumberHelper.cs: handle situations like this 21452. properly
Jackson Harper [Tue, 1 Apr 2003 07:11:36 +0000 (07:11 -0000)]
* NumberHelper.cs: handle situations like this 21452. properly

svn path=/trunk/mcs/; revision=12997

21 years ago* ILParser.jay: Add bound arrays
Jackson Harper [Tue, 1 Apr 2003 06:11:05 +0000 (06:11 -0000)]
* ILParser.jay: Add bound arrays

svn path=/trunk/mcs/; revision=12996

21 years ago * test-10.il: New test, does some bounded array stuff
Jackson Harper [Tue, 1 Apr 2003 06:07:42 +0000 (06:07 -0000)]
* test-10.il: New test, does some bounded array stuff

svn path=/trunk/mcs/; revision=12995

21 years ago * ILTokenizer.cs: Handle Ellipsis
Jackson Harper [Tue, 1 Apr 2003 05:26:47 +0000 (05:26 -0000)]
* ILTokenizer.cs: Handle Ellipsis
* NUmberHelper.cs: Handle situations like this 0... properly

svn path=/trunk/mcs/; revision=12994

21 years ago* ExternTable.cs: Remove some unsed fields.
Jackson Harper [Tue, 1 Apr 2003 04:02:47 +0000 (04:02 -0000)]
* ExternTable.cs: Remove some unsed fields.

svn path=/trunk/mcs/; revision=12993

21 years agoFlush:
Miguel de Icaza [Mon, 31 Mar 2003 23:44:55 +0000 (23:44 -0000)]
Flush:

svn path=/trunk/mono/; revision=12992

21 years ago2003-03-31 Martin Baulig <martin@ximian.com>
Martin Baulig [Mon, 31 Mar 2003 21:23:58 +0000 (21:23 -0000)]
2003-03-31  Martin Baulig  <martin@ximian.com>

* debug.h (MonoDebuggerEvent): Removed
MONO_DEBUGGER_EVENT_THREAD_CREATED.

* jit.c (mono_thread_start_cb): Don't send the
MONO_DEBUGGER_EVENT_THREAD_CREATED event.

svn path=/trunk/mono/; revision=12987

21 years ago2003-03-31 Martin Baulig <martin@ximian.com>
Martin Baulig [Mon, 31 Mar 2003 21:22:35 +0000 (21:22 -0000)]
2003-03-31  Martin Baulig  <martin@ximian.com>

* threads.h (MonoThreadCallbacks): Added `thread_created'.

* threads.c (mono_thread_new_init): Call `thread_created' in the
mono_thread_callbacks.

svn path=/trunk/mono/; revision=12986

21 years ago2003-03-31 Nick Drochak <ndrochak@gol.com>
Nick Drochak [Mon, 31 Mar 2003 14:35:33 +0000 (14:35 -0000)]
2003-03-31  Nick Drochak <ndrochak@gol.com>

* Path.cs (GetDirectoryName): Throw proper execption when path is empty.

svn path=/trunk/mcs/; revision=12979

21 years ago * loader.h: added marshalbyrefobject_class to mono_defaults
Lluis Sanchez [Mon, 31 Mar 2003 14:27:47 +0000 (14:27 -0000)]
* loader.h: added marshalbyrefobject_class to mono_defaults
* domain.c: added initialization of mono_defaults.marshalbyrefobject_class
* icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
  generation of output parameters.
  ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
* marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
  contextbound and the target object belongs to the context of the caller.
* object.h: added context and unwrapped_server variables in MonoRealProxy.
* object.c: Implemented support for interfaces and abstract classes
  in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
  proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.

svn path=/trunk/mono/; revision=12974

21 years ago* System.Drawing.Printing/PrinterUnitConvert.cs stubed
Martin Willemoes Hansen [Mon, 31 Mar 2003 14:14:49 +0000 (14:14 -0000)]
* System.Drawing.Printing/PrinterUnitConvert.cs stubed

svn path=/trunk/mcs/; revision=12973

21 years ago*** empty log message ***
Gonzalo Paniagua Javier [Mon, 31 Mar 2003 14:02:50 +0000 (14:02 -0000)]
*** empty log message ***

svn path=/trunk/mcs/; revision=12972

21 years ago* Stubed System.Drawing.Design
Martin Willemoes Hansen [Mon, 31 Mar 2003 13:29:54 +0000 (13:29 -0000)]
* Stubed System.Drawing.Design

svn path=/trunk/mcs/; revision=12971

21 years ago--target library
Gonzalo Paniagua Javier [Mon, 31 Mar 2003 13:01:52 +0000 (13:01 -0000)]
--target library
--unsafe --nostdlib --noconfig
-o ../lib/corlib_mcs.dll
Microsoft.Win32/RegistryKey.cs
Microsoft.Win32/Registry.cs
Microsoft.Win32/RegistryHive.cs
Mono/Runtime.cs
Mono.Math/BigInteger.cs
Mono.Security/ASN1.cs
Mono.Security/ASN1Convert.cs
Mono.Security.Cryptography/CryptoTools.cs
Mono.Security.Cryptography/PKCS1.cs
Mono.Security.Cryptography/HMACAlgorithm.cs
Mono.Security.Cryptography/MACAlgorithm.cs
Mono.Security.X509/X501Name.cs
Mono.Security.X509/X509Certificate.cs
Mono.Security.X509/X509Extension.cs
Mono.Security.X509/X509Extensions.cs
Mono.Security.X509/X520Attributes.cs
Mono.Xml/MiniParser.cs
System/Activator.cs
System/AppDomain.cs
System/AppDomainSetup.cs
System/AppDomainUnloadedException.cs
System/ApplicationException.cs
System/ArgIterator.cs
System/ArgumentException.cs
System/ArgumentNullException.cs
System/ArgumentOutOfRangeException.cs
System/ArithmeticException.cs
System/Array.cs
System/ArrayTypeMismatchException.cs
System/AssemblyLoadEventArgs.cs
System/AssemblyLoadEventHandler.cs
System/AsyncCallback.cs
System/Attribute.cs
System/AttributeTargets.cs
System/AttributeUsageAttribute.cs
System/BadImageFormatException.cs
System/BitConverter.cs
System/Boolean.cs
System/Buffer.cs
System/Byte.cs
System/CannotUnloadAppDomainException.cs
System/Char.cs
System/CharEnumerator.cs
System/CLSCompliantAttribute.cs
System/Console.cs
System/ContextBoundObject.cs
System/ContextMarshalException.cs
System/ContextStaticAttribute.cs
System/Convert.cs
System/CrossAppDomainDelegate.cs
System/DateTime.cs
System/DBNull.cs
System/Decimal.cs
System/DecimalFormatter.cs
System/Delegate.cs
System/DelegateSerializationHolder.cs
System/DivideByZeroException.cs
System/DllNotFoundException.cs
System/Double.cs
System/DoubleFormatter.cs
System/DuplicateWaitObjectException.cs
System/EntryPointNotFoundException.cs
System/Enum.cs
System/Environment.cs
System/EventArgs.cs
System/EventHandler.cs
System/Exception.cs
System/ExecutionEngineException.cs
System/FieldAccessException.cs
System/FlagsAttribute.cs
System/FloatingPointFormatter.cs
System/FormatException.cs
System/GC.cs
System/Guid.cs
System/IAppDomainSetup.cs
System/IAsyncResult.cs
System/ICloneable.cs
System/IComparable.cs
System/IConvertible.cs
System/ICustomFormatter.cs
System/IDisposable.cs
System/IFormatProvider.cs
System/IFormattable.cs
System/IndexOutOfRangeException.cs
System/Int16.cs
System/Int32.cs
System/Int64.cs
System/IntegerFormatter.cs
System/IntPtr.cs
System/InvalidCastException.cs
System/InvalidOperationException.cs
System/InvalidProgramException.cs
System/IServiceProvider.cs
System/LoaderOptimization.cs
System/LoaderOptimizationAttribute.cs
System/LocalDataStoreSlot.cs
System/MarshalByRefObject.cs
System/Math.cs
System/MemberAccessException.cs
System/MethodAccessException.cs
System/MissingFieldException.cs
System/MissingMemberException.cs
System/MissingMethodException.cs
System/MonoCustomAttrs.cs
System/MonoDummy.cs
System/MonoType.cs
System/MTAThreadAttribute.cs
System/MulticastDelegate.cs
System/MulticastNotSupportedException.cs
System/NonSerializedAttribute.cs
System/NotFiniteNumberException.cs
System/NotImplementedException.cs
System/NotSupportedException.cs
System/NullReferenceException.cs
System/Object.cs
System/ObjectDisposedException.cs
System/ObsoleteAttribute.cs
System/OperatingSystem.cs
System/OutOfMemoryException.cs
System/OverflowException.cs
System/ParamArrayAttribute.cs
System/PlatformID.cs
System/PlatformNotSupportedException.cs
System/Random.cs
System/RankException.cs
System/ResolveEventArgs.cs
System/ResolveEventHandler.cs
System/RuntimeArgumentHandle.cs
System/RuntimeFieldHandle.cs
System/RuntimeMethodHandle.cs
System/RuntimeTypeHandle.cs
System/SByte.cs
System/SerializableAttribute.cs
System/Single.cs
System/SingleFormatter.cs
System/StackOverflowException.cs
System/STAThreadAttribute.cs
System/String.cs
System/SystemException.cs
System/ThreadStaticAttribute.cs
System/TimeSpan.cs
System/TimeZone.cs
System/TODOAttribute.cs
System/Type.cs
System/TypeCode.cs
System/TypedReference.cs
System/TypeInitializationException.cs
System/TypeLoadException.cs
System/TypeUnloadedException.cs
System/UInt16.cs
System/UInt32.cs
System/UInt64.cs
System/UIntPtr.cs
System/UnauthorizedAccessException.cs
System/UnhandledExceptionEventArgs.cs
System/UnhandledExceptionEventHandler.cs
System/UnitySerializationHolder.cs
System/ValueType.cs
System/Version.cs
System/Void.cs
System/WeakReference.cs
System/_AppDomain.cs
System.Collections/ArrayList.cs
System.Collections/BitArray.cs
System.Collections/CaseInsensitiveComparer.cs
System.Collections/CaseInsensitiveHashCodeProvider.cs
System.Collections/CollectionBase.cs
System.Collections/Comparer.cs
System.Collections/DictionaryBase.cs
System.Collections/DictionaryEntry.cs
System.Collections/Hashtable.cs
System.Collections/ICollection.cs
System.Collections/IComparer.cs
System.Collections/IDictionary.cs
System.Collections/IDictionaryEnumerator.cs
System.Collections/IEnumerable.cs
System.Collections/IEnumerator.cs
System.Collections/IHashCodeProvider.cs
System.Collections/IList.cs
System.Collections/Queue.cs
System.Collections/ReadOnlyCollectionBase.cs
System.Collections/SortedList.cs
System.Collections/Stack.cs
System.Configuration.Assemblies/AssemblyHash.cs
System.Configuration.Assemblies/AssemblyHashAlgorithm.cs
System.Configuration.Assemblies/AssemblyVersionCompatibility.cs
System.Configuration.Assemblies/ProcessorID.cs
System.Diagnostics/ConditionalAttribute.cs
System.Diagnostics/DebuggableAttribute.cs
System.Diagnostics/Debugger.cs
System.Diagnostics/DebuggerHiddenAttribute.cs
System.Diagnostics/DebuggerStepThroughAttribute.cs
System.Diagnostics/StackFrame.cs
System.Diagnostics/StackTrace.cs
System.Diagnostics.SymbolStore/ISymbolBinder.cs
System.Diagnostics.SymbolStore/ISymbolDocument.cs
System.Diagnostics.SymbolStore/ISymbolDocumentWriter.cs
System.Diagnostics.SymbolStore/ISymbolMethod.cs
System.Diagnostics.SymbolStore/ISymbolNamespace.cs
System.Diagnostics.SymbolStore/ISymbolReader.cs
System.Diagnostics.SymbolStore/ISymbolScope.cs
System.Diagnostics.SymbolStore/ISymbolVariable.cs
System.Diagnostics.SymbolStore/ISymbolWriter.cs
System.Diagnostics.SymbolStore/SymAddressKind.cs
System.Diagnostics.SymbolStore/SymbolToken.cs
System.Diagnostics.SymbolStore/SymDocumentType.cs
System.Diagnostics.SymbolStore/SymLanguageType.cs
System.Diagnostics.SymbolStore/SymLanguageVendor.cs
System.Globalization/Calendar.cs
System.Globalization/CalendarWeekRule.cs
System.Globalization/CalendricalCalculations.cs
System.Globalization/CompareInfo.cs
System.Globalization/CompareOptions.cs
System.Globalization/CultureInfo.cs
System.Globalization/CultureTypes.cs
System.Globalization/DateTimeFormatInfo.cs
System.Globalization/DateTimeStyles.cs
System.Globalization/DaylightTime.cs
System.Globalization/GregorianCalendar.cs
System.Globalization/GregorianCalendarTypes.cs
System.Globalization/HebrewCalendar.cs
System.Globalization/HijriCalendar.cs
System.Globalization/JapaneseCalendar.cs
System.Globalization/JulianCalendar.cs
System.Globalization/KoreanCalendar.cs
System.Globalization/Locale.cs
System.Globalization/NumberFormatInfo.cs
System.Globalization/NumberStyles.cs
System.Globalization/RegionInfo.cs
System.Globalization/SortKey.cs
System.Globalization/StringInfo.cs
System.Globalization/TaiwanCalendar.cs
System.Globalization/TextElementEnumerator.cs
System.Globalization/TextInfo.cs
System.Globalization/ThaiBuddhistCalendar.cs
System.Globalization/UnicodeCategory.cs
System.IO/BinaryReader.cs
System.IO/BinaryWriter.cs
System.IO/BufferedStream.cs
System.IO/CheckArgument.cs
System.IO/CheckPermission.cs
System.IO/Directory.cs
System.IO/DirectoryInfo.cs
System.IO/DirectoryNotFoundException.cs
System.IO/EndOfStreamException.cs
System.IO/File.cs
System.IO/FileAccess.cs
System.IO/FileAttributes.cs
System.IO/FileInfo.cs
System.IO/FileLoadException.cs
System.IO/FileMode.cs
System.IO/FileNotFoundException.cs
System.IO/FileShare.cs
System.IO/FileStream.cs
System.IO/FileSystemInfo.cs
System.IO/IOException.cs
System.IO/MemoryStream.cs
System.IO/MonoIO.cs
System.IO/MonoIOError.cs
System.IO/MonoFileType.cs
System.IO/MonoIOStat.cs
System.IO/Path.cs
System.IO/PathTooLongException.cs
System.IO/SearchPattern.cs
System.IO/SeekOrigin.cs
System.IO/Stream.cs
System.IO/StreamReader.cs
System.IO/StreamWriter.cs
System.IO/StringReader.cs
System.IO/StringWriter.cs
System.IO/TextReader.cs
System.IO/TextWriter.cs
System.IO.IsolatedStorage/INormalizeForIsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorageException.cs
System.IO.IsolatedStorage/IsolatedStorageFile.cs
System.IO.IsolatedStorage/IsolatedStorageInfo.cs
System.IO.IsolatedStorage/IsolatedStorageFileStream.cs
System.IO.IsolatedStorage/IsolatedStorageScope.cs
System.Reflection/AmbiguousMatchException.cs
System.Reflection/Assembly.cs
System.Reflection/AssemblyAlgorithmIdAttribute.cs
System.Reflection/AssemblyCompanyAttribute.cs
System.Reflection/AssemblyConfigurationAttribute.cs
System.Reflection/AssemblyCopyrightAttribute.cs
System.Reflection/AssemblyCultureAttribute.cs
System.Reflection/AssemblyDefaultAliasAttribute.cs
System.Reflection/AssemblyDelaySignAttribute.cs
System.Reflection/AssemblyDescriptionAttribute.cs
System.Reflection/AssemblyFileVersionAttribute.cs
System.Reflection/AssemblyFlagsAttribute.cs
System.Reflection/AssemblyInformationalVersionAttribute.cs
System.Reflection/AssemblyKeyFileAttribute.cs
System.Reflection/AssemblyKeyNameAttribute.cs
System.Reflection/AssemblyName.cs
System.Reflection/AssemblyNameFlags.cs
System.Reflection/AssemblyNameProxy.cs
System.Reflection/AssemblyProductAttribute.cs
System.Reflection/AssemblyTitleAttribute.cs
System.Reflection/AssemblyTradeMarkAttribute.cs
System.Reflection/AssemblyVersionAttribute.cs
System.Reflection/Binder.cs
System.Reflection/BindingFlags.cs
System.Reflection/CallingConventions.cs
System.Reflection/ConstructorInfo.cs
System.Reflection/CustomAttributeFormatException.cs
System.Reflection/DefaultMemberAttribute.cs
System.Reflection/EventAttributes.cs
System.Reflection/EventInfo.cs
System.Reflection/FieldAttributes.cs
System.Reflection/FieldInfo.cs
System.Reflection/ICustomAttributeProvider.cs
System.Reflection/InterfaceMapping.cs
System.Reflection/InvalidFilterCriteriaException.cs
System.Reflection/IReflect.cs
System.Reflection/ManifestResourceInfo.cs
System.Reflection/MemberFilter.cs
System.Reflection/MemberInfo.cs
System.Reflection/MemberTypes.cs
System.Reflection/MethodAttributes.cs
System.Reflection/MethodBase.cs
System.Reflection/MethodImplAttributes.cs
System.Reflection/MethodInfo.cs
System.Reflection/Missing.cs
System.Reflection/Module.cs
System.Reflection/ModuleResolveEventHandler.cs
System.Reflection/MonoEvent.cs
System.Reflection/MonoField.cs
System.Reflection/MonoMethod.cs
System.Reflection/MonoProperty.cs
System.Reflection/ParameterAttributes.cs
System.Reflection/ParameterInfo.cs
System.Reflection/ParameterModifier.cs
System.Reflection/PropertyAttributes.cs
System.Reflection/PropertyInfo.cs
System.Reflection/ReflectionTypeLoadException.cs
System.Reflection/ResourceAttributes.cs
System.Reflection/ResourceLocation.cs
System.Reflection/ReflectionSerializationHolder.cs
System.Reflection/StrongNameKeyPair.cs
System.Reflection/TargetException.cs
System.Reflection/TargetInvocationException.cs
System.Reflection/TargetParameterCountException.cs
System.Reflection/TypeAttributes.cs
System.Reflection/TypeDelegator.cs
System.Reflection/TypeFilter.cs
System.Reflection.Emit/AssemblyBuilder.cs
System.Reflection.Emit/AssemblyBuilderAccess.cs
System.Reflection.Emit/ConstructorBuilder.cs
System.Reflection.Emit/CustomAttributeBuilder.cs
System.Reflection.Emit/EnumBuilder.cs
System.Reflection.Emit/EventBuilder.cs
System.Reflection.Emit/EventToken.cs
System.Reflection.Emit/FieldBuilder.cs
System.Reflection.Emit/FieldToken.cs
System.Reflection.Emit/FlowControl.cs
System.Reflection.Emit/IMonoSymbolWriter.cs
System.Reflection.Emit/ILGenerator.cs
System.Reflection.Emit/Label.cs
System.Reflection.Emit/LocalBuilder.cs
System.Reflection.Emit/MethodBuilder.cs
System.Reflection.Emit/MethodToken.cs
System.Reflection.Emit/ModuleBuilder.cs
System.Reflection.Emit/MonoArrayMethod.cs
System.Reflection.Emit/OpCode.cs
System.Reflection.Emit/OpCodes.cs
System.Reflection.Emit/OpCodeType.cs
System.Reflection.Emit/OperandType.cs
System.Reflection.Emit/PackingSize.cs
System.Reflection.Emit/ParameterBuilder.cs
System.Reflection.Emit/ParameterToken.cs
System.Reflection.Emit/PEFileKinds.cs
System.Reflection.Emit/PropertyBuilder.cs
System.Reflection.Emit/PropertyToken.cs
System.Reflection.Emit/SignatureHelper.cs
System.Reflection.Emit/SignatureToken.cs
System.Reflection.Emit/StackBehaviour.cs
System.Reflection.Emit/StringToken.cs
System.Reflection.Emit/TypeBuilder.cs
System.Reflection.Emit/TypeToken.cs
System.Reflection.Emit/UnmanagedMarshal.cs
System.Resources/IResourceReader.cs
System.Resources/IResourceWriter.cs
System.Resources/MissingManifestResourceException.cs
System.Resources/NeutralResourcesLanguageAttribute.cs
System.Resources/ResourceManager.cs
System.Resources/ResourceReader.cs
System.Resources/ResourceSet.cs
System.Resources/ResourceWriter.cs
System.Resources/SatelliteContractVersionAttribute.cs
System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs
System.Runtime.CompilerServices/CallConvCdecl.cs
System.Runtime.CompilerServices/CallConvFastcall.cs
System.Runtime.CompilerServices/CallConvThiscall.cs
System.Runtime.CompilerServices/CallConvStdcall.cs
System.Runtime.CompilerServices/CompilationRelaxationsAttribute.cs
System.Runtime.CompilerServices/CustomConstantAttribute.cs
System.Runtime.CompilerServices/DateTimeConstantAttribute.cs
System.Runtime.CompilerServices/DecimalConstantAttribute.cs
System.Runtime.CompilerServices/DiscardableAttribute.cs
System.Runtime.CompilerServices/IDispatchConstantAttribute.cs
System.Runtime.CompilerServices/IUnknownConstantAttribute.cs
System.Runtime.CompilerServices/IndexerNameAttribute.cs
System.Runtime.CompilerServices/MethodCodeType.cs
System.Runtime.CompilerServices/MethodImplAttribute.cs
System.Runtime.CompilerServices/MethodImplOptions.cs
System.Runtime.CompilerServices/RequiredAttributeAttribute.cs
System.Runtime.CompilerServices/RuntimeHelpers.cs
System.Runtime.InteropServices/AssemblyRegistrationFlags.cs
System.Runtime.InteropServices/AutomationProxyAttribute.cs
System.Runtime.InteropServices/BINDPTR.cs
System.Runtime.InteropServices/CallingConvention.cs
System.Runtime.InteropServices/CharSet.cs
System.Runtime.InteropServices/ClassInterfaceAttribute.cs
System.Runtime.InteropServices/ClassInterfaceType.cs
System.Runtime.InteropServices/CoClassAttribute.cs
System.Runtime.InteropServices/ComAliasNameAttribute.cs
System.Runtime.InteropServices/ComConversionLossAttribute.cs
System.Runtime.InteropServices/COMException.cs
System.Runtime.InteropServices/ComEventInterfaceAttribute.cs
System.Runtime.InteropServices/ComImportAttribute.cs
System.Runtime.InteropServices/ComInterfaceType.cs
System.Runtime.InteropServices/ComMemberType.cs
System.Runtime.InteropServices/ComRegisterFunctionAttribute.cs
System.Runtime.InteropServices/ComUnregisterFunctionAttribute.cs
System.Runtime.InteropServices/ComVisible.cs
System.Runtime.InteropServices/DESCKIND.cs
System.Runtime.InteropServices/DISPPARAMS.cs
System.Runtime.InteropServices/DispIdAttribute.cs
System.Runtime.InteropServices/DllImportAttribute.cs
System.Runtime.InteropServices/EXCEPINFO.cs
System.Runtime.InteropServices/ExporterEventKind.cs
System.Runtime.InteropServices/ExternalException.cs
System.Runtime.InteropServices/FieldOffsetAttribute.cs
System.Runtime.InteropServices/GCHandle.cs
System.Runtime.InteropServices/GCHandleType.cs
System.Runtime.InteropServices/GuidAttribute.cs
System.Runtime.InteropServices/HandleRef.cs
System.Runtime.InteropServices/ICustomAdapter.cs
System.Runtime.InteropServices/ICustomFactory.cs
System.Runtime.InteropServices/ICustomMarshaler.cs
System.Runtime.InteropServices/INVOKEKIND.cs
System.Runtime.InteropServices/IRegistrationServices.cs
System.Runtime.InteropServices/ITypeLibConverter.cs
System.Runtime.InteropServices/ITypeLibExporterNameProvider.cs
System.Runtime.InteropServices/ITypeLibExporterNotifySink.cs
System.Runtime.InteropServices/ITypeLibImporterNotifySink.cs
System.Runtime.InteropServices/ImportedFromTypeLibAttribute.cs
System.Runtime.InteropServices/ImporterEventKind.cs
System.Runtime.InteropServices/InAttribute.cs
System.Runtime.InteropServices/InterfaceTypeAttribute.cs
System.Runtime.InteropServices/LCIDConversionAttribute.cs
System.Runtime.InteropServices/LayoutKind.cs
System.Runtime.InteropServices/Marshal.cs
System.Runtime.InteropServices/MarshalAsAttribute.cs
System.Runtime.InteropServices/OptionalAttribute.cs
System.Runtime.InteropServices/OutAttribute.cs
System.Runtime.InteropServices/PreserveSigAttribute.cs
System.Runtime.InteropServices/PrimaryInteropAssemblyAttribute.cs
System.Runtime.InteropServices/SEHException.cs
System.Runtime.InteropServices/ProgIdAttribute.cs
System.Runtime.InteropServices/StructLayoutAttribute.cs
System.Runtime.InteropServices/TYPEKIND.cs
System.Runtime.InteropServices/TypeLibExporterFlags.cs
System.Runtime.InteropServices/TypeLibFuncAttribute.cs
System.Runtime.InteropServices/TypeLibFuncFlags.cs
System.Runtime.InteropServices/TypeLibTypeAttribute.cs
System.Runtime.InteropServices/TypeLibTypeFlags.cs
System.Runtime.InteropServices/TypeLibVarAttribute.cs
System.Runtime.InteropServices/TypeLibVarFlags.cs
System.Runtime.InteropServices/UCOMTypeComp.cs
System.Runtime.InteropServices/UCOMTypeInfo.cs
System.Runtime.InteropServices/UCOMTypeLib.cs
System.Runtime.InteropServices/UnmanagedType.cs
System.Runtime.InteropServices/VarEnum.cs
System.Runtime.Remoting/ActivatedClientTypeEntry.cs
System.Runtime.Remoting/ActivatedServiceTypeEntry.cs
System.Runtime.Remoting/EnvoyInfo.cs
System.Runtime.Remoting/IObjectHandle.cs
System.Runtime.Remoting/IChannelInfo.cs
System.Runtime.Remoting/Identity.cs
System.Runtime.Remoting/IEnvoyInfo.cs
System.Runtime.Remoting/IRemotingTypeInfo.cs
System.Runtime.Remoting/ObjectHandle.cs
System.Runtime.Remoting/ObjRef.cs
System.Runtime.Remoting/RemotingConfiguration.cs
System.Runtime.Remoting/RemotingException.cs
System.Runtime.Remoting/RemotingTimeoutException.cs
System.Runtime.Remoting/RemotingServices.cs
System.Runtime.Remoting/ServerException.cs
System.Runtime.Remoting/ServerIdentity.cs
System.Runtime.Remoting/TypeEntry.cs
System.Runtime.Remoting/TypeInfo.cs
System.Runtime.Remoting/WellKnownObjectMode.cs
System.Runtime.Remoting/WellKnownClientTypeEntry.cs
System.Runtime.Remoting/WellKnownServiceTypeEntry.cs
System.Runtime.Remoting.Activation/ActivationServices.cs
System.Runtime.Remoting.Activation/ActivatorLevel.cs
System.Runtime.Remoting.Activation/AppDomainLevelActivator.cs
System.Runtime.Remoting.Activation/ConstructionLevelActivator.cs
System.Runtime.Remoting.Activation/ContextLevelActivator.cs
System.Runtime.Remoting.Activation/IActivator.cs
System.Runtime.Remoting.Activation/IConstructionCallMessage.cs
System.Runtime.Remoting.Activation/IConstructionReturnMessage.cs
System.Runtime.Remoting.Activation/RemoteActivator.cs
System.Runtime.Remoting.Activation/RemoteActivationAttribute.cs
System.Runtime.Remoting.Activation/UrlAttribute.cs
System.Runtime.Remoting.Channels/BaseChannelObjectWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelWithProperties.cs
System.Runtime.Remoting.Channels/ChannelDataStore.cs
System.Runtime.Remoting.Channels/ChannelServices.cs
System.Runtime.Remoting.Channels/ChannelSinkStackEntry.cs
System.Runtime.Remoting.Channels/ClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IChannel.cs
System.Runtime.Remoting.Channels/IChannelDataStore.cs
System.Runtime.Remoting.Channels/IChannelReceiver.cs
System.Runtime.Remoting.Channels/IChannelReceiverHook.cs
System.Runtime.Remoting.Channels/IChannelSender.cs
System.Runtime.Remoting.Channels/IChannelSinkBase.cs
System.Runtime.Remoting.Channels/IClientChannelSink.cs
System.Runtime.Remoting.Channels/IClientChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IClientFormatterSink.cs
System.Runtime.Remoting.Channels/IClientFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/IClientResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/IServerResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerDispatchSink.cs
System.Runtime.Remoting.Channels/ServerDispatchSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSink.cs
System.Runtime.Remoting.Channels/IServerChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/IServerFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/ITransportHeaders.cs
System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerProcessing.cs
System.Runtime.Remoting.Channels/SinkProviderData.cs
System.Runtime.Remoting.Channels/TransportHeaders.cs
System.Runtime.Remoting.Channels/CrossAppDomainChannel.cs
System.Runtime.Remoting.Contexts/Context.cs
System.Runtime.Remoting.Contexts/ContextAttribute.cs
System.Runtime.Remoting.Contexts/ContextProperty.cs
System.Runtime.Remoting.Contexts/CrossContextChannel.cs
System.Runtime.Remoting.Contexts/CrossContextDelegate.cs
System.Runtime.Remoting.Contexts/IContextAttribute.cs
System.Runtime.Remoting.Contexts/IContextProperty.cs
System.Runtime.Remoting.Contexts/IContributeClientContextSink.cs
System.Runtime.Remoting.Contexts/IContributeDynamicSink.cs
System.Runtime.Remoting.Contexts/IContributeEnvoySink.cs
System.Runtime.Remoting.Contexts/IContributeObjectSink.cs
System.Runtime.Remoting.Contexts/IContributeServerContextSink.cs
System.Runtime.Remoting.Contexts/IDynamicMessageSink.cs
System.Runtime.Remoting.Contexts/IDynamicProperty.cs
System.Runtime.Remoting.Lifetime/ClientSponsor.cs
System.Runtime.Remoting.Lifetime/ILease.cs
System.Runtime.Remoting.Lifetime/ISponsor.cs
System.Runtime.Remoting.Lifetime/Lease.cs
System.Runtime.Remoting.Lifetime/LeaseManager.cs
System.Runtime.Remoting.Lifetime/LeaseSink.cs
System.Runtime.Remoting.Lifetime/LeaseState.cs
System.Runtime.Remoting.Lifetime/LifetimeServices.cs
System.Runtime.Remoting.Messaging/ArgInfo.cs
System.Runtime.Remoting.Messaging/AsyncResult.cs
System.Runtime.Remoting.Messaging/CallContext.cs
System.Runtime.Remoting.Messaging/ClientContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ConstructionCall.cs
System.Runtime.Remoting.Messaging/ConstructionCallDictionary.cs
System.Runtime.Remoting.Messaging/ConstructionResponse.cs
System.Runtime.Remoting.Messaging/EnvoyTerminatorSink.cs
System.Runtime.Remoting.Messaging/Header.cs
System.Runtime.Remoting.Messaging/HeaderHandler.cs
System.Runtime.Remoting.Messaging/ErrorMessage.cs
System.Runtime.Remoting.Messaging/IInternalMessage.cs
System.Runtime.Remoting.Messaging/IMessage.cs
System.Runtime.Remoting.Messaging/IMessageCtrl.cs
System.Runtime.Remoting.Messaging/IMessageSink.cs
System.Runtime.Remoting.Messaging/IMethodCallMessage.cs
System.Runtime.Remoting.Messaging/IMethodMessage.cs
System.Runtime.Remoting.Messaging/IMethodReturnMessage.cs
System.Runtime.Remoting.Messaging/IRemotingFormatter.cs
System.Runtime.Remoting.Messaging/InternalMessageWrapper.cs
System.Runtime.Remoting.Messaging/LogicalCallContext.cs
System.Runtime.Remoting.Messaging/MessageSurrogateFilter.cs
System.Runtime.Remoting.Messaging/MethodCall.cs
System.Runtime.Remoting.Messaging/MethodCallMessageWrapper.cs
System.Runtime.Remoting.Messaging/MethodResponse.cs
System.Runtime.Remoting.Messaging/MethodCallDictionary.cs
System.Runtime.Remoting.Messaging/MethodDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnMessageWrapper.cs
System.Runtime.Remoting.Messaging/MonoMethodMessage.cs
System.Runtime.Remoting.Messaging/OneWayAttribute.cs
System.Runtime.Remoting.Messaging/RemotingSurrogateSelector.cs
System.Runtime.Remoting.Messaging/RemotingSurrogate.cs
System.Runtime.Remoting.Messaging/ReturnMessage.cs
System.Runtime.Remoting.Messaging/ServerContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ServerObjectTerminatorSink.cs
System.Runtime.Remoting.Messaging/StackBuilderSink.cs
System.Runtime.Remoting.Messaging/CADMessages.cs
System.Runtime.Remoting.Metadata/SoapAttribute.cs
System.Runtime.Remoting.Metadata/SoapFieldAttribute.cs
System.Runtime.Remoting.Metadata/SoapMethodAttribute.cs
System.Runtime.Remoting.Metadata/SoapOption.cs
System.Runtime.Remoting.Metadata/SoapParameterAttribute.cs
System.Runtime.Remoting.Metadata/SoapTypeAttribute.cs
System.Runtime.Remoting.Metadata/XmlFieldOrderOption.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/ISoapXsd.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapAnyUri.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntity.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapToken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapBase64Binary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHexBinary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonthDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYear.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDate.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapId.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNormalizedString.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYearMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDateTime.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdref.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNcName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNotation.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdrefs.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDuration.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtoken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapQName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntities.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapLanguage.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtokens.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapTime.cs
System.Runtime.Remoting.Proxies/RealProxy.cs
System.Runtime.Remoting.Proxies/RemotingProxy.cs
System.Runtime.Remoting.Proxies/ProxyAttribute.cs
System.Runtime.Remoting.Services/ITrackingHandler.cs
System.Runtime.Remoting.Services/TrackingServices.cs
System.Runtime.Serialization/FormatterConverter.cs
System.Runtime.Serialization/FormatterServices.cs
System.Runtime.Serialization/IDeserializationCallback.cs
System.Runtime.Serialization/IFormatter.cs
System.Runtime.Serialization/IFormatterConverter.cs
System.Runtime.Serialization/IObjectReference.cs
System.Runtime.Serialization/ISerializable.cs
System.Runtime.Serialization/ISerializationSurrogate.cs
System.Runtime.Serialization/ISurrogateSelector.cs
System.Runtime.Serialization/ObjectIDGenerator.cs
System.Runtime.Serialization/ObjectManager.cs
System.Runtime.Serialization/SerializationBinder.cs
System.Runtime.Serialization/SerializationEntry.cs
System.Runtime.Serialization/SerializationException.cs
System.Runtime.Serialization/SerializationInfo.cs
System.Runtime.Serialization/SerializationInfoEnumerator.cs
System.Runtime.Serialization/StreamingContext.cs
System.Runtime.Serialization/StreamingContextStates.cs
System.Runtime.Serialization/SurrogateSelector.cs
System.Runtime.Serialization.Formatters/FormatterAssemblyStyle.cs
System.Runtime.Serialization.Formatters/FormatterTopObjectStyle.cs
System.Runtime.Serialization.Formatters/FormatterTypeStyle.cs
System.Runtime.Serialization.Formatters/IFieldInfo.cs
System.Runtime.Serialization.Formatters/InternalArrayTypeE.cs
System.Runtime.Serialization.Formatters/InternalElementTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberValueE.cs
System.Runtime.Serialization.Formatters/InternalNameSpaceE.cs
System.Runtime.Serialization.Formatters/InternalObjectPositionE.cs
System.Runtime.Serialization.Formatters/InternalObjectTypeE.cs
System.Runtime.Serialization.Formatters/InternalParseStateE.cs
System.Runtime.Serialization.Formatters/InternalParseTypeE.cs
System.Runtime.Serialization.Formatters/InternalPrimitiveTypeE.cs
System.Runtime.Serialization.Formatters/InternalSerializerTypeE.cs
System.Runtime.Serialization.Formatters/ISoapMessage.cs
System.Runtime.Serialization.Formatters/ServerFault.cs
System.Runtime.Serialization.Formatters/SoapFault.cs
System.Runtime.Serialization.Formatters/SoapMessage.cs
System.Runtime.Serialization.Formatters.Binary/BinaryFormatter.cs
System.Runtime.Serialization.Formatters.Binary/BinaryCommon.cs
System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs
System.Runtime.Serialization.Formatters.Binary/ObjectWriter.cs
System.Runtime.Serialization.Formatters.Binary/MessageFormatter.cs
System.Security/CodeAccessPermission.cs
System.Security/IEvidenceFactory.cs
System.Security/IPermission.cs
System.Security/ISecurityEncodable.cs
System.Security/ISecurityPolicyEncodable.cs
System.Security/IStackWalk.cs
System.Security/NamedPermissionSet.cs
System.Security/PermissionSet.cs
System.Security/PolicyLevelType.cs
System.Security/SecurityElement.cs
System.Security/SecurityException.cs
System.Security/SecurityManager.cs
System.Security/SecurityZone.cs
System.Security/SuppressUnmanagedCodeSecurityAttribute.cs
System.Security/UnverifiableCodeAttribute.cs
System.Security/VerificationException.cs
System.Security/XmlSyntaxException.cs
System.Security.Cryptography/AsymmetricAlgorithm.cs
System.Security.Cryptography/AsymmetricKeyExchangeDeformatter.cs
System.Security.Cryptography/AsymmetricKeyExchangeFormatter.cs
System.Security.Cryptography/AsymmetricSignatureDeformatter.cs
System.Security.Cryptography/AsymmetricSignatureFormatter.cs
System.Security.Cryptography/CipherMode.cs
System.Security.Cryptography/CryptoAPITransform.cs
System.Security.Cryptography/CryptoConfig.cs
System.Security.Cryptography/CryptographicException.cs
System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs
System.Security.Cryptography/CryptoStream.cs
System.Security.Cryptography/CryptoStreamMode.cs
System.Security.Cryptography/CspParameters.cs
System.Security.Cryptography/CspProviderFlags.cs
System.Security.Cryptography/DeriveBytes.cs
System.Security.Cryptography/DES.cs
System.Security.Cryptography/DESCryptoServiceProvider.cs
System.Security.Cryptography/DSA.cs
System.Security.Cryptography/DSACryptoServiceProvider.cs
System.Security.Cryptography/DSAParameters.cs
System.Security.Cryptography/DSASignatureDeformatter.cs
System.Security.Cryptography/DSASignatureFormatter.cs
System.Security.Cryptography/FromBase64Transform.cs
System.Security.Cryptography/HashAlgorithm.cs
System.Security.Cryptography/HMACSHA1.cs
System.Security.Cryptography/ICryptoTransform.cs
System.Security.Cryptography/KeyedHashAlgorithm.cs
System.Security.Cryptography/KeySizes.cs
System.Security.Cryptography/MACTripleDES.cs
System.Security.Cryptography/MaskGenerationMethod.cs
System.Security.Cryptography/MD5.cs
System.Security.Cryptography/MD5CryptoServiceProvider.cs
System.Security.Cryptography/PaddingMode.cs
System.Security.Cryptography/PasswordDeriveBytes.cs
System.Security.Cryptography/PKCS1MaskGenerationMethod.cs
System.Security.Cryptography/RandomNumberGenerator.cs
System.Security.Cryptography/RC2.cs
System.Security.Cryptography/RC2CryptoServiceProvider.cs
System.Security.Cryptography/Rijndael.cs
System.Security.Cryptography/RijndaelManaged.cs
System.Security.Cryptography/RNGCryptoServiceProvider.cs
System.Security.Cryptography/RSA.cs
System.Security.Cryptography/RSACryptoServiceProvider.cs
System.Security.Cryptography/RSAOAEPKeyExchangeDeformatter.cs
System.Security.Cryptography/RSAOAEPKeyExchangeFormatter.cs
System.Security.Cryptography/RSAParameters.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeDeformatter.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeFormatter.cs
System.Security.Cryptography/RSAPKCS1SignatureDeformatter.cs
System.Security.Cryptography/RSAPKCS1SignatureFormatter.cs
System.Security.Cryptography/SHA1.cs
System.Security.Cryptography/SHA1CryptoServiceProvider.cs
System.Security.Cryptography/SHA1Managed.cs
System.Security.Cryptography/SHA256.cs
System.Security.Cryptography/SHA256Managed.cs
System.Security.Cryptography/SHA384.cs
System.Security.Cryptography/SHA384Managed.cs
System.Security.Cryptography/SHA512.cs
System.Security.Cryptography/SHA512Managed.cs
System.Security.Cryptography/SignatureDescription.cs
System.Security.Cryptography/SymmetricAlgorithm.cs
System.Security.Cryptography/ToBase64Transform.cs
System.Security.Cryptography/TripleDES.cs
System.Security.Cryptography/TripleDESCryptoServiceProvider.cs
System.Security.Cryptography.X509Certificates/X509Certificate.cs
System.Security.Permissions/CodeAccessSecurityAttribute.cs
System.Security.Permissions/EnvironmentPermission.cs
System.Security.Permissions/EnvironmentPermissionAccess.cs
System.Security.Permissions/EnvironmentPermissionAttribute.cs
System.Security.Permissions/FileDialogPermissionAccess.cs
System.Security.Permissions/FileDialogPermissionAttribute.cs
System.Security.Permissions/FileIOPermission.cs
System.Security.Permissions/FileIOPermissionAccess.cs
System.Security.Permissions/FileIOPermissionAttribute.cs
System.Security.Permissions/IsolatedStorageContainment.cs
System.Security.Permissions/IsolatedStorageFilePermissionAttribute.cs
System.Security.Permissions/IsolatedStoragePermission.cs
System.Security.Permissions/IsolatedStoragePermissionAttribute.cs
System.Security.Permissions/IUnrestrictedPermission.cs
System.Security.Permissions/PermissionSetAttribute.cs
System.Security.Permissions/PermissionState.cs
System.Security.Permissions/PrincipalPermissionAttribute.cs
System.Security.Permissions/PublisherIdentityPermission.cs
System.Security.Permissions/ReflectionPermission.cs
System.Security.Permissions/ReflectionPermissionAttribute.cs
System.Security.Permissions/ReflectionPermissionFlag.cs
System.Security.Permissions/RegistryPermissionAccess.cs
System.Security.Permissions/RegistryPermissionAttribute.cs
System.Security.Permissions/SecurityAction.cs
System.Security.Permissions/SecurityAttribute.cs
System.Security.Permissions/SecurityPermission.cs
System.Security.Permissions/SecurityPermissionAttribute.cs
System.Security.Permissions/SecurityPermissionFlag.cs
System.Security.Permissions/SiteIdentityPermissionAttribute.cs
System.Security.Permissions/StrongNameIdentityPermission.cs
System.Security.Permissions/StrongNamePermissionAttribute.cs
System.Security.Permissions/StrongNamePublicKeyBlob.cs
System.Security.Permissions/UIPermissionAttribute.cs
System.Security.Permissions/UIPermissionClipboard.cs
System.Security.Permissions/UIPermissionWindow.cs
System.Security.Permissions/UrlIdentityPermissionAttribute.cs
System.Security.Permissions/ZoneIdentityPermissionAttribute.cs
System.Security.Policy/AllMembershipCondition.cs
System.Security.Policy/ApplicationDirectoryMembershipCondition.cs
System.Security.Policy/CodeGroup.cs
System.Security.Policy/Evidence.cs
System.Security.Policy/FileCodeGroup.cs
System.Security.Policy/IIdentityPermissionFactory.cs
System.Security.Policy/IMembershipCondition.cs
System.Security.Policy/PolicyException.cs
System.Security.Policy/PolicyLevel.cs
System.Security.Policy/PolicyStatement.cs
System.Security.Policy/PolicyStatementAttribute.cs
System.Security.Policy/Publisher.cs
System.Security.Policy/PublisherMembershipCondition.cs
System.Security.Policy/StrongName.cs
System.Security.Principal/GenericIdentity.cs
System.Security.Principal/GenericPrincipal.cs
System.Security.Principal/IIdentity.cs
System.Security.Principal/IPrincipal.cs
System.Security.Principal/PrincipalPolicy.cs
System.Security.Principal/WindowsAccountType.cs
System.Security.Principal/WindowsBuiltInRole.cs
System.Security.Principal/WindowsIdentity.cs
System.Security.Principal/WindowsImpersonationContext.cs
System.Text/ASCIIEncoding.cs
System.Text/Decoder.cs
System.Text/Encoder.cs
System.Text/Encoding.cs
System.Text/Latin1Encoding.cs
System.Text/StringBuilder.cs
System.Text/UnicodeEncoding.cs
System.Text/UTF7Encoding.cs
System.Text/UTF8Encoding.cs
System.Threading/ApartmentState.cs
System.Threading/AutoResetEvent.cs
System.Threading/Interlocked.cs
System.Threading/IOCompletionCallback.cs
System.Threading/LockCookie.cs
System.Threading/ManualResetEvent.cs
System.Threading/Monitor.cs
System.Threading/Mutex.cs
System.Threading/NativeEventCalls.cs
System.Threading/NativeOverlapped.cs
System.Threading/Overlapped.cs
System.Threading/ReaderWriterLock.cs
System.Threading/RegisteredWaitHandle.cs
System.Threading/SynchronizationLockException.cs
System.Threading/Thread.cs
System.Threading/ThreadAbortException.cs
System.Threading/ThreadInterruptedException.cs
System.Threading/ThreadPool.cs
System.Threading/ThreadPriority.cs
System.Threading/ThreadStart.cs
System.Threading/ThreadState.cs
System.Threading/ThreadStateException.cs
System.Threading/Timeout.cs
System.Threading/Timer.cs
System.Threading/TimerCallback.cs
System.Threading/WaitCallback.cs
System.Threading/WaitHandle.cs
System.Threading/WaitOrTimerCallback.cs

svn path=/trunk/mcs/; revision=12970

21 years ago2003-03-31 Nick Drochak <ndrochak@gol.com>
Nick Drochak [Mon, 31 Mar 2003 12:50:26 +0000 (12:50 -0000)]
2003-03-31  Nick Drochak <ndrochak@gol.com>

* makefile.gnu: NUnit.Framework.dll now in class/lib

svn path=/trunk/mcs/; revision=12969

21 years ago* System.Drawing.Design/ToolboxItemCollection.cs stubed
Martin Willemoes Hansen [Mon, 31 Mar 2003 12:45:58 +0000 (12:45 -0000)]
* System.Drawing.Design/ToolboxItemCollection.cs stubed

svn path=/trunk/mcs/; revision=12968

21 years ago* Stubed rest of System.ComponentModel
Martin Willemoes Hansen [Mon, 31 Mar 2003 11:52:28 +0000 (11:52 -0000)]
* Stubed rest of System.ComponentModel

svn path=/trunk/mcs/; revision=12967

21 years ago* ILParser.jay: Concat slashed names properly
Jackson Harper [Mon, 31 Mar 2003 06:35:25 +0000 (06:35 -0000)]
* ILParser.jay: Concat slashed names properly

svn path=/trunk/mcs/; revision=12966

21 years ago* ILParser.jay: Implement most of type
Jackson Harper [Mon, 31 Mar 2003 06:27:46 +0000 (06:27 -0000)]
* ILParser.jay: Implement most of type

svn path=/trunk/mcs/; revision=12965

21 years ago2003-03-29 Gaurav Vaish <gvaish_mono@lycos.com>
Gaurav Vaish [Mon, 31 Mar 2003 05:39:45 +0000 (05:39 -0000)]
2003-03-29  Gaurav Vaish <gvaish_mono@lycos.com>

* cs1518-2.cs:   Added comment describing the error.

svn path=/trunk/mcs/; revision=12963

21 years ago2003-03-31 Gaurav Vaish <gvaish_mono@lycos.com>
Gaurav Vaish [Mon, 31 Mar 2003 05:37:47 +0000 (05:37 -0000)]
2003-03-31  Gaurav Vaish <gvaish_mono@lycos.com>

* cs-parser.jay: Attributes cannot be applied to
                 namespaces. Fixes #40473

svn path=/trunk/mcs/; revision=12962

21 years ago2003-03-29 Gaurav Vaish <gvaish_mono@lycos.com>
Gaurav Vaish [Mon, 31 Mar 2003 05:17:24 +0000 (05:17 -0000)]
2003-03-29  Gaurav Vaish <gvaish_mono@lycos.com>

* cs1518-2.cs:   Added new test.

svn path=/trunk/mcs/; revision=12959

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:39:40 +0000 (04:39 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * makefile.gnu: Added System.Design to build

svn path=/trunk/mcs/; revision=12958

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:35:23 +0000 (04:35 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * UITypeEditor.cs: Removed from build.

svn path=/trunk/mcs/; revision=12957

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:34:08 +0000 (04:34 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * list.unix: Added UITypeEditor.cs.

svn path=/trunk/mcs/; revision=12956

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:33:48 +0000 (04:33 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * UITypeEditor.cs: Added
        * PaintValueEventArgs.cs: Fixed typo in namespace

svn path=/trunk/mcs/; revision=12955

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:21:41 +0000 (04:21 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * UITypeEditor.cs: Removed because it shan't be here

svn path=/trunk/mcs/; revision=12954

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 04:08:33 +0000 (04:08 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * library.build: Added back System.Design to build

svn path=/trunk/mcs/; revision=12953

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 03:59:01 +0000 (03:59 -0000)]
2003-03-31  Alan Tam <Tam@SiuLung.com>

        * System.Design.build: added reference to System.Windows.Forms
        and System.Drawing assemblies

svn path=/trunk/mcs/; revision=12952

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com>
Alan Tam [Mon, 31 Mar 2003 03:58:33 +0000 (03:58 -0000)]
2003-03-31      Alan Tam <Tam@SiuLung.com>

        * TODOAttribute.cs: Changed namespace

svn path=/trunk/mcs/; revision=12951

21 years ago2003-03-31 Alan Tam <Tam@SiuLung.com
Alan Tam [Mon, 31 Mar 2003 03:58:05 +0000 (03:58 -0000)]
2003-03-31      Alan Tam <Tam@SiuLung.com

        * CollectionEditor.cs: Fixed compilation errors.
        * ComponentDesigner.cs: Fixed compilation errors.

svn path=/trunk/mcs/; revision=12950

21 years ago* ILParser.jay: Add code from old parser to declare and define classes.
Jackson Harper [Mon, 31 Mar 2003 03:05:28 +0000 (03:05 -0000)]
* ILParser.jay: Add code from old parser to declare and define classes.

svn path=/trunk/mcs/; revision=12949

21 years ago* ExternTable.cs: Add method to lookup classes with a full name,
Jackson Harper [Mon, 31 Mar 2003 03:02:03 +0000 (03:02 -0000)]
* ExternTable.cs: Add method to lookup classes with a full name,
instead of having to have namespace and name seperate.
* ClassTable.cs: Make method that seprates full names into
name/namespaces public.

svn path=/trunk/mcs/; revision=12948

21 years agoForgot this one
Gonzalo Paniagua Javier [Sun, 30 Mar 2003 23:56:26 +0000 (23:56 -0000)]
Forgot this one

svn path=/trunk/mcs/; revision=12947

21 years agoChangeLog entry, README file added.
César Natarén [Sun, 30 Mar 2003 23:25:11 +0000 (23:25 -0000)]
ChangeLog entry, README file added.

svn path=/trunk/mcs/; revision=12946

21 years agoAdded a readme file, explaining the dependencies and build process.
César Natarén [Sun, 30 Mar 2003 23:23:07 +0000 (23:23 -0000)]
Added a readme file, explaining the dependencies and build process.

svn path=/trunk/mcs/; revision=12945

21 years ago* InstrTable.cs: Add Calli, detabify
Jackson Harper [Sun, 30 Mar 2003 23:12:24 +0000 (23:12 -0000)]
* InstrTable.cs: Add Calli, detabify

svn path=/trunk/mcs/; revision=12944

21 years agoAdded some files for the compiler's parsing phase (antlr generad files, and the gramm...
César Natarén [Sun, 30 Mar 2003 23:06:01 +0000 (23:06 -0000)]
Added some files for the compiler's parsing phase (antlr generad files, and the grammar itself).

svn path=/trunk/mcs/; revision=12943

21 years ago* Driver.cs: de-tabbify
Jackson Harper [Sun, 30 Mar 2003 22:58:14 +0000 (22:58 -0000)]
* Driver.cs: de-tabbify

svn path=/trunk/mcs/; revision=12942

21 years ago* ILTokenizer.cs: Take some special cases into account.
Jackson Harper [Sun, 30 Mar 2003 22:56:24 +0000 (22:56 -0000)]
* ILTokenizer.cs: Take some special cases into account.

svn path=/trunk/mcs/; revision=12941

21 years ago * ILTables.cs: Remove 'ptr' I can't find documentation for this
Jackson Harper [Sun, 30 Mar 2003 22:53:20 +0000 (22:53 -0000)]
* ILTables.cs: Remove 'ptr' I can't find documentation for this
keyword and ildasm does not esacpe it.

svn path=/trunk/mcs/; revision=12940

21 years ago * ILParser.jay: New grammar that I haven't made a mess of, this
Jackson Harper [Sun, 30 Mar 2003 22:43:55 +0000 (22:43 -0000)]
* ILParser.jay: New grammar that I haven't made a mess of, this
takes all the special cases into account much better.

svn path=/trunk/mcs/; revision=12939