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