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