2001-10-22 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / mcs / ChangeLog
1 2001-10-22  Ravi Pratap  <ravi@ximian.com>
2
3         * typemanager.cs (ImplementsInterface): New method to determine if a type
4         implements a given interface. Provides a nice cache too.
5
6         * expression.cs (ImplicitReferenceConversion): Update checks to use the above
7         method.
8
9         (ConvertReferenceExplicit): Ditto.
10
11         * delegate.cs (Delegate::Populate): Update to define the parameters on the 
12         various methods, with correct names etc.
13
14         * class.cs (Operator::OpType): New members Operator.UnaryPlus and 
15         Operator.UnaryNegation.
16
17         * cs-parser.jay (operator_declarator): Be a little clever in the case where
18         we have a unary plus or minus operator.
19
20         * expression.cs (Unary): Rename memebers of Operator enum to UnaryPlus and 
21         UnaryMinus.
22
23         * everywhere : update accordingly.
24
25         * everywhere : Change Negate and BitComplement to LogicalNot and OnesComplement
26         respectively.
27
28         * class.cs (Method::Define): For the case where we are implementing a method
29         inherited from an interface, we need to set the MethodAttributes.Final flag too. 
30         Also set MethodAttributes.NewSlot and MethodAttributes.HideBySig.
31         
32 2001-10-21  Ravi Pratap  <ravi@ximian.com>
33
34         * interface.cs (FindMembers): Implement to work around S.R.E
35         lameness.
36
37         * typemanager.cs (IsInterfaceType): Implement.
38
39         (FindMembers): Update to handle interface types too.
40
41         * expression.cs (ImplicitReferenceConversion): Re-write bits which
42         use IsAssignableFrom as that is not correct - it doesn't work.
43
44         * delegate.cs (DelegateInvocation): Derive from ExpressionStatement
45         and accordingly override EmitStatement.
46
47         * expression.cs (ConvertReferenceExplicit): Re-write similary, this time
48         using the correct logic :-)
49
50 2001-10-19  Ravi Pratap  <ravi@ximian.com>
51
52         * ../errors/cs-11.cs : Add to demonstrate error -11 
53
54 2001-10-17  Miguel de Icaza  <miguel@ximian.com>
55
56         * assign.cs (Assign::Resolve): Resolve right hand side first, and
57         then pass this as a hint to ResolveLValue.
58         
59         * expression.cs (FieldExpr): Add Location information
60
61         (FieldExpr::LValueResolve): Report assignment to readonly
62         variable. 
63         
64         (Expression::ExprClassFromMemberInfo): Pass location information.
65
66         (Expression::ResolveLValue): Add new method that resolves an
67         LValue. 
68
69         (Expression::DoResolveLValue): Default invocation calls
70         DoResolve. 
71
72         (Indexers): New class used to keep track of indexers in a given
73         Type. 
74
75         (IStackStore): Renamed from LValue, as it did not really describe
76         what this did.  Also ResolveLValue is gone from this interface and
77         now is part of Expression.
78
79         (ElementAccess): Depending on the element access type
80         
81         * typemanager.cs: Add `indexer_name_type' as a Core type
82         (System.Runtime.CompilerServices.IndexerNameAttribute)
83
84         * statement.cs (Goto): Take a location.
85         
86 2001-10-18  Ravi Pratap  <ravi@ximian.com>
87
88         * delegate.cs (Delegate::VerifyDelegate): New method to verify
89         if two delegates are compatible.
90
91         (NewDelegate::DoResolve): Update to take care of the case when
92         we instantiate a delegate from another delegate.
93
94         * typemanager.cs (FindMembers): Don't even try to look up members
95         of Delegate types for now.
96
97 2001-10-18  Ravi Pratap  <ravi@ximian.com>
98
99         * delegate.cs (NewDelegate): New class to take care of delegate
100         instantiation.
101
102         * expression.cs (New): Split the delegate related code out into 
103         the NewDelegate class.
104
105         * delegate.cs (DelegateInvocation): New class to handle delegate 
106         invocation.
107
108         * expression.cs (Invocation): Split out delegate related code into
109         the DelegateInvocation class.
110
111 2001-10-17  Ravi Pratap  <ravi@ximian.com>
112
113         * expression.cs (New::DoResolve): Implement delegate creation fully
114         and according to the spec.
115
116         (New::DoEmit): Update to handle delegates differently.
117
118         (Invocation::FullMethodDesc): Fix major stupid bug thanks to me
119         because of which we were printing out arguments in reverse order !
120
121         * delegate.cs (VerifyMethod): Implement to check if the given method
122         matches the delegate.
123
124         (FullDelegateDesc): Implement.
125
126         (VerifyApplicability): Implement.
127
128         * expression.cs (Invocation::DoResolve): Update to accordingly handle
129         delegate invocations too.
130
131         (Invocation::Emit): Ditto.
132
133         * ../errors/cs1593.cs : Added.
134
135         * ../errors/cs1594.cs : Added.
136
137         * delegate.cs (InstanceExpression, TargetMethod): New properties.
138
139 2001-10-16  Ravi Pratap  <ravi@ximian.com>
140
141         * typemanager.cs (intptr_type): Core type for System.IntPtr
142
143         (InitCoreTypes): Update for the same.
144
145         (iasyncresult_type, asynccallback_type): Ditto.
146
147         * delegate.cs (Populate): Fix to use System.Intptr as it is indeed
148         correct.
149
150         * typemanager.cs (AddDelegateType): Store a pointer to the Delegate class
151         too.
152
153         * delegate.cs (ConstructorBuilder, InvokeBuilder, ...): New members to hold
154         the builders for the 4 members of a delegate type :-)
155
156         (Populate): Define the BeginInvoke and EndInvoke methods on the delegate
157         type.
158
159         * expression.cs (New::DoResolve): Implement guts for delegate creation.
160
161         * ../errors/errors.txt : Update for an error (-11) which only we catch :-)
162
163 2001-10-15  Miguel de Icaza  <miguel@ximian.com>
164
165         * statement.cs (Break::Emit): Implement.   
166         (Continue::Emit): Implement.
167
168         (For::Emit): Track old being/end loops;  Set Begin loop, ack end loop
169         (While::Emit): Track old being/end loops;  Set Begin loop, ack end loop
170         (Do::Emit): Track old being/end loops;  Set Begin loop, ack end loop
171         (Foreach::Emit): Track old being/end loops;  Set Begin loop, ack
172         end loop
173         
174         * codegen.cs (EmitContext::LoopEnd, EmitContext::LoopBegin): New
175         properties that track the label for the current loop (begin of the
176         loop and end of the loop).
177
178 2001-10-15  Ravi Pratap  <ravi@ximian.com>
179
180         * delegate.cs (Emit): Get rid of it as there doesn't seem to be any ostensible
181         use of emitting anything at all.
182
183         * class.cs, rootcontext.cs : Get rid of calls to the same.
184
185         * delegate.cs (DefineDelegate): Make sure the class we define is also sealed.
186
187         (Populate): Define the constructor correctly and set the implementation
188         attributes.
189
190         * typemanager.cs (delegate_types): New hashtable to hold delegates that
191         have been defined.
192
193         (AddDelegateType): Implement.
194
195         (IsDelegateType): Implement helper method.
196
197         * delegate.cs (DefineDelegate): Use AddDelegateType instead of AddUserType.
198
199         * expression.cs (New::DoResolve): Check if we are trying to instantiate a delegate type
200         and accordingly handle it.
201
202         * delegate.cs (Populate): Take TypeContainer argument.
203         Implement bits to define the Invoke method. However, I still haven't figured out
204         how to take care of the native int bit :-(
205
206         * cs-parser.jay (delegate_declaration): Fixed the bug that I had introduced :-) 
207         Qualify the name of the delegate, not its return type !
208
209         * expression.cs (ImplicitReferenceConversion): Implement guts of implicit array
210         conversion.
211
212         (StandardConversionExists): Checking for array types turns out to be recursive.
213
214         (ConvertReferenceExplicit): Implement array conversion.
215
216         (ExplicitReferenceConversionExists): New method to determine precisely that :-)
217         
218 2001-10-12  Ravi Pratap  <ravi@ximian.com>
219
220         * cs-parser.jay (delegate_declaration): Store the fully qualified
221         name as it is a type declaration.
222
223         * delegate.cs (ReturnType, Name): Rename members to these. Make them 
224         readonly.
225
226         (DefineDelegate): Renamed from Define. Does the same thing essentially,
227         as TypeContainer::DefineType.
228
229         (Populate): Method in which all the definition of the various methods (Invoke)
230         etc is done.
231
232         (Emit): Emit any code, if necessary. I am not sure about this really, but let's
233         see.
234         
235         (CloseDelegate): Finally creates the delegate.
236
237         * class.cs (TypeContainer::DefineType): Update to define delegates.
238         (Populate, Emit and CloseType): Do the same thing here too.
239
240         * rootcontext.cs (ResolveTree, PopulateTypes, EmitCode, CloseTypes): Include
241         delegates in all these operations.
242
243 2001-10-14  Miguel de Icaza  <miguel@ximian.com>
244
245         * expression.cs: LocalTemporary: a new expression used to
246         reference a temporary that has been created.
247
248         * assign.cs: Handle PropertyAccess back here, so that we can
249         provide the proper semantic access to properties.
250
251         * expression.cs (Expression::ConvertReferenceExplicit): Implement
252         a few more explicit conversions. 
253
254         * modifiers.cs: `NEW' modifier maps to HideBySig.
255
256         * expression.cs (PropertyExpr): Make this into an
257         ExpressionStatement, and support the EmitStatement code path. 
258
259         Perform get/set error checking, clean up the interface.
260
261         * assign.cs: recognize PropertyExprs as targets, and if so, turn
262         them into toplevel access objects.
263
264 2001-10-12  Miguel de Icaza  <miguel@ximian.com>
265
266         * expression.cs: PropertyExpr::PropertyExpr: use work around the
267         SRE.
268
269         * typemanager.cs: Keep track here of our PropertyBuilders again to
270         work around lameness in SRE.
271
272 2001-10-11  Miguel de Icaza  <miguel@ximian.com>
273
274         * expression.cs (LValue::LValueResolve): New method in the
275         interface, used to perform a second resolution pass for LValues. 
276         
277         (This::DoResolve): Catch the use of this in static methods.
278
279         (This::LValueResolve): Implement.
280
281         (This::Store): Remove warning, assigning to `this' in structures
282         is 
283
284         (Invocation::Emit): Deal with invocation of
285         methods on value types.  We need to pass the address to structure
286         methods rather than the object itself.  (The equivalent code to
287         emit "this" for structures leaves the entire structure on the
288         stack instead of a pointer to it). 
289
290         (ParameterReference::DoResolve): Compute the real index for the
291         argument based on whether the method takes or not a `this' pointer
292         (ie, the method is static).
293
294         * codegen.cs (EmitContext::GetTemporaryStorage): Used to store
295         value types returned from functions when we need to invoke a
296         method on the sturcture.
297         
298
299 2001-10-11  Ravi Pratap  <ravi@ximian.com>
300
301         * class.cs (TypeContainer::DefineType): Method to actually do the business of
302         defining the type in the Modulebuilder or Typebuilder. This is to take
303         care of nested types which need to be defined on the TypeBuilder using
304         DefineNestedMethod.
305
306         (TypeContainer::GetClassBases): Implement. Essentially the code from the 
307         methods in RootContext, only ported to be part of TypeContainer.
308
309         (TypeContainer::GetInterfaceOrClass): Ditto.
310
311         (TypeContainer::LookupInterfaceOrClass, ::MakeFQN): Ditto.
312
313         * interface.cs (Interface::DefineInterface): New method. Does exactly
314         what RootContext.CreateInterface did earlier, only it takes care of nested types 
315         too.
316
317         (Interface::GetInterfaces): Move from RootContext here and port.
318
319         (Interface::GetInterfaceByName): Same here.
320
321         * rootcontext.cs (ResolveTree): Re-write.
322
323         (PopulateTypes): Re-write.
324
325         * class.cs (TypeContainer::Populate): Populate nested types too.
326         (TypeContainer::Emit): Emit nested members too.
327
328         * typemanager.cs (AddUserType): Do not make use of the FullName property,
329         instead just use the name argument passed in as it is already fully
330         qualified.
331
332         (FindMembers): Check in the Builders to TypeContainer mapping instead of the name
333         to TypeContainer mapping to see if a type is user-defined.
334
335         * class.cs (TypeContainer::CloseType): Implement. 
336
337         (TypeContainer::DefineDefaultConstructor): Use Basename, not Name while creating
338         the default constructor.
339         
340         (TypeContainer::Populate): Fix minor bug which led to creating default constructors
341         twice.
342
343         (Constructor::IsDefault): Fix up logic to determine if it is the default constructor
344
345         * interface.cs (CloseType): Create the type here.
346         
347         * rootcontext.cs (CloseTypes): Re-write to recursively close types by running through
348         the hierarchy.
349
350         Remove all the methods which are now in TypeContainer.
351
352 2001-10-10  Ravi Pratap  <ravi@ximian.com>
353
354         * delegate.cs (Define): Re-write bits to define the delegate
355         correctly.
356
357 2001-10-10  Miguel de Icaza  <miguel@ximian.com>
358
359         * makefile: Renamed the compiler to `mcs.exe' instead of compiler.exe
360
361         * expression.cs (ImplicitReferenceConversion): handle null as well
362         as a source to convert to any reference type.
363
364         * statement.cs (Return): Perform any implicit conversions to
365         expected return type.  
366
367         Validate use of return statement.  
368
369         * codegen.cs (EmitContext): Pass the expected return type here.
370
371         * class.cs (Method, Constructor, Property): Pass expected return
372         type to EmitContext.
373
374 2001-10-09  Miguel de Icaza  <miguel@ximian.com>
375
376         * expression.cs: Make DoResolve take an EmitContext instead of a
377         TypeContainer.
378
379         Replaced `l' and `location' for `loc', for consistency.
380         
381         (Error, Warning): Remove unneeded Tc argument.
382
383         * assign.cs, literal.cs, constant.cs: Update to new calling
384         convention. 
385         
386         * codegen.cs: EmitContext now contains a flag indicating whether
387         code is being generated in a static method or not.
388
389         * cs-parser.jay: DecomposeQI, new function that replaces the old
390         QualifiedIdentifier.  Now we always decompose the assembled
391         strings from qualified_identifier productions into a group of
392         memberaccesses.
393
394 2001-10-08  Miguel de Icaza  <miguel@ximian.com>
395
396         * rootcontext.cs: Deal with field-less struct types correctly now
397         by passing the size option to Define Type.
398
399         * class.cs: Removed hack that created one static field. 
400
401 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
402
403         * statement.cs: Moved most of the code generation here. 
404
405 2001-10-09  Ravi Pratap  <ravi@ximian.com>
406
407         * expression.cs (New::DoResolve): Revert changes for array creation, doesn't
408         seem very right.
409
410         (ElementAccess): Remove useless bits for now - keep checks as the spec
411         says.
412
413 2001-10-08  Ravi Pratap  <ravi@ximian.com>
414
415         * expression.cs (ElementAccess::DoResolve): Remove my crap code
416         and start performing checks according to the spec.
417
418 2001-10-07  Ravi Pratap  <ravi@ximian.com>
419
420         * cs-parser.jay (type_suffix*): Remove - they are redundant. Use
421         rank_specifiers instead.
422
423         (rank_specifiers): Change the order in which the rank specifiers are stored
424
425         (local_variable_declaration): Use opt_rank_specifier instead of type_suffixes.
426
427         * expression.cs (ElementAccess): Implement the LValue interface too.
428         
429 2001-10-06  Ravi Pratap  <ravi@ximian.com>
430         
431         * expression.cs (ConvertExplicitStandard): Add. Same as ConvertExplicit
432         except that user defined conversions are not included.
433
434         (UserDefinedConversion): Update to use the ConvertExplicitStandard to 
435         perform the conversion of the return type, if necessary.
436
437         (New::DoResolve): Check whether we are creating an array or an object
438         and accordingly do the needful.
439
440         (New::Emit): Same here.
441
442         (New::DoResolve): Implement guts of array creation.
443
444         (New::FormLookupType): Helper function.
445
446 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
447
448         * codegen.cs: Removed most of the code generation here, and move the
449         corresponding code generation bits to the statement classes. 
450
451         Added support for try/catch/finalize and throw.
452         
453         * cs-parser.jay: Added support for try/catch/finalize.
454
455         * class.cs: Catch static methods having the flags override,
456         virtual or abstract.
457
458         * expression.cs (UserCast): This user cast was not really doing
459         what it was supposed to do.  Which is to be born in fully resolved
460         state.  Parts of the resolution were being performed at Emit time! 
461
462         Fixed this code.
463
464 2001-10-05  Miguel de Icaza  <miguel@ximian.com>
465
466         * expression.cs: Implicity convert the result from UserCast.
467
468 2001-10-05  Ravi Pratap  <ravi@ximian.com>
469
470         * expression.cs (Expression::FindMostEncompassingType): Fix bug which
471         prevented it from working correctly. 
472
473         (ConvertExplicit): Make the first try, a call to ConvertImplicitStandard, not
474         merely ConvertImplicit.
475
476 2001-10-05  Miguel de Icaza  <miguel@ximian.com>
477
478         * typemanager.cs: Make the LookupTypeContainer function static,
479         and not per-instance.  
480
481         * class.cs: Make static FindMembers (the one that takes a Type
482         argument). 
483
484         * codegen.cs: Add EmitForeach here.
485
486         * cs-parser.jay: Make foreach a toplevel object instead of the
487         inline expansion, as we need to perform semantic analysis on it. 
488
489 2001-10-05  Ravi Pratap  <ravi@ximian.com>
490
491         * expression.cs (Expression::ImplicitUserConversion): Rename to
492         UserDefinedConversion.
493
494         (Expression::UserDefinedConversion): Take an extra argument specifying 
495         whether we look for explicit user conversions too.
496
497         (Expression::ImplicitUserConversion): Make it a call to UserDefinedConversion.
498
499         (UserDefinedConversion): Incorporate support for user defined explicit conversions.
500
501         (ExplicitUserConversion): Make it a call to UserDefinedConversion
502         with the appropriate arguments.
503
504         * cs-parser.jay (cast_expression): Record location too.
505
506         * expression.cs (Cast): Record location info.
507
508         (Expression::ConvertExplicit): Take location argument.
509
510         (UserImplicitCast): Change name to UserCast. Take an extra constructor argument
511         to determine if we are doing explicit conversions.
512
513         (UserCast::Emit): Update accordingly.
514
515         (Expression::ConvertExplicit): Report an error if everything fails.
516
517         * ../errors/cs0030.cs : Add.
518
519 2001-10-04  Miguel de Icaza  <miguel@ximian.com>
520
521         * modifiers.cs: If the ABSTRACT keyword is present, also set the
522         virtual and newslot bits. 
523
524         * class.cs (TypeContainer::RegisterRequiredImplementations):
525         Record methods we need.
526
527         (TypeContainer::MakeKey): Helper function to make keys for
528         MethodBases, since the Methodbase key is useless.
529
530         (TypeContainer::Populate): Call RegisterRequiredImplementations
531         before defining the methods.   
532
533         Create a mapping for method_builders_to_methods ahead of time
534         instead of inside a tight loop.
535
536         (::RequireMethods):  Accept an object as the data to set into the
537         hashtable so we can report interface vs abstract method mismatch.
538
539 2001-10-03  Miguel de Icaza  <miguel@ximian.com>
540
541         * report.cs: Make all of it static.
542
543         * rootcontext.cs: Drop object_type and value_type computations, as
544         we have those in the TypeManager anyways.
545
546         Drop report instance variable too, now it is a global.
547
548         * driver.cs: Use try/catch on command line handling.
549
550         Add --probe option to debug the error reporting system with a test
551         suite. 
552
553         * report.cs: Add support for exiting program when a probe
554         condition is reached.
555
556 2001-10-03  Ravi Pratap  <ravi@ximian.com>
557
558         * expression.cs (Binary::DoNumericPromotions): Fix the case when
559         we do a forcible conversion regardless of type, to check if 
560         ForceConversion returns a null.
561
562         (Binary::error19): Use location to report error.
563
564         (Unary::error23): Use location here too.
565
566         * ../errors/cs0019.cs : Check in.
567
568         * ../errors/cs0023.cs : Check in.
569
570         * expression.cs (Expression.MemberLookup): Return null for a rather esoteric
571         case of a non-null MethodInfo object with a length of 0 !
572
573         (Binary::ResolveOperator): Flag error if overload resolution fails to find
574         an applicable member - according to the spec :-)
575         Also fix logic to find members in base types.
576
577         (Unary::ResolveOperator): Same here.
578
579         (Unary::report23): Change name to error23 and make first argument a TypeContainer
580         as I was getting thoroughly confused between this and error19 :-)
581         
582         * expression.cs (Expression::ImplicitUserConversion): Re-write fully
583         (::FindMostEncompassedType): Implement.
584         (::FindMostEncompassingType): Implement.
585         (::StandardConversionExists): Implement.
586
587         (UserImplicitCast): Re-vamp. We now need info about most specific
588         source and target types so that we can do the necessary conversions.
589
590         (Invocation::MakeUnionSet): Completely re-write to make sure we form a proper
591         mathematical union with no duplicates.
592
593 2001-10-03  Miguel de Icaza  <miguel@ximian.com>
594
595         * rootcontext.cs (RootContext::PopulateTypes): Populate containers
596         in order from base classes to child classes, so that we can in
597         child classes look up in our parent for method names and
598         attributes (required for handling abstract, virtual, new, override
599         constructs: we need to instrospect our base class, and if we dont
600         populate the classes in order, the introspection might be
601         incorrect.  For example, a method could query its parent before
602         the parent has any methods and would determine that the parent has
603         no abstract methods (while it could have had them)).
604
605         (RootContext::CreateType): Record the order in which we define the
606         classes.
607
608 2001-10-02  Miguel de Icaza  <miguel@ximian.com>
609
610         * class.cs (TypeContainer::Populate): Also method definitions can
611         fail now, keep track of this.
612
613         (TypeContainer::FindMembers): Implement support for
614         DeclaredOnly/noDeclaredOnly flag.
615
616         (Constructor::Emit) Return the ConstructorBuilder.
617
618         (Method::Emit) Return the MethodBuilder. 
619         Check for abstract or virtual methods to be public.
620
621         * rootcontext.cs (RootContext::CreateType): Register all the
622         abstract methods required for the class to be complete and the
623         interface methods that must be implemented. 
624
625         * cs-parser.jay: Report error 501 (method requires body if it is
626         not marked abstract or extern).
627
628         * expression.cs (TypeOf::Emit): Implement.
629
630         * typemanager.cs: runtime_handle_type, new global type.
631
632         * class.cs (Property::Emit): Generate code for properties.
633
634 2001-10-02  Ravi Pratap  <ravi@ximian.com>
635
636         * expression.cs (Unary::ResolveOperator): Find operators on base type
637         too - we now conform exactly to the spec.
638
639         (Binary::ResolveOperator): Same here.
640
641         * class.cs (Operator::Define): Fix minor quirk in the tests.
642
643         * ../errors/cs0215.cs : Added.
644
645         * ../errors/cs0556.cs : Added.
646
647         * ../errors/cs0555.cs : Added.
648
649 2001-10-01  Miguel de Icaza  <miguel@ximian.com>
650
651         * cs-tokenizer.cs: Reimplemented Location to be a struct with a
652         single integer which is really efficient
653
654 2001-10-01  Ravi Pratap  <ravi@ximian.com>
655
656         *  expression.cs (Expression::ImplicitUserConversion): Use location
657         even in the case when we are examining True operators.
658  
659         * class.cs (Operator::Define): Perform extensive checks to conform
660         with the rules for operator overloading in the spec.
661
662         * expression.cs (Expression::ImplicitReferenceConversion): Implement
663         some of the other conversions mentioned in the spec.
664
665         * typemanager.cs (array_type): New static member for the System.Array built-in
666         type.
667
668         (cloneable_interface): For System.ICloneable interface.
669
670         * driver.cs (Driver::Driver): Initialize TypeManager's core types even before
671         we start resolving the tree and populating types.
672
673         * ../errors/errors.txt : Update for error numbers -7, -8, -9, -10
674  
675 2001-10-01  Miguel de Icaza  <miguel@ximian.com>
676
677         * expression.cs (Expression::ExprClassFromMemberInfo,
678         Expression::Literalize): Create literal expressions from
679         FieldInfos which are literals.
680
681         (ConvertNumericExplicit, ImplicitNumericConversion): Fix a few
682         type casts, because they were wrong.  The test suite in tests
683         caught these ones.
684
685         (ImplicitNumericConversion): ushort to ulong requires a widening
686         cast. 
687
688         Int32 constant to long requires widening cast as well.
689
690         * literal.cs (LongLiteral::EmitLong): Do not generate i4 constants
691         for integers because the type on the stack is not i4.
692
693 2001-09-30  Miguel de Icaza  <miguel@ximian.com>
694
695         * expression.cs (report118): require location argument. 
696
697         * parameter.cs: Do not dereference potential null value.
698
699         * class.cs: Catch methods that lack the `new' keyword when
700         overriding a name.  Report warnings when `new' is used without
701         anything being there to override.
702
703         * modifiers.cs: Handle `NEW' as MethodAttributes.NewSlot.
704
705         * class.cs: Only add constructor to hashtable if it is non-null
706         (as now constructors can fail on define).
707
708         (TypeManager, Class, Struct): Take location arguments.
709
710         Catch field instance initialization in structs as errors.
711
712         accepting_filter: a new filter for FindMembers that is static so
713         that we dont create an instance per invocation.
714
715         (Constructor::Define): Catch errors where a struct constructor is
716         parameterless 
717
718         * cs-parser.jay: Pass location information for various new
719         constructs. 
720         
721         * delegate.cs (Delegate): take a location argument.
722
723         * driver.cs: Do not call EmitCode if there were problesm in the
724         Definition of the types, as many Builders wont be there. 
725
726         * decl.cs (Decl::Decl): Require a location argument.
727
728         * cs-tokenizer.cs: Handle properly hex constants that can not fit
729         into integers, and find the most appropiate integer for it.
730
731         * literal.cs: Implement ULongLiteral.
732
733         * rootcontext.cs: Provide better information about the location of
734         failure when CreateType fails.
735         
736 2001-09-29  Miguel de Icaza  <miguel@ximian.com>
737
738         * rootcontext.cs (RootContext::PopulateTypes): Populates structs
739         as well.
740
741         * expression.cs (Binary::CheckShiftArguments): Add missing type
742         computation.
743         (Binary::ResolveOperator): Add type to the logical and and logical
744         or, Bitwise And/Or and Exclusive Or code paths, it was missing
745         before.
746
747         (Binary::DoNumericPromotions): In the case where either argument
748         is ulong (and most signed types combined with ulong cause an
749         error) perform implicit integer constant conversions as well.
750
751 2001-09-28  Miguel de Icaza  <miguel@ximian.com>
752
753         * expression.cs (UserImplicitCast): Method should always be
754         non-null. 
755         (Invocation::BetterConversion): Simplified test for IntLiteral.
756
757         (Expression::ImplicitNumericConversion): Split this routine out.
758         Put the code that performs implicit constant integer conversions
759         here. 
760
761         (Expression::Resolve): Become a wrapper around DoResolve so we can
762         check eclass and type being set after resolve.
763
764         (Invocation::Badness): Remove this dead function
765
766         (Binary::ResolveOperator): Do not compute the expensive argumnets
767         unless we have a union for it.
768
769         (Probe::Emit): Is needs to do an isinst and then
770         compare against null.
771
772         (::CanConvert): Added Location argument.  If the Location argument
773         is null (Location.Null), then we do not report errors.  This is
774         used by the `probe' mechanism of the Explicit conversion.  We do
775         not want to generate an error for something that the user
776         explicitly requested to be casted.  But the pipeline for an
777         explicit cast first tests for potential implicit casts.
778
779         So for now, if the Location is null, it means `Probe only' to
780         avoid adding another argument.   Might have to revise this
781         strategy later.
782
783         (ClassCast): New class used to type cast objects into arbitrary
784         classes (used in Explicit Reference Conversions).
785
786         Implement `as' as well.
787
788         Reverted all the patches from Ravi below: they were broken:
789
790                 * The use of `level' as a mechanism to stop recursive
791                   invocations is wrong.  That was there just to catch the
792                   bug with a strack trace but not as a way of addressing
793                   the problem.
794
795                   To fix the problem we have to *understand* what is going
796                   on and the interactions and come up with a plan, not
797                   just get things going.
798
799                 * The use of the type conversion cache that I proposed
800                   last night had an open topic: How does this work across
801                   protection domains.  A user defined conversion might not
802                   be public in the location where we are applying the
803                   conversion, a different conversion might be selected
804                   (ie, private A->B (better) but public B->A (worse),
805                   inside A, A->B applies, but outside it, B->A will
806                   apply).
807
808                 * On top of that (ie, even if the above is solved),
809                   conversions in a cache need to be abstract.  Ie, `To
810                   convert from an Int to a Short use an OpcodeCast', not
811                   `To convert from an Int to a Short use the OpcodeCast on
812                   the variable 5' (which is what this patch was doing).
813         
814 2001-09-28  Ravi Pratap  <ravi@ximian.com>
815
816         * expression.cs (Invocation::ConversionExists): Re-write to use
817         the conversion cache
818         
819         (Expression::ConvertImplicit): Automatic bailing out if level != 0. Also
820         cache all conversions done, not just user-defined ones.
821
822         (Invocation::BetterConversion): The real culprit. Use ConversionExists
823         to determine if a conversion exists instead of acutually trying to 
824         perform the conversion. It's faster too.
825
826         (Expression::ConvertExplicit): Modify to use ConversionExists to check
827         and only then attempt the implicit conversion.
828
829 2001-09-28  Ravi Pratap  <ravi@ximian.com>
830
831         * expression.cs (ConvertImplicit): Use a cache for conversions
832         already found. Check level of recursion and bail out if necessary.
833         
834 2001-09-28  Miguel de Icaza  <miguel@ximian.com>
835
836         * typemanager.cs (string_concat_string_string, string_concat_object_object):
837         Export standard methods that we expect for string operations.
838         
839         * statement.cs (Block::UsageWarning): Track usage of variables and
840         report the errors for not used variables.
841
842         * expression.cs (Conditional::Resolve, ::Emit): Implement ?:
843         operator. 
844
845 2001-09-27  Miguel de Icaza  <miguel@ximian.com>
846
847         * codegen.cs: remove unnneded code 
848
849         * expression.cs: Removed BuiltinTypeAccess class
850
851         Fix the order in which implicit conversions are
852         done.  
853
854         The previous fixed dropped support for boxed conversions (adding a
855         test to the test suite now)
856
857         (UserImplicitCast::CanConvert): Remove test for source being null,
858         that code is broken.  We should not feed a null to begin with, if
859         we do, then we should track the bug where the problem originates
860         and not try to cover it up here.
861
862         Return a resolved expression of type UserImplicitCast on success
863         rather than true/false.  Ravi: this is what I was talking about,
864         the pattern is to use a static method as a "constructor" for
865         objects. 
866
867         Also, do not create arguments until the very last minute,
868         otherwise we always create the arguments even for lookups that
869         will never be performed. 
870
871         (UserImplicitCast::Resolve): Eliminate, objects of type
872         UserImplicitCast are born in a fully resolved state. 
873         
874         * typemanager.cs (InitCoreTypes): Init also value_type
875         (System.ValueType). 
876
877         * expression.cs (Cast::Resolve): First resolve the child expression.
878
879         (LValue): Add new method AddressOf to be used by
880         the `&' operator.  
881
882         Change the argument of Store to take an EmitContext instead of an
883         ILGenerator, because things like FieldExpr need to be able to call
884         their children expression to generate the instance code. 
885
886         (Expression::Error, Expression::Warning): Sugar functions for
887         reporting errors.
888
889         (Expression::MemberLookup): Accept a TypeContainer instead of a
890         Report as the first argument.
891
892         (Expression::ResolvePrimary): Killed.  I still want to improve
893         this as currently the code is just not right.
894
895         (Expression::ResolveMemberAccess): Simplify, but it is still
896         wrong. 
897
898         (Unary::Resolve): Catch errors in AddressOf operators.
899
900         (LocalVariableReference::Emit, ::Store, ::AddressOf): typecast
901         index to a byte for the short-version, or the compiler will choose
902         the wrong Emit call, which generates the wrong data.
903
904         (ParameterReference::Emit, ::Store): same.
905
906         (FieldExpr::AddressOf): Implement.
907         
908         * typemanager.cs: TypeManager: made public variable instead of
909         property.
910         
911         * driver.cs: document --fatal.
912
913         * report.cs (ErrorMessage, WarningMessage): new names for the old
914         Error and Warning classes.
915
916         * cs-parser.jay (member_access): Turn built-in access to types
917         into a normal simplename
918
919 2001-09-27  Ravi Pratap  <ravi@ximian.com>
920
921         * expression.cs (Invocation::BetterConversion): Fix to cope
922         with q being null, since this was introducing a bug.
923
924         * expression.cs (ConvertImplicit): Do built-in conversions first.
925
926 2001-09-27  Ravi Pratap  <ravi@ximian.com>
927
928         * expression.cs (UserImplicitCast::Resolve): Fix bug.
929
930 2001-09-27  Ravi Pratap  <ravi@ximian.com>
931
932         * class.cs (TypeContainer::AddConstructor): Fix a stupid bug
933         I had introduced long ago (what's new ?).
934
935         * expression.cs (UserImplicitCast::CanConvert): Static method to do 
936         the work of all the checking. 
937         (ConvertImplicit): Call CanConvert and only then create object if necessary.
938         (UserImplicitCast::CanConvert, ::Resolve): Re-write.
939
940         (Unary::Operator): Rename Add and Subtract to Addition and Subtraction because
941         that is the right way. 
942
943         (Invocation::MakeUnionSet): Convenience function to make unions of sets for 
944         overloading resolution. Use everywhere instead of cutting and pasting code.
945
946         (Binary::ResolveOperator): Use MakeUnionSet.
947
948         (UserImplicitCast::CanConvert, ::Resolve): Update to take care of the case when 
949         we have to convert to bool types. Not complete yet.
950         
951 2001-09-27  Miguel de Icaza  <miguel@ximian.com>
952
953         * typemanager.cs (TypeManager::CSharpName): support ushort.
954
955         * expression.cs (Expression::TryImplicitIntConversion): Attempts
956         to provide an expression that performsn an implicit constant int
957         conversion (section 6.1.6).
958         (Expression::ConvertImplicitRequired): Reworked to include
959         implicit constant expression conversions.
960
961         (Expression::ConvertNumericExplicit): Finished.
962
963         (Invocation::Emit): If InstanceExpression is null, then it means
964         that we perform a call on this.
965         
966 2001-09-26  Miguel de Icaza  <miguel@ximian.com>
967
968         * expression.cs (Unary::Emit): Remove some dead code.
969         (Probe): Implement Resolve and Emit for `is'.
970         (Expression::ConvertImplicitRequired): Attempt to do constant
971         expression conversions here.  Maybe should be moved to
972         ConvertImplicit, but I am not sure.
973         (Expression::ImplicitLongConstantConversionPossible,
974         Expression::ImplicitIntConstantConversionPossible): New functions
975         that tell whether is it possible to apply an implicit constant
976         expression conversion.
977
978         (ConvertNumericExplicit): Started work on explicit numeric
979         conversions.
980
981         * cs-parser.jay: Update operator constants.
982
983         * parameter.cs (Parameters::GetParameterInfo): Hook up VerifyArgs
984         (Parameters::GetSignature): Hook up VerifyArgs here.
985         (Parameters::VerifyArgs): Verifies that no two arguments have the
986         same name. 
987
988         * class.cs (Operator): Update the operator names to reflect the
989         ones that the spec expects (as we are just stringizing the
990         operator names).
991         
992         * expression.cs (Unary::ResolveOperator): Fix bug: Use
993         MethodInfo's ReturnType instead of LookupMethodByBuilder as the
994         previous usage did only work for our methods.
995         (Expression::ConvertImplicit): Handle decimal implicit numeric
996         conversions as well.
997         (Expression::InternalTypeConstructor): Used to invoke constructors
998         on internal types for default promotions.
999
1000         (Unary::Emit): Implement special handling for the pre/post
1001         increment/decrement for overloaded operators, as they need to have
1002         the same semantics as the other operators.
1003
1004         (Binary::ResolveOperator): ditto.
1005         (Invocation::ConversionExists): ditto.
1006         (UserImplicitCast::Resolve): ditto.
1007         
1008 2001-09-26  Ravi Pratap  <ravi@ximian.com>
1009
1010         * expression.cs (Unary::Emit and Binary::Emit): If we have an overloaded
1011         operator, return after emitting body. Regression tests pass again !
1012
1013         * expression.cs (ConvertImplicit): Take TypeContainer as first argument
1014         (Unary::ForceConversion, Binary::ForceConversion): Ditto.
1015         (Invocation::OverloadResolve): Ditto.
1016         (Invocation::BetterFunction, BetterConversion, ConversionExists): Ditto.
1017
1018         * everywhere : update calls to the above methods accordingly.
1019
1020 2001-09-26  Miguel de Icaza  <miguel@ximian.com>
1021
1022         * assign.cs (Assign): Make it inherit from ExpressionStatement.
1023
1024         * expression.cs (ExpressionStatement): New base class used for
1025         expressions that can appear in statements, so that we can provide
1026         an alternate path to generate expression that do not leave a value
1027         on the stack.
1028
1029         (Expression::Emit, and all the derivatives): We no longer return
1030         whether a value is left on the stack or not.  Every expression
1031         after being emitted leaves a single value on the stack.
1032
1033         * codegen.cs (EmitContext::EmitStatementExpression): Use the
1034         facilties of ExpressionStatement if possible.
1035
1036         * cs-parser.jay: Update statement_expression.
1037
1038 2001-09-25  Miguel de Icaza  <miguel@ximian.com>
1039
1040         * driver.cs: Change the wording of message
1041
1042 2001-09-25  Ravi Pratap  <ravi@ximian.com>
1043
1044         * expression.cs (Binary::ResolveOperator): Had forgottten to set 
1045         the type of the expression to the return type of the method if
1046         we have an overloaded operator match ! The regression tests pass again !
1047         (Unary::ResolveOperator): Ditto.
1048
1049         * expression.cs (Invocation::ConversionExists): Correct the member lookup
1050         to find "op_Implicit", not "implicit" ;-)
1051         (UserImplicitCast): New class to take care of user-defined implicit conversions.
1052         (ConvertImplicit, ForceConversion): Take TypeContainer argument
1053
1054         * everywhere : Correct calls to the above accordingly.
1055
1056         * expression.cs (UserImplicitCast::Resolve, ::Emit): Implement.
1057         (ConvertImplicit): Do user-defined conversion if it exists.
1058
1059 2001-09-24  Miguel de Icaza  <miguel@ximian.com>
1060
1061         * assign.cs: track location.
1062         (Resolve): Use implicit conversions on assignment.
1063
1064         * literal.cs: Oops.  Not good, Emit of short access values should
1065         pass (Bytes) or the wrong argument will be selected.
1066
1067         * expression.cs (Unary::Emit): Emit code for -expr.
1068         
1069         (Unary::ResolveOperator): Handle `Substract' for non-constants
1070         (substract from zero from the non-constants).
1071         Deal with Doubles as well. 
1072         
1073         (Expression::ConvertImplicitRequired): New routine that reports an
1074         error if no implicit conversion exists. 
1075
1076         (Invocation::OverloadResolve): Store the converted implicit
1077         expressions if we make them
1078         
1079 2001-09-24  Ravi Pratap  <ravi@ximian.com>
1080
1081         * class.cs (ConstructorInitializer): Take a Location argument.
1082         (ConstructorBaseInitializer): Same here.
1083         (ConstructorThisInitializer): Same here.
1084
1085         * cs-parser.jay : Update all calls accordingly.
1086
1087         * expression.cs (Unary, Binary, New): Take location argument.
1088         Update accordingly everywhere.
1089
1090         * cs-parser.jay : Update all calls to the above to take a location
1091         argument.
1092
1093         * class.cs : Ditto.
1094
1095 2001-09-24  Ravi Pratap  <ravi@ximian.com>
1096
1097         * expression.cs (Invocation::BetterFunction): Take TypeContainer argument
1098         (Invocation::BetterConversion): Same here
1099         (Invocation::ConversionExists): Ditto.
1100
1101         (Invocation::ConversionExists): Implement.
1102
1103 2001-09-22  Ravi Pratap  <ravi@ximian.com>
1104
1105         * expression.cs (OverloadResolve): Improve some more to catch errors 1502 and 1503
1106         Also take an additional TypeContainer argument.
1107
1108         * All over : Pass in TypeContainer as argument to OverloadResolve.
1109
1110         * typemanager.cs (CSharpName): Update to check for the string type and return
1111         that too.
1112
1113         * expression.cs (Invocation::FullMethodDesc): New static method to return a string fully describing
1114         a given method.
1115         
1116 2001-09-21  Ravi Pratap  <ravi@ximian.com>
1117
1118         * expression.cs (Invocation::OverloadResolve): Re-write to conform more to the spec.
1119         (Invocation::BetterFunction): Implement.
1120         (Invocation::BetterConversion): Implement.
1121         (Invocation::ConversionExists): Skeleton, no implementation yet.
1122
1123         Okay, things work fine !
1124
1125 2001-09-21  Miguel de Icaza  <miguel@ximian.com>
1126
1127         * typemanager.cs: declare and load enum_type, delegate_type and
1128         void_type. 
1129
1130         * expression.cs (Expression::Emit): Now emit returns a value that
1131         tells whether a value is left on the stack or not.  This strategy
1132         might be reveted tomorrow with a mechanism that would address
1133         multiple assignments.
1134         (Expression::report118): Utility routine to report mismatches on
1135         the ExprClass.
1136
1137         (Unary::Report23): Report impossible type/operator combination
1138         utility function.
1139
1140         (Unary::IsIncrementableNumber): Whether the type can be
1141         incremented or decremented with add.
1142         (Unary::ResolveOperator): Also allow enumerations to be bitwise
1143         complemented. 
1144         (Unary::ResolveOperator): Implement ++, !, ~, ++ and --.
1145
1146         (Invocation::Emit): Deal with new Emit convetion.
1147         
1148         * All Expression derivatives: Updated their Emit method to return
1149         whether they leave values on the stack or not.
1150         
1151         * codegen.cs (CodeGen::EmitStatement): Pop values left on the
1152         stack for expressions that are statements. 
1153
1154 2001-09-20  Miguel de Icaza  <miguel@ximian.com>
1155
1156         * expression.cs (LValue): New interface.  Must be implemented by
1157         LValue objects.
1158         (LocalVariableReference, ParameterReference, FieldExpr): Implement
1159         LValue interface.
1160         
1161         * assign.cs (Assign::Emit, Assign::Resolve): Use new LValue
1162         interface for generating code, simplifies the code.
1163
1164 2001-09-20  Ravi Pratap  <ravi@ximian.com>
1165
1166         * expression.cs (everywhere): Comment out return statements in ::Resolve
1167         methods to avoid the warnings.
1168
1169 2001-09-20  Miguel de Icaza  <miguel@ximian.com>
1170
1171         * driver.cs (parse): Report error 2001 if we can not open the
1172         source file.
1173
1174         * expression.cs (SimpleName::ResolveSimpleName): Error if we can
1175         not resolve it.
1176
1177         * cs-parser.jay (QualifierIdentifier): Pass location to SimpleName
1178         object. 
1179
1180         * statement.cs (Block::EmitMeta): Reuse the count across all the variables,
1181         otherwise nested blocks end up with the same index.
1182
1183         * codegen.cs (CodeGen::EmitTopBlock): Pass initial sequence
1184
1185         * expression.cs:  Instead of having FIXMEs in the Resolve
1186         functions, throw exceptions so it is obvious that we are facing a
1187         bug. 
1188
1189         * cs-parser.jay (invocation_expression): Pass Location information.
1190
1191         * codegen.cs (CodeGen::Save, CodeGen::CodeGen, CodeGen::Basename):
1192         Use a basename for those routines because .NET does not like paths
1193         on them. 
1194
1195         * class.cs (TypeContainer::AddMethod): Do not call DefineName if the name was
1196         already defined.
1197
1198 2001-09-19  Miguel de Icaza  <miguel@ximian.com>
1199
1200         * typemanager.cs (TypeManager::CoreLookupType): A function to make sure that we
1201         are loading the correct data types (throws an exception if not).
1202         (TypeManager::InitCoreTypes): Use CoreLookupType
1203
1204         * expression.cs (Unary::ResolveOperator): return the child
1205         expression for expressions which are just +expr.
1206         (Unary::ResolveOperator): Return negative literals for -LITERAL
1207         expressions (otherwise they are Unary {Literal}).
1208         (Invocation::Badness): Take into account `Implicit constant
1209         expression conversions'.
1210
1211         * literal.cs (LongLiteral): Implement long literal class.
1212         (IntLiteral): export the `Value' of the intliteral. 
1213
1214 2001-09-19  Ravi Pratap  <ravi@ximian.com>
1215
1216         * expression.cs (Binary::Emit): Finally get the emission right ! Woo!
1217
1218         * class.cs (Operator::Define): Change the methodname prefix to 'op_' 
1219         instead of 'Operator'
1220
1221         * expression.cs (Binary::ResolveOperator): Update accordingly.
1222         (Unary::Operator): Change names to 'Add' and 'Subtract' instead 'Plus'
1223         and 'Minus'
1224
1225         * cs-parser.jay (unary_expression): Update to use the new names.
1226
1227         * gen-treedump.cs (GetUnary): Same here.
1228
1229         * expression.cs (Unary::Resolve): Implement.
1230         (Binary::ResolveOperator): Re-write bits to quietly continue if no overloaded 
1231         operators are found instead of making noise ;-)
1232         (Unary::ResolveOperator): New method to do precisely the same thing which
1233         Binary::ResolveOperator does for Binary expressions.
1234         (Unary.method, .Arguments): Add.
1235         (Unary::OperName): Implement.   
1236         (Unary::ForceConversion): Copy and Paste !
1237
1238         * class.cs (Operator::Define): Fix a small bug for the case when we have 
1239         a unary operator.
1240
1241         * expression.cs (Unary::Emit): Implement. Need to find the right Opcodes
1242         for the inbuilt operators. Only overloading works for now ;-)
1243
1244 2001-09-18  Miguel de Icaza  <miguel@ximian.com>
1245
1246         * expression.cs (CheckedExpr::Resolve, CheckedExpr::Emit,
1247         UnCheckedExpr::Resolve, UnCheckedExpr::Emit): Implement.
1248
1249         * expression.cs (This::Emit): Implement. 
1250         (This::Resolve): Implement.
1251         (TypeOf:Resolve): Implement.
1252         (Expression::ResolveSimpleName): Add an implicit this to instance
1253         field references. 
1254         (MemberAccess::Resolve): Deal with Parameters and Fields. 
1255         Bind instance variable to Field expressions.
1256         (FieldExpr::Instance): New field used to track the expression that
1257         represents the object instance.
1258         (FieldExpr::Resolve): Track potential errors from MemberLookup not
1259         binding 
1260         (FieldExpr::Emit): Implement.
1261
1262         * codegen.cs (EmitIf, EmitStatement, EmitBlock): Propagate whether
1263         the last instruction contains a return opcode to avoid generating
1264         the last `ret' instruction (this generates correct code, and it is
1265         nice to pass the peverify output).
1266
1267         * class.cs (TypeContainer::EmitFieldInitializers): Implement field
1268         initializer for static and instance variables.
1269         (Constructor::Emit): Allow initializer to be null in the case of
1270         static constructors.  Only emit initializer for instance
1271         constructors. 
1272
1273         (TypeContainer::FindMembers): Return a null array if there are no
1274         matches.
1275
1276         Also fix the code for the MemberTypes.Method branch, as it was not
1277         scanning that for operators (or tried to access null variables before).
1278
1279         * assign.cs (Assign::Emit): Handle instance and static fields. 
1280
1281         * TODO: Updated.
1282
1283         * driver.cs: Stop compilation if there are parse errors.
1284
1285         * cs-parser.jay (constructor_declaration): Provide default base
1286         initializer for non-static constructors.
1287         (constructor_declarator): Do not provide a default base
1288         initializers if none was specified.
1289         Catch the fact that constructors should not have parameters.
1290
1291         * class.cs: Do not emit parent class initializers for static
1292         constructors, that should be flagged as an error.
1293
1294 2001-09-18  Ravi Pratap  <ravi@ximian.com>
1295
1296         * class.cs (RegisterMethodBuilder): Remove : it's unnecessary.
1297         Move back code into TypeContainer::Populate.
1298
1299 2001-09-18  Ravi Pratap  <ravi@ximian.com>
1300
1301         * class.cs (TypeContainer::AddConstructor): Fix the check to
1302         compare against Name, not Basename. 
1303         (Operator::OpType): Change Plus and Minus to Add and Subtract.
1304
1305         * cs-parser.jay : Update accordingly.
1306
1307         * class.cs (TypeContainer::FindMembers): For the case where we are searching
1308         for methods, don't forget to look into the operators too.
1309         (RegisterMethodBuilder): Helper method to take care of this for
1310         methods, constructors and operators.
1311         (Operator::Define): Completely revamp.
1312         (Operator.OperatorMethod, MethodName): New fields.
1313         (TypeContainer::Populate): Move the registering of builders into
1314         RegisterMethodBuilder.
1315         (Operator::Emit): Re-write.
1316
1317         * expression.cs (Binary::Emit): Comment out code path to emit method
1318         invocation stuff for the case when we have a user defined operator. I am
1319         just not able to get it right !
1320         
1321 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
1322
1323         * expression.cs (Expression::OverloadResolve): Drop TypeContainer
1324         argument. 
1325
1326         (Expression::MemberLookup): Provide a version that allows to
1327         specify the MemberTypes and BindingFlags. 
1328
1329         * statement.cs (Block::GetVariableInfo): Forgot to recurse here,
1330         so it was not fetching variable information from outer blocks.
1331
1332         * modifiers.cs: (Modifiers::TypeAttr): Invert condition on
1333         Beforefieldinit as it was buggy.
1334
1335         * rootcontext.cs (::LookupInterfaceOrClass): Removed an Error -200
1336         that Ravi put here.  
1337
1338         * class.cs (Constructor::Emit): Only emit if block is not null.
1339         (TypeContainer::EmitDefaultConstructor): Removed routine, now we
1340         deal with this by semantically definining it as if the user had
1341         done it.
1342
1343         (TypeContainer::FindMembers): Removed ad-hoc hack to deal with
1344         constructors as we now "emit" them at a higher level.
1345
1346         (TypeContainer::DefineDefaultConstructor): Used to define the
1347         default constructors if none was provided.
1348
1349         (ConstructorInitializer): Add methods Resolve and Emit. 
1350         
1351         * expression.cs: Cast to ConstructorInfo instead of MethodInfo
1352
1353 2001-09-17  Ravi Pratap  <ravi@ximian.com>
1354
1355         * class.cs (TypeContainer::EmitDefaultConstructor): Register
1356         the default constructor builder with our hashtable for methodbuilders
1357         to methodcores.
1358
1359         * expression.cs (Invocation::OverloadResolve): Add a check for pd == null
1360         and argument_count is 0 in which case we have a match.
1361         (Binary::ResolveOperator): More null checking and miscellaneous coding
1362         style cleanup.
1363
1364 2001-09-17  Ravi Pratap  <ravi@ximian.com>
1365
1366         * rootcontext.cs (IsNameSpace): Compare against null.
1367
1368         * everywhere : Correct spelling to 'Greater' and to 'Subtract'
1369
1370         * class.cs (Operator::OpType): Change names to match the ones in Binary::Operator
1371         and Unary::Operator.
1372
1373         * cs-parser.jay (operator_declaration, CheckBinaryOperator, CheckUnaryOperator): Update
1374         accordingly.
1375
1376         * expression.cs (Binary::method): New member to hold the MethodBase for the case when
1377         we have overloaded operators.
1378         (Binary::ResolveOperator): Implement the part which does the operator overload
1379         resolution.
1380
1381         * class.cs (Operator::Emit): Implement.
1382         (TypeContainer::Emit): Emit the operators we have too.
1383
1384         * expression.cs (Binary::Emit): Update to emit the appropriate code for
1385         the case when we have a user-defined operator.
1386         
1387 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
1388
1389         * rootcontext.cs: Fix bug: tree.Namespaces might be null.
1390
1391 2001-09-16  Ravi Pratap  <ravi@ximian.com>
1392
1393         * class.cs (EmitStaticFieldInitializers, EmitFieldInitializers): Make public.
1394         (TypeContainer::EmitConstructor): Remove and move code into Contructor::Emit.
1395         (Constructor::Emit): Implement.
1396         (EmitStaticFieldInitializers, EmitFieldInitializers): Ensure we return immediately
1397         if we have no work to do. 
1398         (TypeContainer::Emit): Pass in TypeContainer as argument to the constructor's 
1399         Emit method.
1400
1401         * interface.cs (Interface::InterfaceAttr): Re-write to be more correct and complete.
1402         (Interface::IsTopLevel): Add. Same as TypeContainer::IsTopLevel.
1403
1404         * class.cs (TypeContainer::IsTopLevel): Modify to use parent.Parent instead
1405         of parent.parent.
1406
1407 2001-09-15  Ravi Pratap  <ravi@ximian.com>
1408
1409         * tree.cs (Tree::namespaces): New hashtable to keep track of namespaces
1410         in the source.
1411         (Tree::RecordNamespace): Method to do what the name says ;-)
1412         (Tree::Namespaces): Property to get at the namespaces hashtable.
1413
1414         * cs-parser.jay (namespace_declaration): Call RecordNamespace to 
1415         keep track.
1416
1417         * rootcontext.cs (IsNamespace): Fixed it :-)
1418
1419 2001-09-14  Miguel de Icaza  <miguel@ximian.com>
1420
1421         * class.cs (TypeContainer::FindMembers): Add support for
1422         constructors. 
1423         (MethodCore): New class that encapsulates both the shared aspects
1424         of a Constructor and a Method.  
1425         (Method, Constructor): Factored pieces into MethodCore.
1426
1427         * driver.cs: Added --fatal which makes errors throw exceptions.
1428         Load System assembly as well as part of the standard library.
1429
1430         * report.cs: Allow throwing exceptions on errors for debugging.
1431
1432         * modifiers.cs: Do not use `parent', instead use the real type
1433         container to evaluate permission settings.
1434
1435         * class.cs: Put Ravi's patch back in.  He is right, and we will
1436         have to cope with the
1437
1438 2001-09-14  Ravi Pratap  <ravi@ximian.com>
1439
1440         * modifiers.cs (TypeAttr, MethodAttr, FieldAttr): Map protected internal to
1441         FamORAssem, not FamANDAssem.
1442         
1443 2001-09-14  Miguel de Icaza  <miguel@ximian.com>
1444
1445         * driver.cs: Added --parse option that only parses its input files
1446         and terminates.
1447
1448         * class.cs: Reverted last change from Ravi to IsTopLevel.  That is
1449         incorrect.  IsTopLevel is not used to tell whether an object is
1450         root_types or not (that can be achieved by testing this ==
1451         root_types).  But to see if this is a top-level *class* (not
1452         necessarly our "toplevel" container). 
1453
1454 2001-09-14  Ravi Pratap  <ravi@ximian.com>
1455
1456         * enum.cs (Enum::Define): Modify to call the Lookup method on the
1457         parent instead of a direct call to GetType.
1458
1459 2001-09-14  Ravi Pratap  <ravi@ximian.com>
1460
1461         * class.cs (TypeContainer::TypeAttr): Remove property code and move it into
1462         Modifiers.TypeAttr. This should just be a call to that method.
1463
1464         * modifiers.cs (TypeAttr): Re-write and take an extra argument, the TypeContainer
1465         object so that we can determine if we are top-level or not.
1466
1467         * delegate.cs (Delegate::Define): Update call to TypeAttr method to pass in the 
1468         TypeContainer too.
1469
1470         * enum.cs (Enum::Define): Ditto.
1471
1472         * modifiers.cs (FieldAttr): Re-write.
1473
1474         * class.cs (TypeContainer::IsTopLevel): Change accessibility to public.
1475         (TypeContainer::HaveStaticConstructor): New property to provide access
1476         to precisely that info.
1477
1478         * modifiers.cs (MethodAttr): Re-write.
1479         (EventAttr): Remove altogether as there seems to be no ostensible use for it.
1480
1481         * class.cs (TypeContainer::IsTopLevel): Re-write. root_types doesn't seem to be the parent
1482         of top-level types as claimed.
1483         
1484 2001-09-13  Miguel de Icaza  <miguel@ximian.com>
1485
1486         * expression.cs (MemberLookup): Fruitless attempt to lookup
1487         constructors.  Maybe I need to emit default constructors?  That
1488         might be it (currently .NET emits this for me automatically).
1489         (Invocation::OverloadResolve): Cope with Arguments == null.
1490         (Invocation::EmitArguments): new function, shared by the new
1491         constructor and us.
1492         (Invocation::Emit): Handle static and instance methods.  Emit
1493         proper call instruction for virtual or non-virtual invocations.
1494         (New::Emit): Implement.
1495         (New::Resolve): Implement.
1496         (MemberAccess:Resolve): Implement.
1497         (MethodGroupExpr::InstanceExpression): used conforming to the spec
1498         to track instances.
1499         (FieldExpr::Resolve): Set type.
1500
1501         * support.cs: Handle empty arguments.
1502                 
1503         * cs-parser.jay (CompositeLookup, QualifierIdentifier,
1504         SimpleLookup): Auxiliary routines to help parse a qualifier
1505         identifier.  
1506
1507         Update qualifier_identifier rule.
1508
1509         * codegen.cs: Removed debugging messages.
1510
1511         * class.cs: Make this a global thing, this acts just as a "key" to
1512         objects that we might have around.
1513
1514         (Populate): Only initialize method_builders_to_methods once.
1515
1516         * expression.cs (PropertyExpr): Initialize type from the
1517         PropertyType. 
1518
1519         * codegen.cs (EmitContext::EmitBoolExpression): Use propper
1520         Resolve pattern.  Attempt to implicitly convert value to boolean.
1521         Emit code.
1522
1523         * expression.cs: Set the type for the int32/int32 argument case.
1524         (Binary::ResolveOperator): Set the return type to boolean for
1525         comparission operators
1526
1527         * typemanager.cs: Remove debugging print code.
1528
1529         (Invocation::Resolve): resolve type.
1530
1531         * class.cs: Allocate a MemberInfo of the correct size, as the code
1532         elsewhere depends on the test to reflect the correct contents.
1533
1534         (Method::) Keep track of parameters, due to System.Reflection holes
1535
1536         (TypeContainer::Populate): Keep track of MethodBuilders to Method
1537         mapping here.
1538
1539         (TypeContainer::FindMembers): Use ArrayList and then copy an array
1540         of the exact size and return that.
1541
1542         (Class::LookupMethodByBuilder): New function that maps
1543         MethodBuilders to its methods.  Required to locate the information
1544         on methods because System.Reflection bit us again.
1545
1546         * support.cs: New file, contains an interface ParameterData and
1547         two implementations: ReflectionParameters and InternalParameters
1548         used to access Parameter information.  We will need to grow this
1549         as required.
1550
1551         * expression.cs (Invocation::GetParameterData): implement a cache
1552         and a wrapper around the ParameterData creation for methods. 
1553         (Invocation::OverloadResolve): Use new code.
1554
1555 2001-09-13  Ravi Pratap  <ravi@ximian.com>
1556
1557         * class.cs (TypeContainer::EmitField): Remove and move into 
1558         (Field::Define): here and modify accordingly.
1559         (Field.FieldBuilder): New member.
1560         (TypeContainer::Populate): Update accordingly.
1561         (TypeContainer::FindMembers): Implement.
1562
1563 2001-09-13  Miguel de Icaza  <miguel@ximian.com>
1564
1565         * statement.cs: (VariableInfo::VariableType): New field to be
1566         initialized with the full type once it is resolved. 
1567
1568 2001-09-12  Miguel de Icaza  <miguel@ximian.com>
1569
1570         * parameter.cs (GetParameterInfo): Use a type cache to compute
1571         things only once, and to reuse this information
1572
1573         * expression.cs (LocalVariableReference::Emit): Implement.
1574         (OpcodeCast::Emit): fix.
1575
1576         (ParameterReference::Resolve): Implement.
1577         (ParameterReference::Emit): Implement.
1578
1579         * cs-parser.jay: Fix bug introduced by Ravi, variable initializers
1580         that are expressions need to stay as Expressions.
1581
1582         * typemanager.cs (CSharpName): Returns the C# name of a type if
1583         possible. 
1584
1585         * expression.cs (Expression::ConvertImplicit): New function that
1586         implements implicit type conversions.
1587
1588         (Expression::ImplicitReferenceConversion): Implements implicit
1589         reference conversions.
1590
1591         (EmptyCast): New type for transparent casts.
1592
1593         (OpcodeCast): New type for casts of types that are performed with
1594         a sequence of bytecodes.
1595         
1596         (BoxedCast): New type used for casting value types into reference
1597         types.  Emits a box opcode.
1598
1599         (Binary::DoNumericPromotions): Implements numeric promotions of
1600         and computation of the Binary::Type.
1601
1602         (Binary::EmitBranchable): Optimization.
1603
1604         (Binary::Emit): Implement code emission for expressions.
1605         
1606         * typemanager.cs (TypeManager): Added two new core types: sbyte
1607         and byte.
1608
1609 2001-09-12  Ravi Pratap  <ravi@ximian.com>
1610
1611         * class.cs (TypeContainer::FindMembers): Method which does exactly
1612         what Type.FindMembers does, only we don't have to use reflection. No
1613         implementation yet.
1614
1615         * typemanager.cs (typecontainers): New hashtable to hold the corresponding
1616         typecontainer objects as we need to get at them.
1617         (TypeManager::AddUserType): Overload to take an extra argument, the TypeContainer.
1618
1619         * rootcontext.cs : Correspondingly modify called to AddUserType to pass the
1620         typecontainer object.
1621
1622         * expression.cs (MemberLookup): Modify signature to take a RootContext object instead
1623         of just a Report object.
1624
1625 2001-09-11  Ravi Pratap  <ravi@ximian.com>
1626
1627         * class.cs (Event::Define): Go back to using the prefixes "add_" and
1628         "remove_"
1629         (TypeContainer::Populate): Now define the delegates of the type too.
1630         (TypeContainer.Delegates): Property to access the list of delegates defined
1631         in the type.
1632
1633         * delegates.cs (Delegate::Define): Implement partially.
1634
1635         * modifiers.cs (TypeAttr): Handle more flags.
1636
1637 2001-09-11  Ravi Pratap  <ravi@ximian.com>
1638
1639         * class.cs (Indexer::Define): Fix for loop iteration condition to be just <
1640         and not <=
1641         (Operator::Define): Re-write logic to get types by using the LookupType method
1642         instead of blindly doing a Type.GetType ! How stupid can I get ;-) ?
1643         (Indexer::Define): Ditto.
1644         (Event::Define): Ditto.
1645         (Property::Define): Ditto.
1646         
1647 2001-09-10  Ravi Pratap  <ravi@ximian.com>
1648
1649         * class.cs (TypeContainer::Populate): Now define operators too. 
1650         (TypeContainer.Operators): New property to access the list of operators
1651         in a type.
1652         (Operator.OperatorMethodBuilder): New member to hold the method builder
1653         for the operator we are defining.
1654         (Operator::Define): Implement.
1655
1656 2001-09-10  Ravi Pratap  <ravi@ximian.com>
1657
1658         * class.cs (Event::Define): Make the prefixes of the accessor methods
1659         addOn_ and removeOn_ 
1660
1661         * genericparser.cs (GenericParser::error): Overloaded method to handle the case
1662         of the location being passed in too. Ideally, this should go later since all
1663         error reporting should be done through the Report object.
1664
1665         * class.cs (TypeContainer.Indexers): New property to access the list of indexers.
1666         (Populate): Iterate thru the indexers we have and define them too.
1667         (Indexer.GetMethodBuilder, .SetMethodBuilder): New members to hold the method builders
1668         for the get and set accessors.
1669         (Indexer::Define): Implement.
1670         
1671 2001-09-09  Miguel de Icaza  <miguel@ximian.com>
1672
1673         * expression.cs (Binary::Resolve): Beginning of it.  I scratched
1674         my previous implementation, did not work.
1675
1676         * typemanager.cs: Add a couple of missing types (the longs).
1677
1678         * literal.cs: Use TypeManager.bool_type instead of getting it.
1679
1680         * expression.cs (EventExpr): New kind of expressions.
1681         (Expressio::ExprClassFromMemberInfo): finish
1682
1683 2001-09-08  Miguel de Icaza  <miguel@ximian.com>
1684
1685         * assign.cs: Emit stores to static fields differently.
1686
1687 2001-09-08  Ravi Pratap  <ravi@ximian.com>
1688
1689         * Merge in changes and adjust code to tackle conflicts. Backed out my
1690         code in Assign::Resolve ;-) 
1691
1692 2001-09-08  Ravi Pratap  <ravi@ximian.com>
1693
1694         * cs-parser.jay (CheckAttributeTarget): Modify call to error to use
1695         instead Report.Error and also pass in the location.
1696         (CSharpParser::Lexer): New readonly property to return the reference
1697         to the Tokenizer object.
1698         (declare_local_variables): Use Report.Error with location instead of plain 
1699         old error.
1700         (CheckDef): Ditto.
1701
1702         * class.cs (Operator::CheckUnaryOperator): Move into cs-parser.jay.
1703         (Operator.CheckBinaryOperator): Ditto.
1704
1705         * cs-parser.jay (operator_declarator): Update accordingly.
1706
1707         * cs-parser.jay (CheckUnaryOperator): Modify to use Report.Error
1708         (CheckBinaryOperator): Same here.
1709
1710         * rootcontext.cs (LookupType): Add an extra lookup which simply does a lookup
1711         on the name without any prefixes of namespace names etc. This is because we
1712         already might have something already fully qualified like 
1713         'System.Console.WriteLine'
1714
1715         * assign.cs (Resolve): Begin implementation. Stuck ;-)
1716
1717 2001-09-07  Ravi Pratap  <ravi@ximian.com>
1718
1719         * cs-tokenizer.cs (location): Return a string which also contains
1720         the file name.
1721
1722         * expression.cs (ElementAccess): New class for expressions of the
1723         type 'element access.'
1724         (BaseAccess): New class for expressions of the type 'base access.'
1725         (CheckedExpr, UnCheckedExpr): New classes for Checked and Unchecked expressions
1726         respectively.
1727         
1728         * cs-parser.jay (element_access): Implement action.
1729         (base_access): Implement actions.
1730         (checked_expression, unchecked_expression): Implement.
1731
1732         * cs-parser.jay (local_variable_type): Correct and implement.
1733         (type_suffixes, type_suffix_list, type_suffix): Implement actions.
1734
1735         * cs-tokenizer.cs (real_type_suffix): Comment out the extra getchar.
1736
1737         * cs-parser.jay (rank_specifiers): Remove space while concatenating the type's
1738         name and the specifiers.
1739
1740         * interface.cs (InterfaceAttr): New property to return the corresponding TypeAttributes
1741         
1742         * rootcontext.cs (CreateInterface): Use the InterfaceAttr property instead of 
1743         making them all public ;-)
1744
1745         * cs-parser.jay (error): Remove entirely as we have an implementation in the base
1746         class anyways.
1747         
1748 2001-09-07  Miguel de Icaza  <miguel@ximian.com>
1749
1750         * expression.cs (ExprClassFromMemberInfo): Return FieldExpr and
1751         PropertyExprs.
1752         (FieldExpr, PropertyExprs): New resolved expressions.
1753         (SimpleName::MemberStaticCheck): Perform static checks for access
1754         to non-static fields on static methods. Maybe this should be
1755         generalized for MemberAccesses. 
1756         (SimpleName::ResolveSimpleName): More work on simple name
1757         resolution. 
1758
1759         * cs-parser.jay (primary_expression/qualified_identifier): track
1760         the parameter index.
1761
1762         * codegen.cs (CodeGen::Save): Catch save exception, report error.
1763         (EmitContext::EmitBoolExpression): Chain to expression generation
1764         instead of temporary hack.
1765         (::EmitStatementExpression): Put generic expression code generation.
1766
1767         * assign.cs (Assign::Emit): Implement variable assignments to
1768         local variables, parameters and fields.
1769
1770 2001-09-06  Miguel de Icaza  <miguel@ximian.com>
1771
1772         * statement.cs (Block::GetVariableInfo): New method, returns the
1773         VariableInfo for a variable name in a block.
1774         (Block::GetVariableType): Implement in terms of GetVariableInfo
1775
1776         * literal.cs (IntLiteral::Emit, FloatLiteral::Emit,
1777         DoubleLiteral::Emit, CharLiteral::Emit, BoolLiteral::Emit): Implement
1778
1779 2001-09-06  Ravi Pratap  <ravi@ximian.com>
1780
1781         * cs-parser.jay (operator_declaration): Continue on my quest : update
1782         to take attributes argument.
1783         (event_declaration): Ditto.
1784         (enum_declaration): Ditto.
1785         (indexer_declaration): Ditto.
1786         
1787         * class.cs (Operator::Operator): Update constructor accordingly.
1788         (Event::Event): Ditto.
1789
1790         * delegate.cs (Delegate::Delegate): Same here.
1791
1792         * enum.cs (Enum::Enum): Same here.
1793         
1794 2001-09-05  Ravi Pratap  <ravi@ximian.com>
1795
1796         * cs-parser.jay (CheckAttributeTarget): Update to use the right error number.
1797
1798         * ../tests/cs0658.cs : New file to demonstrate error 0658.
1799
1800         * attribute.cs (Attributes): New class to encapsulate all attributes which were
1801         being passed around as an arraylist.
1802         (Attributes::AddAttribute): Method to add attribute sections.
1803
1804         * cs-parser.jay (opt_attributes): Modify actions to use the new Attributes class.
1805         (struct_declaration): Update accordingly.
1806         (constant_declaration): Update.
1807         (field_declaration): Update.
1808         (method_header): Update.
1809         (fixed_parameter): Update.
1810         (parameter_array): Ditto.
1811         (property_declaration): Ditto.
1812         (destructor_declaration): Ditto.
1813         
1814         * class.cs (Struct::Struct): Update constructors accordingly.
1815         (Class::Class): Ditto.
1816         (Field::Field): Ditto.
1817         (Method::Method): Ditto.
1818         (Property::Property): Ditto.
1819         (TypeContainer::OptAttribute): update property's return type.
1820         
1821         * interface.cs (Interface.opt_attributes): New member.
1822         (Interface::Interface): Update to take the extra Attributes argument.
1823
1824         * parameter.cs (Parameter::Parameter): Ditto.
1825
1826         * constant.cs (Constant::Constant): Ditto.
1827
1828         * interface.cs (InterfaceMemberBase): New OptAttributes field.
1829         (InterfaceMemberBase::InterfaceMemberBase): Update constructor to take 
1830         the attributes as a parameter.
1831         (InterfaceProperty): Update constructor call.
1832         (InterfaceEvent): Ditto.
1833         (InterfaceMethod): Ditto.
1834         (InterfaceIndexer): Ditto.
1835
1836         * cs-parser.jay (interface_indexer_declaration): Update call to constructor to 
1837         pass the attributes too.
1838         (interface_event_declaration): Ditto.
1839         (interface_property_declaration): Ditto.
1840         (interface_method_declaration): Ditto.
1841         (interface_declaration): Ditto.
1842
1843 2001-09-05  Miguel de Icaza  <miguel@ximian.com>
1844
1845         * class.cs (Method::Define): Track the "static Main" definition to
1846         create an entry point. 
1847
1848         * rootcontext.cs (RootContext::EntryPoint): MethodInfo that holds the
1849         EntryPoint if we find it. 
1850
1851         * codegen.cs (EmitContext::EmitInvocation): Emit invocations.
1852         (EmitContext::ig): Make this variable public.
1853
1854         * driver.cs: Make the default output file be the first file name
1855         with the .exe extension.  
1856
1857         Detect empty compilations
1858
1859         Handle various kinds of output targets.  Handle --target and
1860         rename -t to --dumper.
1861
1862         * expression.cs, literal.cs, assign.cs, constant.cs: All `Resolve'
1863         methods inherited from Expression return now an Expression.  This
1864         will is used during the tree rewriting as we resolve them during
1865         semantic analysis.
1866
1867         (Expression::MemberLookup): Implements the MemberLookup (7.3) from
1868         the spec.  Missing entirely is the information about
1869         accessability of elements of it.
1870
1871         (Expression::ExprClassFromMemberInfo): New constructor for
1872         Expressions that creates a fully initialized Expression based on
1873         a MemberInfo that is one of Eventinfo, FieldINfo, PropertyInfo or
1874         a Type.
1875
1876         (Invocation::Resolve): Begin implementing resolution of invocations.
1877         
1878         * literal.cs (StringLiteral):  Implement Emit.
1879
1880 2001-09-05  Ravi Pratap  <ravi@ximian.com>
1881
1882         * cs-parser.jay (error): Add new modifier because we are hiding an inherited
1883         member.
1884         
1885 2001-09-04  Ravi Pratap  <ravi@ximian.com>
1886
1887         * cs-parser.jay (attribute_arguments): Implement actions.
1888         (attribute): Fix bug in production. Implement action.
1889         (attribute_list): Implement.
1890         (attribute_target): Implement.
1891         (attribute_target_specifier, opt_target_specifier): Implement
1892         (CheckAttributeTarget): New method to check if the attribute target
1893         is valid.
1894         (attribute_section): Implement.
1895         (opt_attributes): Implement.
1896
1897         * attribute.cs : New file to handle attributes.
1898         (Attribute): Class to hold attribute info.
1899
1900         * cs-parser.jay (opt_attribute_target_specifier): Remove production
1901         (attribute_section): Modify production to use 2 different rules to 
1902         achieve the same thing. 1 s/r conflict down !
1903         Clean out commented, useless, non-reducing dimension_separator rules.
1904         
1905         * class.cs (TypeContainer.attributes): New member to hold list
1906         of attributes for a type.
1907         (Struct::Struct): Modify to take one more argument, the attribute list.
1908         (Class::Class): Ditto.
1909         (Field::Field): Ditto.
1910         (Method::Method): Ditto.
1911         (Property::Property): Ditto.
1912         
1913         * cs-parser.jay (struct_declaration): Update constructor call to
1914         pass in the attributes too.
1915         (class_declaration): Ditto.
1916         (constant_declaration): Ditto.
1917         (field_declaration): Ditto.
1918         (method_header): Ditto.
1919         (fixed_parameter): Ditto.
1920         (parameter_array): Ditto.
1921         (property_declaration): Ditto.
1922
1923         * constant.cs (Constant::Constant): Update constructor similarly.
1924         Use System.Collections.
1925
1926         * parameter.cs (Parameter::Parameter): Update as above.
1927
1928 2001-09-02  Ravi Pratap  <ravi@ximian.com>
1929
1930         * class.cs (TypeContainer::AddDelegate): New method to add a delegate.
1931         (TypeContainer.delegates): New member to hold list of delegates.
1932
1933         * cs-parser.jay (delegate_declaration): Implement the action correctly 
1934         this time as I seem to be on crack ;-)
1935
1936 2001-09-02  Miguel de Icaza  <miguel@ximian.com>
1937
1938         * rootcontext.cs (RootContext::IsNamespace): new function, used to
1939         tell whether an identifier represents a namespace.
1940
1941         * expression.cs (NamespaceExpr): A namespace expression, used only
1942         temporarly during expression resolution.
1943         (Expression::ResolveSimpleName, ::ResolvePrimary, ::ResolveName):
1944         utility functions to resolve names on expressions.
1945
1946 2001-09-01  Miguel de Icaza  <miguel@ximian.com>
1947
1948         * codegen.cs: Add hook for StatementExpressions. 
1949
1950         * class.cs: Fix inverted test for static flag in methods.
1951
1952 2001-09-02  Ravi Pratap  <ravi@ximian.com>
1953
1954         * class.cs (Operator::CheckUnaryOperator): Correct error number used
1955         to make it coincide with MS' number.
1956         (Operator::CheckBinaryOperator): Ditto.
1957
1958         * ../errors/errors.txt : Remove error numbers added earlier.
1959
1960         * ../errors/cs1019.cs : Test case for error # 1019
1961
1962         * ../errros/cs1020.cs : Test case for error # 1020
1963
1964         * cs-parser.jay : Clean out commented cruft.
1965         (dimension_separators, dimension_separator): Comment out. Ostensibly not
1966         used anywhere - non-reducing rule.
1967         (namespace_declarations): Non-reducing rule - comment out.
1968
1969         * enum.cs (Enum::AddEnum): Rename to AddEnumMember as I was getting confused
1970         with TypeContainer::AddEnum.
1971
1972         * delegate.cs : New file for delegate handling classes.
1973         (Delegate): Class for declaring delegates.
1974
1975         * makefile : Update.
1976
1977         * cs-parser.jay (delegate_declaration): Implement.
1978
1979 2001-09-01  Ravi Pratap  <ravi@che.iitm.ac.in>
1980
1981         * class.cs (Event::Define): Implement.
1982         (Event.EventBuilder): New member.
1983
1984         * class.cs (TypeContainer::Populate): Update to define all enums and events
1985         we have.
1986         (Events): New property for the events arraylist we hold. Shouldn't we move to using
1987         readonly fields for all these cases ?
1988
1989 2001-08-31  Ravi Pratap  <ravi@che.iitm.ac.in>
1990
1991         * class.cs (Property): Revamp to use the convention of making fields readonly.
1992         Accordingly modify code elsewhere.
1993
1994         * class.cs : Apply patch from Mr. Mandar <go_mono@hotmail.com> for implementing
1995         the Define method of the Property class.
1996
1997         * class.cs : Clean up applied patch and update references to variables etc. Fix 
1998         trivial bug.
1999         (TypeContainer::Populate): Update to define all the properties we have. Also
2000         define all enumerations.
2001
2002         * enum.cs (Define): Implement.
2003         
2004 2001-08-31  Ravi Pratap  <ravi@che.iitm.ac.in>
2005
2006         * cs-parser.jay (overloadable_operator): The semantic value is an
2007         enum of the Operator class.
2008         (operator_declarator): Implement actions.
2009         (operator_declaration): Implement.
2010
2011         * class.cs (Operator::CheckUnaryOperator): New static method to help in checking
2012         validity of definitions.
2013         (Operator::CheckBinaryOperator): Static method to check for binary operators
2014         (TypeContainer::AddOperator): New method to add an operator to a type.
2015
2016         * cs-parser.jay (indexer_declaration): Added line to actually call the
2017         AddIndexer method so it gets added ;-)
2018
2019         * ../errors/errors.txt : Update to include new error numbers. Are these numbers 
2020         already taken care of by the MS compiler ?  
2021
2022 2001-08-29  Ravi Pratap  <ravi@che.iitm.ac.in>
2023
2024         * class.cs (Operator): New class for operator declarations.
2025         (Operator::OpType): Enum for the various operators.
2026
2027 2001-08-29  Ravi Pratap  <ravi@che.iitm.ac.in>
2028
2029         * class.cs (TypeContainer::AddIndexer): Remove FIXME comment. We
2030         ostensibly handle this in semantic analysis.
2031
2032         * cs-parser.jay (general_catch_clause): Comment out
2033         (specific_catch_clauses, specific_catch_clause): Ditto.
2034         (opt_general_catch_clause, opt_specific_catch_clauses): Ditto
2035         (catch_args, opt_catch_args): New productions.
2036         (catch_clause): Rewrite to use the new productions above
2037         (catch_clauses): Modify accordingly.
2038         (opt_catch_clauses): New production to use in try_statement
2039         (try_statement): Revamp. Basically, we get rid of one unnecessary rule
2040         and re-write the code in the actions to extract the specific and
2041         general catch clauses by being a little smart ;-)
2042
2043         * ../tests/try.cs : Fix. It's not 'finalize' my friend, it's 'finally' !
2044         Hooray, try and catch statements parse fine !
2045         
2046 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
2047
2048         * statement.cs (Block::GetVariableType): Fix logic to extract the type
2049         string from the hashtable of variables.
2050
2051         * cs-parser.jay (event_accessor_declarations): Trivial fix. Man, how did
2052         I end up making that mistake ;-)
2053         (catch_clauses): Fixed gross error which made Key and Value of the 
2054         DictionaryEntry the same : $1 !!
2055
2056 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
2057
2058         * cs-tokenizer.cs (initTokens): Add keywords 'add' and 'remove'
2059
2060         * cs-parser.jay (event_declaration): Correct to remove the semicolon
2061         when the add and remove accessors are specified. 
2062
2063 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
2064
2065         * cs-parser.jay (IndexerDeclaration): New helper class to hold
2066         information about indexer_declarator.
2067         (indexer_declarator): Implement actions.
2068         (parsing_indexer): New local boolean used to keep track of whether
2069         we are parsing indexers or properties. This is necessary because 
2070         implicit_parameters come into picture even for the get accessor in the 
2071         case of an indexer.
2072         (get_accessor_declaration, set_accessor_declaration): Correspondingly modified.
2073
2074         * class.cs (Indexer): New class for indexer declarations.
2075         (TypeContainer::AddIndexer): New method to add an indexer to a type.
2076         (TypeContainer::indexers): New member to hold list of indexers for the
2077         type.
2078
2079 2001-08-27  Ravi Pratap  <ravi@che.iitm.ac.in>
2080
2081         * cs-parser.jay (add_accessor_declaration): Implement action.
2082         (remove_accessor_declaration): Implement action.
2083         (event_accessors_declaration): Implement
2084         (variable_declarators): swap statements for first rule - trivial.
2085
2086         * class.cs (Event): New class to hold information about event
2087         declarations.
2088         (TypeContainer::AddEvent): New method to add an event to a type
2089         (TypeContainer::events): New member to hold list of events.
2090
2091         * cs-parser.jay (event_declaration): Implement actions.
2092
2093 2001-08-27  Ravi Pratap  <ravi@che.iitm.ac.in>
2094
2095         * cs-parser.jay (dim_separators): Implement. Make it a string
2096         concatenating all the commas together, just as they appear.
2097         (opt_dim_separators): Modify accordingly
2098         (rank_specifiers): Update accordingly. Basically do the same
2099         thing - instead, collect the brackets here.
2100         (opt_rank_sepcifiers): Modify accordingly.
2101         (array_type): Modify to actually return the complete type string
2102         instead of ignoring the rank_specifiers.
2103         (expression_list): Implement to collect the expressions
2104         (variable_initializer): Implement. We make it a list of expressions
2105         essentially so that we can handle the array_initializer case neatly too.
2106         (variable_initializer_list): Implement.
2107         (array_initializer): Make it a list of variable_initializers
2108         (opt_array_initializer): Modify accordingly.
2109
2110         * expression.cs (New::NType): Add enumeration to help us
2111         keep track of whether we have an object/delegate creation
2112         or an array creation.
2113         (New:NewType, New::Rank, New::Indices, New::Initializers): New
2114         members to hold data about array creation.
2115         (New:New): Modify to update NewType
2116         (New:New): New Overloaded contructor for the array creation
2117         case.
2118
2119         * cs-parser.jay (array_creation_expression): Implement to call
2120         the overloaded New constructor.
2121         
2122 2001-08-26  Ravi Pratap  <ravi@che.iitm.ac.in>
2123
2124         * class.cs (TypeContainer::Constructors): Return member
2125         constructors instead of returning null.
2126
2127 2001-08-26  Miguel de Icaza  <miguel@ximian.com>
2128
2129         * typemanager.cs (InitCoreTypes): Initialize the various core
2130         types after we have populated the type manager with the user
2131         defined types (this distinction will be important later while
2132         compiling corlib.dll)
2133
2134         * expression.cs, literal.cs, assign.cs, constant.cs: Started work
2135         on Expression Classification.  Now all expressions have a method
2136         `Resolve' and a method `Emit'.
2137
2138         * codegen.cs, cs-parser.jay: Fixed the bug that stopped code
2139         generation from working.     Also add some temporary debugging
2140         code. 
2141         
2142 2001-08-24  Miguel de Icaza  <miguel@ximian.com>
2143
2144         * codegen.cs: Lots of code generation pieces.  This is only the
2145         beginning, will continue tomorrow with more touches of polish.  We
2146         handle the fundamentals of if, while, do, for, return.  Others are
2147         trickier and I need to start working on invocations soon.
2148         
2149         * gen-treedump.cs: Bug fix, use s.Increment here instead of
2150         s.InitStatement. 
2151
2152         * codegen.cs (EmitContext): New struct, used during code
2153         emission to keep a context.   Most of the code generation will be
2154         here. 
2155
2156         * cs-parser.jay: Add embedded blocks to the list of statements of
2157         this block.  So code generation proceeds in a top down fashion.
2158
2159 2001-08-23  Miguel de Icaza  <miguel@ximian.com>
2160
2161         * statement.cs: Add support for multiple child blocks.
2162
2163 2001-08-22  Miguel de Icaza  <miguel@ximian.com>
2164
2165         * codegen.cs (EmitCode): New function, will emit the code for a
2166         Block of code given a TypeContainer and its ILGenerator. 
2167
2168         * statement.cs (Block): Standard public readonly optimization.
2169         (Block::Block constructors): Link children. 
2170         (Block::Child): Child Linker.
2171         (Block::EmitVariables): Emits IL variable declarations.
2172
2173         * class.cs: Drop support for MethodGroups here, delay until
2174         Semantic Analysis.
2175         (Method::): Applied the same simplification that I did before, and
2176         move from Properties to public readonly fields.
2177         (Method::ParameterTypes): Returns the parameter types for the
2178         function, and implements a cache that will be useful later when I
2179         do error checking and the semantic analysis on the methods is
2180         performed.
2181         (Constructor::GetCallingConvention): Renamed from CallingConvetion
2182         and made a method, optional argument tells whether this is a class
2183         or a structure to apply the `has-this' bit.
2184         (Method::GetCallingConvention): Implement, returns the calling
2185         convention. 
2186         (Method::Define): Defines the type, a second pass is performed
2187         later to populate the methods.
2188
2189         (Constructor::ParameterTypes): implement a cache similar to the
2190         one on Method::ParameterTypes, useful later when we do semantic
2191         analysis. 
2192
2193         (TypeContainer::EmitMethod):  New method.  Emits methods.
2194
2195         * expression.cs: Removed MethodGroup class from here.
2196         
2197         * parameter.cs (Parameters::GetCallingConvention): new method.
2198
2199 2001-08-21  Miguel de Icaza  <miguel@ximian.com>
2200
2201         * class.cs (TypeContainer::Populate): Drop RootContext from the
2202         argument. 
2203
2204         (Constructor::CallingConvention): Returns the calling convention.
2205         (Constructor::ParameterTypes): Returns the constructor parameter
2206         types. 
2207         
2208         (TypeContainer::AddConstructor): Keep track of default constructor
2209         and the default static constructor.
2210
2211         (Constructor::) Another class that starts using `public readonly'
2212         instead of properties. 
2213
2214         (Constructor::IsDefault): Whether this is a default constructor. 
2215
2216         (Field::) use readonly public fields instead of properties also.
2217
2218         (TypeContainer::TypeAttr, TypeContainer::AddConstructor): Keep
2219         track of static constructors;  If none is used, turn on
2220         BeforeFieldInit in the TypeAttributes. 
2221
2222         * cs-parser.jay (opt_argument_list): now the return can be null
2223         for the cases where there are no arguments. 
2224
2225         (constructor_declarator): If there is no implicit `base' or
2226         `this', then invoke the default parent constructor. 
2227         
2228         * modifiers.cs (MethodAttr): New static function maps a set of
2229         modifiers flags into a MethodAttributes enum
2230         (FieldAttr): renamed from `Map'.  So now we have FieldAttr,
2231         MethodAttr, TypeAttr to represent the various mappings where the
2232         modifiers are used.
2233         (FieldAttr): Map also `readonly' to `FieldAttributes.InitOnly'  
2234
2235 2001-08-19  Miguel de Icaza  <miguel@ximian.com>
2236
2237         * parameter.cs (GetParameterInfo): Fix bug where there would be no
2238         method arguments.
2239
2240         * interface.cs (PopulateIndexer): Implemented the code generator
2241         for interface indexers.
2242
2243 2001-08-17  Miguel de Icaza  <miguel@ximian.com>
2244
2245         * interface.cs (InterfaceMemberBase): Now we track the new status
2246         here.  
2247
2248         (PopulateProperty): Implement property population.  Woohoo!  Got
2249         Methods and Properties going today. 
2250
2251         Removed all the properties for interfaces, and replaced them with
2252         `public readonly' fields. 
2253
2254 2001-08-16  Miguel de Icaza  <miguel@ximian.com>
2255
2256         * interface.cs (AddEvent, AddMethod, AddIndexer, AddProperty):
2257         initialize their hashtables/arraylists only when they are needed
2258         instead of doing this always.
2259
2260         * parameter.cs: Handle refs and out parameters.
2261
2262         * cs-parser.jay: Use an ArrayList to construct the arguments
2263         instead of the ParameterCollection, and then cast that to a
2264         Parameter[] array.
2265
2266         * parameter.cs: Drop the use of ParameterCollection and use
2267         instead arrays of Parameters.
2268
2269         (GetParameterInfo): Use the Type, not the Name when resolving
2270         types. 
2271
2272 2001-08-13  Miguel de Icaza  <miguel@ximian.com>
2273
2274         * parameter.cs: Eliminate the properties Name, Type and ModFlags,
2275         and instead use public readonly fields.
2276
2277         * class.cs: Put back walking code for type containers.
2278
2279 2001-08-11  Miguel de Icaza  <miguel@ximian.com>
2280
2281         * class.cs (MakeConstant): Code to define constants.
2282
2283         * rootcontext.cs (LookupType): New function.  Used to locate types 
2284
2285         
2286 2001-08-08  Miguel de Icaza  <miguel@ximian.com>
2287
2288         * rootcontext.cs: OH MY!  My trick works!   It is amazing how nice
2289         this System.Reflection code is.  Kudos to Microsoft
2290         
2291         * typemanager.cs: Implement a type cache and avoid loading all
2292         types at boot time.  Wrap in LookupType the internals.  This made
2293         the compiler so much faster.  Wow.  I rule!
2294         
2295         * driver.cs: Make sure we always load mscorlib first (for
2296         debugging purposes, nothing really important).
2297
2298         * Renamespaced things that were on `CSC' to `CIR'.  Maybe I should
2299         have moved to `CSC' rather than `CIR'.  Oh man!  The confussion!  
2300
2301         * rootcontext.cs: Lookup types on their namespace;  Lookup types
2302         on namespaces that have been imported using the `using' keyword.
2303
2304         * class.cs (TypeContainer::TypeAttr): Virtualize.
2305         (Class::TypeAttr): Return attributes suitable for this bad boy.
2306         (Struct::TypeAttr): ditto.
2307         Handle nested classes.
2308         (TypeContainer::) Remove all the type visiting code, it is now
2309         replaced with the rootcontext.cs code
2310
2311         * rootcontext.cs (GetClassBases): Added support for structs. 
2312
2313 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
2314
2315         * interface.cs, statement.cs, class.cs, parameter.cs,
2316         rootcontext.cs, gen-treedump.cs, enum.cs, cs-parse.jay:
2317         Drop use of TypeRefs, and use strings instead.
2318
2319 2001-08-04  Miguel de Icaza  <miguel@ximian.com>
2320
2321         * rootcontext.cs: 
2322
2323         * class.cs (Struct::Struct): set the SEALED flags after
2324         checking the modifiers.
2325         (TypeContainer::TypeAttr): new property, returns the
2326         TypeAttributes for a class.  
2327
2328         * cs-parser.jay (type_list): Oops, list production was creating a
2329         new list of base types.
2330
2331         * rootcontext.cs (StdLib): New property.
2332         (GetInterfaceTypeByName): returns an interface by type name, and
2333         encapsulates error handling here.
2334         (GetInterfaces): simplified.
2335         (ResolveTree): Encapsulated all the tree resolution here.
2336         (CreateClass, GetClassBases, GetInterfaceOrClass): Create class
2337         types. 
2338         
2339         * driver.cs: Add support for --nostdlib, to avoid loading the
2340         default assemblies.
2341         (Main): Do not put tree resolution here. 
2342
2343         * rootcontext.cs: Beginning of the class resolution.
2344
2345 2001-08-03  Miguel de Icaza  <miguel@ximian.com>
2346
2347         * rootcontext.cs: Provide better error reporting. 
2348
2349         * cs-parser.jay (interface_base): set our $$ to be interfaces.
2350
2351         * rootcontext.cs (CreateInterface): Handle the case where there
2352         are no parent interfaces.
2353         
2354         (CloseTypes): Routine to flush types at the end.
2355         (CreateInterface): Track types.
2356         (GetInterfaces): Returns an array of Types from the list of
2357         defined interfaces.
2358
2359         * typemanager.c (AddUserType): Mechanism to track user types (puts
2360         the type on the global type hash, and allows us to close it at the
2361         end). 
2362         
2363 2001-08-02  Miguel de Icaza  <miguel@ximian.com>
2364
2365         * tree.cs: Removed RecordType, added RecordClass, RecordStruct and
2366         RecordInterface instead.
2367
2368         * cs-parser.jay: Updated to reflect changes above.
2369
2370         * decl.cs (Definition): Keep track of the TypeBuilder type that
2371         represents this type here.  Not sure we will use it in the long
2372         run, but wont hurt for now.
2373
2374         * driver.cs: Smaller changes to accomodate the new code.
2375
2376         Call ResolveInterfaceBases, Call ResolveClassBases, Save assembly
2377         when done. 
2378
2379         * rootcontext.cs (CreateInterface):  New method, used to create
2380         the System.TypeBuilder type for interfaces.
2381         (ResolveInterfaces): new entry point to resolve the interface
2382         hierarchy. 
2383         (CodeGen): Property, used to keep track of the code generator.
2384
2385 2001-07-26  Miguel de Icaza  <miguel@ximian.com>
2386
2387         * cs-parser.jay: Add a second production for delegate_declaration
2388         with `VOID'.
2389
2390         (enum_body): Put an opt_comma here instead of putting it on
2391         enum_body or enum_member_declarations so we can handle trailing
2392         commas on enumeration members.  Gets rid of a shift/reduce.
2393         
2394         (type_list): Need a COMMA in the middle.
2395
2396         (indexer_declaration): Tell tokenizer to recognize get/set
2397
2398         * Remove old targets.
2399
2400         * Re-add the parser target.
2401
2402 2001-07-13  Simon Cozens <simon@simon-cozens.org>
2403
2404         * cs-parser.jay: Add precendence rules for a number of operators
2405         ot reduce the number of shift/reduce conflicts in the grammar.
2406         
2407 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
2408
2409         * tree.cs: moved IGenerator interface and renamed it to ITreeDump
2410         and put it here.
2411
2412         Get rid of old crufty code.
2413
2414         * rootcontext.cs: Use this to keep track of the parsed
2415         representation and the defined types available to the program. 
2416
2417         * gen-treedump.cs: adjust for new convention.
2418
2419         * type.cs: Split out the type manager, and the assembly builder
2420         from here. 
2421
2422         * typemanager.cs: the type manager will live here now.
2423
2424         * cil-codegen.cs: And the code generator here. 
2425
2426 2001-07-14  Sean MacIsaac  <macisaac@ximian.com>
2427
2428         * makefile: Fixed up for easy making.
2429
2430 2001-07-13  Simon Cozens <simon@simon-cozens.org>
2431
2432         * cs-parser.jay (rank_specifier): Remove a conflict by reordering
2433         the 
2434
2435         (unary_expression): Expand pre_increment_expression and
2436         post_decrement_expression to reduce a shift/reduce.
2437
2438 2001-07-11  Simon Cozens
2439
2440         * cs-tokenizer.cs: Hex numbers should begin with a 0.
2441
2442         Improve allow_keyword_as_indent name.
2443
2444 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
2445
2446         * Adjustments for Beta2. 
2447
2448 2001-06-13  Miguel de Icaza  <miguel@ximian.com>
2449
2450         * decl.cs: Added `Define' abstract method.
2451         (InTransit): new property, used to catch recursive definitions. 
2452
2453         * interface.cs: Implement `Define'. 
2454
2455         * modifiers.cs: Map Modifiers.constants to
2456         System.Reflection.TypeAttribute flags.
2457
2458         * class.cs: Keep track of types and user-defined types.
2459         (BuilderInit): New method for creating an assembly
2460         (ResolveType): New function to launch the resolution process, only
2461         used by interfaces for now.
2462
2463         * cs-parser.jay: Keep track of Classes, Structs and Interfaces
2464         that are inserted into the name space. 
2465
2466 2001-06-08  Miguel de Icaza  <miguel@ximian.com>
2467
2468         * ARGH.  I have screwed up my tree so many times due to the use of
2469         rsync rather than using CVS.  Going to fix this at once. 
2470
2471         * driver.cs: Objetify driver.  Load assemblies, use assemblies to
2472         load types.
2473
2474 2001-06-07  Miguel de Icaza  <miguel@ximian.com>
2475
2476         * Experiment successful: Use System.Type rather that our own
2477         version of Type.  
2478
2479 2001-05-25  Miguel de Icaza  <miguel@ximian.com>
2480
2481         * cs-parser.jay: Removed nsAliases from here.
2482
2483         Use new namespaces, handle `using XXX;' 
2484
2485         * namespace.cs: Reimplemented namespace handling, use a recursive
2486         definition of the class.  Now we can keep track of using clauses
2487         and catch invalid using clauses.
2488
2489 2001-05-24  Miguel de Icaza  <miguel@ximian.com>
2490
2491         * gen-treedump.cs: Adapted for all the renaming.
2492
2493         * expression.cs (Expression): this class now has a Type property
2494         which returns an expression Type.
2495
2496         (Probe::, New::, TypeOf::, SizeOf::, Constant::): renamed from
2497         `Type', as this has a different meaning now in the base
2498
2499 2001-05-22  Miguel de Icaza  <miguel@ximian.com>
2500
2501         * interface.cs, class.cs: Removed from all the sources the
2502         references to signature computation, as we can not do method
2503         signature computation during the parsing time, as we are not
2504         trying to solve at that point distinguishing:
2505
2506         class X {
2507                 void a (Blah x) {}
2508                 void a (NS.Blah x) {}
2509         }
2510
2511         Which depending on the context might be valid or not, as we do not
2512         know if Blah is the same thing as NS.Blah at that point.
2513
2514         * Redid everything so the code uses TypeRefs now instead of
2515         Types.  TypeRefs are just temporary type placeholders, that need
2516         to be resolved.  They initially have a pointer to a string and the
2517         current scope in which they are used.  This is used later by the
2518         compiler to resolve the reference to an actual Type. 
2519
2520         * DeclSpace is no longer a CIR.Type, and neither are
2521         TypeContainers (Class and Struct) nor Interfaces nor Enums.  They
2522         are all DeclSpaces, but no Types. 
2523
2524         * type.cs (TypeRefManager): This implements the TypeRef manager,
2525         which keeps track of all the types that need to be resolved after
2526         the parsing has finished. 
2527
2528 2001-05-13  Miguel de Icaza  <miguel@ximian.com>
2529
2530         * ARGH.  We are going to have to store `foreach' as a class rather
2531         than resolving it, as we need to verify error 1579 after name
2532         resolution.   *OR* we could keep a flag that says `This request to
2533         IEnumerator comes from a foreach statement' which we can then use
2534         to generate the error.
2535
2536 2001-05-10  Miguel de Icaza  <miguel@ximian.com>
2537
2538         * class.cs (TypeContainer.AddMethod): we now add methods to the
2539         MethodGroup instead of the method hashtable.  
2540
2541         * expression.cs: Add MethodGroup abstraction, which gets us one
2542         step closer to the specification in the way we handle method
2543         declarations.  
2544
2545         * cs-parser.jay (primary_expression): qualified_identifier now
2546         tried to match up an identifier to a local variable reference or
2547         to a parameter reference.
2548
2549         current_local_parameters is now a parser global variable that
2550         points to the current parameters for the block, used during name
2551         lookup.
2552
2553         (property_declaration): Now creates an implicit `value' argument to
2554         the set accessor.
2555
2556 2001-05-09  Miguel de Icaza  <miguel@ximian.com>
2557
2558         * parameter.cs: Do not use `param' arguments as part of the
2559         signature, per the spec.
2560
2561 2001-05-08  Miguel de Icaza  <miguel@ximian.com>
2562
2563         * decl.cs: Base class for classes, structs and interfaces.  This
2564         is the "Declaration Space" 
2565
2566         * cs-parser.jay: Use CheckDef for checking declaration errors
2567         instead of having one on each function.
2568
2569         * class.cs: Factor out some code for handling error handling in
2570         accordance to the "Declarations" section in the "Basic Concepts"
2571         chapter in the ECMA C# spec.
2572
2573         * interface.cs: Make all interface member classes derive from
2574         InterfaceMemberBase.
2575
2576 2001-05-07  Miguel de Icaza  <miguel@ximian.com>
2577
2578         * Many things: all interfaces are parsed and generated in
2579         gen-treedump.  Support for member variables, constructors,
2580         destructors, properties, constants is there.
2581
2582         Beginning of the IL backend, but very little done, just there for
2583         testing purposes. 
2584
2585 2001-04-29  Miguel de Icaza  <miguel@ximian.com>
2586
2587         * cs-parser.jay: Fix labeled statement.
2588
2589         * cs-tokenizer.cs (escape): Escape " and ' always.
2590         ref_line, ref_name: keep track of the line/filename as instructed
2591         by #line by the compiler.
2592         Parse #line.
2593
2594 2001-04-27  Miguel de Icaza  <miguel@ximian.com>
2595
2596         * System.CodeDOM/CodeBinaryOperatorExpression.cs: Rearrange enum
2597         to match the values in System.CodeDOM.
2598
2599         Divid renamed to Divide.
2600
2601         * System.CodeDOM/CodeForLoopStatement.cs: Always have valid
2602         statements. 
2603         (Statements.set): remove.
2604
2605         * System.CodeDOM/CodeCatchClause.cs: always have a valid
2606         statements. 
2607
2608         * System.CodeDOM/CodeIfStatement.cs: trueStatements and
2609         falseStatements always have valid values. 
2610
2611         * cs-parser.jay: Use System.CodeDOM now.
2612