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