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