**** Merged r38418-r38487 from MCS ****
[mono.git] / mcs / gmcs / cs-parser.jay
1 %{
2 //
3 // cs-parser.jay: The Parser for the C# compiler
4 //
5 // Authors: Miguel de Icaza (miguel@gnu.org)
6 //          Ravi Pratap     (ravi@ximian.com)
7 //
8 // Licensed under the terms of the GNU GPL
9 //
10 // (C) 2001 Ximian, Inc (http://www.ximian.com)
11 // (C) 2004 Novell, Inc
12 //
13 // TODO:
14 //   (1) Figure out why error productions dont work.  `type-declaration' is a
15 //       great spot to put an `error' because you can reproduce it with this input:
16 //       "public X { }"
17 //
18 // Possible optimization:
19 //   Run memory profiler with parsing only, and consider dropping 
20 //   arraylists where not needed.   Some pieces can use linked lists.
21 //
22 using System.Text;
23 using System.IO;
24 using System;
25
26 namespace Mono.CSharp
27 {
28         using System.Collections;
29
30         /// <summary>
31         ///    The C# Parser
32         /// </summary>
33         public class CSharpParser {
34                 NamespaceEntry  current_namespace;
35                 TypeContainer   current_container;
36                 TypeContainer   current_class;
37         
38                 IIteratorContainer iterator_container;
39
40                 /// <summary>
41                 ///   Current block is used to add statements as we find
42                 ///   them.  
43                 /// </summary>
44                 Block      current_block, top_current_block;
45
46                 Delegate   current_delegate;
47
48                 /// <summary>
49                 ///   This is used by the unary_expression code to resolve
50                 ///   a name against a parameter.  
51                 /// </summary>
52                 Parameters current_local_parameters;
53
54                 /// <summary>
55                 ///   Using during property parsing to describe the implicit
56                 ///   value parameter that is passed to the "set" and "get"accesor
57                 ///   methods (properties and indexers).
58                 /// </summary>
59                 Expression implicit_value_parameter_type;
60                 Parameters indexer_parameters;
61
62                 /// <summary>
63                 ///   Used to determine if we are parsing the get/set pair
64                 ///   of an indexer or a property
65                 /// </summmary>
66                 bool  parsing_indexer;
67
68                 ///
69                 /// An out-of-band stack.
70                 ///
71                 Stack oob_stack;
72
73                 ///
74                 /// Switch stack.
75                 ///
76                 Stack switch_stack;
77
78                 static public int yacc_verbose_flag;
79
80                 // Name of the file we are parsing
81                 public string name;
82
83                 ///
84                 /// The current file.
85                 ///
86                 SourceFile file;
87
88                 ///
89                 /// Temporary Xml documentation cache.
90                 /// For enum types, we need one more temporary store.
91                 ///
92                 string tmpComment;
93                 string enumTypeComment;
94                         
95                 /// Current attribute target
96                 string current_attr_target;
97                 
98                 /// assembly and module attribute definition is enabled
99                 bool global_attrs_enabled = true;
100 %}
101
102 %token EOF
103 %token NONE   /* This token is never returned by our lexer */
104 %token ERROR            // This is used not by the parser, but by the tokenizer.
105                         // do not remove.
106
107 /*
108  *These are the C# keywords
109  */
110 %token FIRST_KEYWORD
111 %token ABSTRACT 
112 %token AS
113 %token ADD
114 %token ASSEMBLY
115 %token BASE     
116 %token BOOL     
117 %token BREAK    
118 %token BYTE     
119 %token CASE     
120 %token CATCH    
121 %token CHAR     
122 %token CHECKED  
123 %token CLASS    
124 %token CONST    
125 %token CONTINUE 
126 %token DECIMAL  
127 %token DEFAULT  
128 %token DELEGATE 
129 %token DO       
130 %token DOUBLE   
131 %token ELSE     
132 %token ENUM     
133 %token EVENT    
134 %token EXPLICIT 
135 %token EXTERN   
136 %token FALSE    
137 %token FINALLY  
138 %token FIXED    
139 %token FLOAT    
140 %token FOR      
141 %token FOREACH  
142 %token GOTO     
143 %token IF       
144 %token IMPLICIT 
145 %token IN       
146 %token INT      
147 %token INTERFACE
148 %token INTERNAL 
149 %token IS       
150 %token LOCK     
151 %token LONG     
152 %token NAMESPACE
153 %token NEW      
154 %token NULL     
155 %token OBJECT   
156 %token OPERATOR 
157 %token OUT      
158 %token OVERRIDE 
159 %token PARAMS   
160 %token PRIVATE  
161 %token PROTECTED
162 %token PUBLIC   
163 %token READONLY 
164 %token REF      
165 %token RETURN   
166 %token REMOVE
167 %token SBYTE    
168 %token SEALED   
169 %token SHORT    
170 %token SIZEOF   
171 %token STACKALLOC
172 %token STATIC   
173 %token STRING   
174 %token STRUCT   
175 %token SWITCH   
176 %token THIS     
177 %token THROW    
178 %token TRUE     
179 %token TRY      
180 %token TYPEOF   
181 %token UINT     
182 %token ULONG    
183 %token UNCHECKED
184 %token UNSAFE   
185 %token USHORT   
186 %token USING    
187 %token VIRTUAL  
188 %token VOID     
189 %token VOLATILE
190 %token WHERE
191 %token WHILE    
192 %token ARGLIST
193 %token PARTIAL
194
195 /* C# keywords which are not really keywords */
196 %token GET           "get"
197 %token SET           "set"
198
199 %left LAST_KEYWORD
200
201 /* C# single character operators/punctuation. */
202 %token OPEN_BRACE    "{"
203 %token CLOSE_BRACE   "}"
204 %token OPEN_BRACKET  "["
205 %token CLOSE_BRACKET "]"
206 %token OPEN_PARENS   "("
207 %token CLOSE_PARENS  ")"
208 %token DOT           "."
209 %token COMMA         ","
210 %token COLON         ":"
211 %token SEMICOLON     ";"
212 %token TILDE         "~"
213
214 %token PLUS           "+"
215 %token MINUS          "-"
216 %token BANG           "!"
217 %token ASSIGN         "="
218 %token OP_LT          "<"
219 %token OP_GENERICS_LT "<"
220 %token OP_GT          ">"
221 %token OP_GENERICS_GT ">"
222 %token BITWISE_AND    "&"
223 %token BITWISE_OR     "|"
224 %token STAR           "*"
225 %token PERCENT        "%"
226 %token DIV            "/"
227 %token CARRET         "^"
228 %token INTERR         "?"
229
230 /* C# multi-character operators. */
231 %token OP_INC                 "++"
232 %token OP_DEC                 "--"
233 %token OP_SHIFT_LEFT          "<<"
234 %token OP_SHIFT_RIGHT         ">>"
235 %token OP_LE                  "<="
236 %token OP_GE                  ">="
237 %token OP_EQ                  "=="
238 %token OP_NE                  "!="
239 %token OP_AND                 "&&"
240 %token OP_OR                  "||"
241 %token OP_MULT_ASSIGN         "*="
242 %token OP_DIV_ASSIGN          "/="
243 %token OP_MOD_ASSIGN          "%="
244 %token OP_ADD_ASSIGN          "+="
245 %token OP_SUB_ASSIGN          "-="
246 %token OP_SHIFT_LEFT_ASSIGN   "<<="
247 %token OP_SHIFT_RIGHT_ASSIGN  ">>="
248 %token OP_AND_ASSIGN          "&="
249 %token OP_XOR_ASSIGN          "^="
250 %token OP_OR_ASSIGN           "|="
251 %token OP_PTR                 "->"
252
253 /* Numbers */
254 %token LITERAL_INTEGER           "int literal"
255 %token LITERAL_FLOAT             "float literal"
256 %token LITERAL_DOUBLE            "double literal"
257 %token LITERAL_DECIMAL           "decimal literal"
258 %token LITERAL_CHARACTER         "character literal"
259 %token LITERAL_STRING            "string literal"
260
261 %token IDENTIFIER
262 %token CLOSE_PARENS_CAST
263 %token CLOSE_PARENS_NO_CAST
264 %token CLOSE_PARENS_OPEN_PARENS
265 %token CLOSE_PARENS_MINUS
266 %token DEFAULT_OPEN_PARENS
267 %token GENERIC_DIMENSION
268
269 /* Add precedence rules to solve dangling else s/r conflict */
270 %nonassoc LOWPREC
271 %nonassoc IF
272 %nonassoc ELSE
273 %right ASSIGN
274 %left OP_OR
275 %left OP_AND
276 %left BITWISE_OR
277 %left BITWISE_AND
278 %left OP_SHIFT_LEFT OP_SHIFT_RIGHT
279 %left PLUS MINUS
280 %left STAR DIV PERCENT
281 %right BANG CARRET UMINUS
282 %nonassoc OP_INC OP_DEC
283 %left OPEN_PARENS
284 %left OPEN_BRACKET OPEN_BRACE
285 %left DOT
286 %nonassoc HIGHPREC
287
288 %start compilation_unit
289 %%
290
291 compilation_unit
292         : outer_declarations opt_EOF
293         | outer_declarations global_attributes opt_EOF
294         | global_attributes opt_EOF
295         | opt_EOF /* allow empty files */
296         ;
297         
298 opt_EOF
299         : /* empty */
300         {
301                 Lexer.check_incorrect_doc_comment ();
302         }
303         | EOF
304         {
305                 Lexer.check_incorrect_doc_comment ();
306         }
307         ;
308
309 outer_declarations
310         : outer_declaration
311         | outer_declarations outer_declaration
312         ;
313  
314 outer_declaration
315         : using_directive
316         | namespace_member_declaration
317         ;
318   
319 using_directives
320         : using_directive 
321         | using_directives using_directive
322         ;
323
324 using_directive
325         : using_alias_directive
326         {
327                 if (RootContext.Documentation != null)
328                         Lexer.doc_state = XmlCommentState.Allowed;
329         }
330         | using_namespace_directive
331         {
332                 if (RootContext.Documentation != null)
333                         Lexer.doc_state = XmlCommentState.Allowed;
334         }
335         ;
336
337 using_alias_directive
338         : USING IDENTIFIER ASSIGN 
339           namespace_or_type_name SEMICOLON
340           {
341                 current_namespace.UsingAlias ((string) $2, (MemberName) $4, lexer.Location);
342           }
343         | USING error {
344                 CheckIdentifierToken (yyToken);
345           }
346         ;
347
348 using_namespace_directive
349         : USING namespace_name SEMICOLON 
350           {
351                 current_namespace.Using ((string) $2, lexer.Location);
352           }
353         ;
354
355 //
356 // Strictly speaking, namespaces don't have attributes but
357 // we parse global attributes along with namespace declarations and then
358 // detach them
359 // 
360 namespace_declaration
361         : opt_attributes NAMESPACE namespace_or_type_name
362         {
363                 if ($1 != null) {
364                         Report.Error(1518, Lexer.Location, "Attributes cannot be applied to namespaces."
365                                         + " Expected class, delegate, enum, interface, or struct");
366                 }
367
368                 MemberName name = (MemberName) $3;
369
370                 if (name.TypeArguments != null)
371                         syntax_error (lexer.Location, "namespace name expected");
372                 else if ((current_namespace.Parent != null) && (name.Left != null)) {
373                         Report.Error (134, lexer.Location,
374                                       "Cannot use qualified namespace names in nested " +
375                                       "namespace declarations");
376                 }
377
378                 current_namespace = new NamespaceEntry (
379                         current_namespace, file, name.GetName (), lexer.Location);
380           } 
381           namespace_body opt_semicolon
382           { 
383                 current_namespace = current_namespace.Parent;
384           }
385         ;
386
387 opt_semicolon
388         : /* empty */
389         | SEMICOLON
390         ;
391
392 opt_comma
393         : /* empty */
394         | COMMA
395         ;
396
397 namespace_name
398         : namespace_or_type_name {
399                 MemberName name = (MemberName) $1;
400
401                 if (name.TypeArguments != null)
402                         syntax_error (lexer.Location, "namespace name expected");
403
404                 $$ = name.GetName ();
405           }
406         ;
407
408 namespace_body
409         : OPEN_BRACE
410           {
411                 if (RootContext.Documentation != null)
412                         Lexer.doc_state = XmlCommentState.Allowed;
413           }
414           opt_using_directives
415           opt_namespace_member_declarations
416           CLOSE_BRACE
417           {
418           }
419         ;
420
421 opt_using_directives
422         : /* empty */
423         | using_directives
424         ;
425
426 opt_namespace_member_declarations
427         : /* empty */
428         | namespace_member_declarations
429         ;
430
431 namespace_member_declarations
432         : namespace_member_declaration
433         | namespace_member_declarations namespace_member_declaration
434         ;
435
436 namespace_member_declaration
437         : type_declaration
438           {
439                 string name = "";
440                 int mod_flags;
441
442                 if ($1 is Class){
443                         Class c = (Class) $1;
444                         mod_flags = c.ModFlags;
445                         name = c.Name;
446                 } else if ($1 is Struct){
447                         Struct s = (Struct) $1;
448                         mod_flags = s.ModFlags;
449                         name = s.Name;
450                 } else
451                         break;
452
453                 if ((mod_flags & (Modifiers.PRIVATE|Modifiers.PROTECTED)) != 0){
454                         Report.Error (
455                                 1527, lexer.Location, 
456                                 "Namespace elements cant be explicitly " +
457                                 "declared private or protected in `" + name + "'");
458                 }
459                 current_namespace.DeclarationFound = true;
460           }
461         | namespace_declaration {
462                 current_namespace.DeclarationFound = true;
463           }
464
465         | field_declaration {
466                 Report.Error (116, lexer.Location, "A namespace can only contain types and namespace declarations");
467           }
468         | method_declaration {
469                 Report.Error (116, lexer.Location, "A namespace can only contain types and namespace declarations");
470           }
471         ;
472
473 type_declaration
474         : class_declaration             
475         | struct_declaration            
476         | interface_declaration         
477         | enum_declaration              
478         | delegate_declaration
479 //
480 // Enable this when we have handled all errors, because this acts as a generic fallback
481 //
482 //      | error {
483 //              Console.WriteLine ("Token=" + yyToken);
484 //              Report.Error (1518, lexer.Location, "Expected class, struct, interface, enum or delegate");
485 //        }
486         ;
487
488 //
489 // Attributes 17.2
490 //
491
492 global_attributes
493         : attribute_sections
494 {
495         if ($1 != null)
496                 CodeGen.Assembly.AddAttributes (((Attributes)$1).Attrs);
497
498         $$ = $1;
499 }
500
501 opt_attributes
502         : /* empty */ 
503           {
504                 global_attrs_enabled = false;
505                 $$ = null;
506       }
507         | attribute_sections
508           { 
509                 global_attrs_enabled = false;
510                 $$ = $1;
511           }
512     ;
513  
514
515 attribute_sections
516         : attribute_section
517           {
518                 ArrayList sect = (ArrayList) $1;
519
520                 if (global_attrs_enabled) {
521                         if (current_attr_target == "module") {
522                                 CodeGen.Module.AddAttributes (sect);
523                                 $$ = null;
524                         } else if (current_attr_target == "assembly") {
525                                 CodeGen.Assembly.AddAttributes (sect);
526                                 $$ = null;
527                         } else {
528                                 $$ = new Attributes (sect);
529                         }
530                         if ($$ == null) {
531                                 if (RootContext.Documentation != null) {
532                                         Lexer.check_incorrect_doc_comment ();
533                                         Lexer.doc_state =
534                                                 XmlCommentState.Allowed;
535                                 }
536                         }
537                 } else {
538                         $$ = new Attributes (sect);
539                 }               
540                 current_attr_target = null;
541       }
542         | attribute_sections attribute_section
543           {
544                 Attributes attrs = $1 as Attributes;
545                 ArrayList sect = (ArrayList) $2;
546
547                 if (global_attrs_enabled) {
548                         if (current_attr_target == "module") {
549                                 CodeGen.Module.AddAttributes (sect);
550                                 $$ = null;
551                         } else if (current_attr_target == "assembly") {
552                                 CodeGen.Assembly.AddAttributes (sect);
553                                 $$ = null;
554                         } else {
555                                 if (attrs == null)
556                                         attrs = new Attributes (sect);
557                                 else
558                                         attrs.AddAttributes (sect);                     
559                         }
560                 } else {
561                         if (attrs == null)
562                                 attrs = new Attributes (sect);
563                         else
564                                 attrs.AddAttributes (sect);
565                 }               
566                 $$ = attrs;
567                 current_attr_target = null;
568           }
569         ;
570
571 attribute_section
572         : OPEN_BRACKET attribute_target_specifier attribute_list opt_comma CLOSE_BRACKET
573           {
574                 $$ = $3;
575           }
576         | OPEN_BRACKET attribute_list opt_comma CLOSE_BRACKET
577           {
578                 $$ = $2;
579           }
580         ;
581  
582 attribute_target_specifier
583         : attribute_target COLON
584           {
585                 current_attr_target = (string)$1;
586                 $$ = $1;
587           }
588         ;
589
590 attribute_target
591         : IDENTIFIER
592           {
593                 CheckAttributeTarget ((string) $1);
594                 $$ = $1;
595           }
596         | EVENT  { $$ = "event"; }        
597         | RETURN { $$ = "return"; }
598         ;
599
600 attribute_list
601         : attribute
602           {
603                 ArrayList attrs = new ArrayList (4);
604                 attrs.Add ($1);
605
606                 $$ = attrs;
607                
608           }
609         | attribute_list COMMA attribute
610           {
611                 ArrayList attrs = (ArrayList) $1;
612                 attrs.Add ($3);
613
614                 $$ = attrs;
615           }
616         ;
617
618 attribute
619         : attribute_name
620           {
621                 $$ = lexer.Location;
622           }
623           opt_attribute_arguments
624           {
625                 MemberName mname = (MemberName) $1;
626                 if (mname.IsGeneric) {
627                         Report.Error (404, lexer.Location,
628                                       "'<' unexpected: attributes cannot be generic");
629                 }
630
631                 string name = mname.GetName ();
632                 if (current_attr_target == "assembly" || current_attr_target == "module")
633                         $$ = new GlobalAttribute (current_container, current_attr_target,
634                                                   name, (ArrayList) $3, (Location) $2);
635                 else
636                         $$ = new Attribute (current_attr_target, name, (ArrayList) $3,
637                                             (Location) $2);
638           }
639         ;
640
641 attribute_name
642         : namespace_or_type_name  { /* reserved attribute name or identifier: 17.4 */ }
643         ;
644
645 opt_attribute_arguments
646         : /* empty */   { $$ = null; }
647         | OPEN_PARENS attribute_arguments CLOSE_PARENS
648           {
649                 $$ = $2;
650           }
651         ;
652
653
654 attribute_arguments
655         : opt_positional_argument_list
656           {
657                 if ($1 == null)
658                         $$ = null;
659                 else {
660                         ArrayList args = new ArrayList (4);
661                         args.Add ($1);
662                 
663                         $$ = args;
664                 }
665           }
666         | positional_argument_list COMMA named_argument_list
667           {
668                 ArrayList args = new ArrayList (4);
669                 args.Add ($1);
670                 args.Add ($3);
671
672                 $$ = args;
673           }
674         | named_argument_list
675           {
676                 ArrayList args = new ArrayList (4);
677                 args.Add (null);
678                 args.Add ($1);
679                 
680                 $$ = args;
681           }
682         ;
683
684
685 opt_positional_argument_list
686         : /* empty */           { $$ = null; } 
687         | positional_argument_list
688         ;
689
690 positional_argument_list
691         : expression
692           {
693                 ArrayList args = new ArrayList (4);
694                 args.Add (new Argument ((Expression) $1, Argument.AType.Expression));
695
696                 $$ = args;
697           }
698         | positional_argument_list COMMA expression
699          {
700                 ArrayList args = (ArrayList) $1;
701                 args.Add (new Argument ((Expression) $3, Argument.AType.Expression));
702
703                 $$ = args;
704          }
705         ;
706
707 named_argument_list
708         : named_argument
709           {
710                 ArrayList args = new ArrayList (4);
711                 args.Add ($1);
712
713                 $$ = args;
714           }
715         | named_argument_list COMMA named_argument
716           {       
717                 ArrayList args = (ArrayList) $1;
718                 args.Add ($3);
719
720                 $$ = args;
721           }
722           | named_argument_list COMMA expression
723             {
724                   Report.Error (1016, lexer.Location, "Named attribute argument expected");
725                   $$ = null;
726                 }
727         ;
728
729 named_argument
730         : IDENTIFIER ASSIGN expression
731           {
732                 $$ = new DictionaryEntry (
733                         (string) $1, 
734                         new Argument ((Expression) $3, Argument.AType.Expression));
735           }
736         ;
737
738                   
739 class_body
740         :  OPEN_BRACE opt_class_member_declarations CLOSE_BRACE
741         ;
742
743 opt_class_member_declarations
744         : /* empty */
745         | class_member_declarations
746         ;
747
748 class_member_declarations
749         : class_member_declaration
750         | class_member_declarations 
751           class_member_declaration
752         ;
753
754 class_member_declaration
755         : constant_declaration                  // done
756         | field_declaration                     // done
757         | method_declaration                    // done
758         | property_declaration                  // done
759         | event_declaration                     // done
760         | indexer_declaration                   // done
761         | operator_declaration                  // done
762         | constructor_declaration               // done
763         | destructor_declaration                // done
764         | type_declaration
765         ;
766
767 struct_declaration
768         : opt_attributes
769           opt_modifiers
770           opt_partial
771           STRUCT member_name
772           { 
773                 MemberName name = MakeName ((MemberName) $5);
774                 bool partial = (bool) $3;
775
776                 if (partial) {
777                         ClassPart part = PartialContainer.CreatePart (
778                                 current_namespace, current_container, name, (int) $2,
779                                 (Attributes) $1, Kind.Struct, lexer.Location);
780
781                         current_container = part.PartialContainer;
782                         current_class = part;
783                 } else {
784                         current_class = new Struct (
785                                 current_namespace, current_container, name, (int) $2,
786                                 (Attributes) $1, lexer.Location);
787
788                         current_container = current_class;
789                         RootContext.Tree.RecordDecl (name.GetName (true), current_class);
790                 }
791
792                 lexer.ConstraintsParsing = true;
793           }
794           opt_class_base
795           opt_type_parameter_constraints_clauses
796           {
797                 lexer.ConstraintsParsing = false;
798
799                 if ($7 != null)
800                         current_class.Bases = (ArrayList) $7;
801
802                 current_class.SetParameterInfo ((ArrayList) $8);
803
804                 if (RootContext.Documentation != null)
805                         current_class.DocComment = Lexer.consume_doc_comment ();
806
807                 current_class.Register ();
808           }
809           struct_body
810           {
811                 if (RootContext.Documentation != null)
812                         Lexer.doc_state = XmlCommentState.Allowed;
813           }
814           opt_semicolon
815           {
816                 $$ = current_class;
817
818                 current_container = current_container.Parent;
819                 current_class = current_container;
820           }
821         | opt_attributes opt_modifiers opt_partial STRUCT error {
822                 CheckIdentifierToken (yyToken);
823           }
824         ;
825
826 struct_body
827         : OPEN_BRACE
828           {
829                 if (RootContext.Documentation != null)
830                         Lexer.doc_state = XmlCommentState.Allowed;
831           }
832           opt_struct_member_declarations CLOSE_BRACE
833         ;
834
835 opt_struct_member_declarations
836         : /* empty */
837         | struct_member_declarations
838         ;
839
840 struct_member_declarations
841         : struct_member_declaration
842         | struct_member_declarations struct_member_declaration
843         ;
844
845 struct_member_declaration
846         : constant_declaration
847         | field_declaration
848         | method_declaration
849         | property_declaration
850         | event_declaration
851         | indexer_declaration
852         | operator_declaration
853         | constructor_declaration
854         | type_declaration
855
856         /*
857          * This is only included so we can flag error 575: 
858          * destructors only allowed on class types
859          */
860         | destructor_declaration 
861         ;
862
863 constant_declaration
864         : opt_attributes 
865           opt_modifiers
866           CONST
867           type
868           constant_declarators
869           SEMICOLON
870           {
871                 int modflags = (int) $2;
872                 foreach (VariableDeclaration constant in (ArrayList) $5){
873                         Location l = constant.Location;
874                         if ((modflags & Modifiers.STATIC) != 0) {
875                                 Report.Error (504, l, "The constant '{0}' cannot be marked static", current_container.GetSignatureForError () + '.' + (string) constant.identifier);
876                                 continue;
877                         }
878
879                         Const c = new Const (
880                                 current_class, (Expression) $4, (string) constant.identifier, 
881                                 (Expression) constant.expression_or_array_initializer, modflags, 
882                                 (Attributes) $1, l);
883
884                         if (RootContext.Documentation != null) {
885                                 c.DocComment = Lexer.consume_doc_comment ();
886                                 Lexer.doc_state = XmlCommentState.Allowed;
887                         }
888                         current_container.AddConstant (c);
889                 }
890           }
891         ;
892
893 constant_declarators
894         : constant_declarator 
895           {
896                 ArrayList constants = new ArrayList (4);
897                 if ($1 != null)
898                         constants.Add ($1);
899                 $$ = constants;
900           }
901         | constant_declarators COMMA constant_declarator
902           {
903                 if ($3 != null) {
904                         ArrayList constants = (ArrayList) $1;
905                         constants.Add ($3);
906                 }
907           }
908         ;
909
910 constant_declarator
911         : IDENTIFIER ASSIGN constant_expression
912           {
913                 $$ = new VariableDeclaration ((string) $1, $3, lexer.Location);
914           }
915         | IDENTIFIER
916           {
917                 // A const field requires a value to be provided
918                 Report.Error (145, lexer.Location, "A const field requires a value to be provided");
919                 $$ = null;
920           }
921         ;
922
923 field_declaration
924         : opt_attributes
925           opt_modifiers
926           type 
927           variable_declarators
928           SEMICOLON
929           { 
930                 Expression type = (Expression) $3;
931                 int mod = (int) $2;
932
933                 foreach (VariableDeclaration var in (ArrayList) $4){
934                         Location l = var.Location;
935
936                         Field field = new Field (current_class, type, mod, var.identifier, 
937                                                  var.expression_or_array_initializer, 
938                                                  (Attributes) $1, l);
939
940                         if (RootContext.Documentation != null) {
941                                 field.DocComment = Lexer.consume_doc_comment ();
942                                 Lexer.doc_state = XmlCommentState.Allowed;
943                         }
944                         current_container.AddField (field);
945                 }
946           }
947         | opt_attributes
948           opt_modifiers
949           VOID  
950           variable_declarators
951           SEMICOLON {
952                 Report.Error (670, lexer.Location, "void type is not allowed for fields");
953           }
954         ;
955
956 variable_declarators
957         : variable_declarator 
958           {
959                 ArrayList decl = new ArrayList (4);
960                 decl.Add ($1);
961                 $$ = decl;
962           }
963         | variable_declarators COMMA variable_declarator
964           {
965                 ArrayList decls = (ArrayList) $1;
966                 decls.Add ($3);
967                 $$ = $1;
968           }
969         ;
970
971 variable_declarator
972         : IDENTIFIER ASSIGN variable_initializer
973           {
974                 $$ = new VariableDeclaration ((string) $1, $3, lexer.Location);
975           }
976         | IDENTIFIER
977           {
978                 $$ = new VariableDeclaration ((string) $1, null, lexer.Location);
979           }
980         ;
981
982 variable_initializer
983         : expression
984           {
985                 $$ = $1;
986           }
987         | array_initializer
988           {
989                 $$ = $1;
990           }
991         | STACKALLOC type OPEN_BRACKET expression CLOSE_BRACKET
992           {
993                 $$ = new StackAlloc ((Expression) $2, (Expression) $4, lexer.Location);
994           }
995         | STACKALLOC type
996           {
997                 Report.Error (1575, lexer.Location, "A stackalloc expression requires [] after type");
998                 $$ = null;
999           }
1000         ;
1001
1002 method_declaration
1003         : method_header {
1004                 iterator_container = (IIteratorContainer) $1;
1005                 if (RootContext.Documentation != null)
1006                         Lexer.doc_state = XmlCommentState.NotAllowed;
1007           }
1008           method_body
1009           {
1010                 Method method = (Method) $1;
1011                 Block b = (Block) $3;
1012                 const int extern_abstract = (Modifiers.EXTERN | Modifiers.ABSTRACT);
1013
1014                 if (b == null){
1015                         if ((method.ModFlags & extern_abstract) == 0){
1016                                 Report.Error (
1017                                         501, lexer.Location,  current_container.MakeName (method.Name) +
1018                                         "must declare a body because it is not marked abstract or extern");
1019                         }
1020                 } else {
1021                         if ((method.ModFlags & Modifiers.EXTERN) != 0){
1022                                 Report.Error (
1023                                         179, lexer.Location, current_container.MakeName (method.Name) +
1024                                         " is declared extern, but has a body");
1025                         }
1026                 }
1027
1028                 method.Block = (ToplevelBlock) $3;
1029                 current_container.AddMethod (method);
1030
1031                 current_local_parameters = null;
1032                 iterator_container = null;
1033
1034                 if (RootContext.Documentation != null)
1035                         Lexer.doc_state = XmlCommentState.Allowed;
1036           }
1037         ;
1038
1039 opt_error_modifier
1040         : /* empty */
1041         | modifiers 
1042           {
1043                 int m = (int) $1;
1044                 int i = 1;
1045
1046                 while (m != 0){
1047                         if ((i & m) != 0){
1048                                 Report.Error (
1049                                         1585, lexer.Location, "Member modifier `" + 
1050                                         Modifiers.Name (i) + "' must precede member type and name");
1051                         }
1052                         m &= ~i;
1053                         i = i << 1;
1054                 }
1055           }
1056         ;
1057
1058 method_header
1059         : opt_attributes
1060           opt_modifiers
1061           type namespace_or_type_name
1062           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS 
1063           {
1064                 lexer.ConstraintsParsing = true;
1065           }
1066           opt_type_parameter_constraints_clauses
1067           {
1068                 lexer.ConstraintsParsing = false;
1069
1070                 MemberName name = (MemberName) $4;
1071
1072                 if ($9 != null && name.TypeArguments == null)
1073                         Report.Error (80, lexer.Location,
1074                                       "Contraints are not allowed on non-generic declarations");
1075
1076                 Method method;
1077
1078                 GenericMethod generic = null;
1079                 if (name.TypeArguments != null) {
1080                         generic = new GenericMethod (current_namespace, current_class,
1081                                                      name, lexer.Location);
1082
1083                         generic.SetParameterInfo ((ArrayList) $9);
1084                 }
1085
1086                 method = new Method (current_class, generic, (Expression) $3, (int) $2, false,
1087                                      name, (Parameters) $6, (Attributes) $1, lexer.Location);
1088
1089                 current_local_parameters = (Parameters) $6;
1090
1091                 if (RootContext.Documentation != null)
1092                         method.DocComment = Lexer.consume_doc_comment ();
1093
1094                 $$ = method;
1095           }
1096         | opt_attributes
1097           opt_modifiers
1098           VOID namespace_or_type_name
1099           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS 
1100           {
1101                 lexer.ConstraintsParsing = true;
1102           }
1103           opt_type_parameter_constraints_clauses
1104           {
1105                 lexer.ConstraintsParsing = false;
1106
1107                 MemberName name = (MemberName) $4;
1108
1109                 if ($9 != null && name.TypeArguments == null)
1110                         Report.Error (80, lexer.Location,
1111                                       "Contraints are not allowed on non-generic declarations");
1112
1113                 Method method;
1114                 GenericMethod generic = null;
1115                 if (name.TypeArguments != null) {
1116                         generic = new GenericMethod (current_namespace, current_class,
1117                                                      name, lexer.Location);
1118
1119                         generic.SetParameterInfo ((ArrayList) $9);
1120                 }
1121
1122                 method = new Method (current_class, generic, TypeManager.system_void_expr,
1123                                      (int) $2, false, name, (Parameters) $6, (Attributes) $1,
1124                                      lexer.Location);
1125
1126                 current_local_parameters = (Parameters) $6;
1127
1128                 if (RootContext.Documentation != null)
1129                         method.DocComment = Lexer.consume_doc_comment ();
1130
1131                 $$ = method;
1132           }
1133         | opt_attributes
1134           opt_modifiers
1135           type 
1136           modifiers namespace_or_type_name OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS
1137           {
1138                 Report.Error (1585, lexer.Location, 
1139                         String.Format ("Modifier {0} should appear before type", 
1140                                 Modifiers.Name ((int) $4)));
1141                 MemberName name = (MemberName) $4;
1142
1143                 Method method = new Method (current_class, null, TypeManager.system_void_expr,
1144                                             0, false, name, (Parameters) $6, (Attributes) $1,
1145                                             lexer.Location);
1146
1147                 current_local_parameters = (Parameters) $6;
1148
1149                 if (RootContext.Documentation != null)
1150                         method.DocComment = Lexer.consume_doc_comment ();
1151
1152                 $$ = method;
1153           }
1154         ;
1155
1156 method_body
1157         : block
1158         | SEMICOLON             { $$ = null; }
1159         ;
1160
1161 opt_formal_parameter_list
1162         : /* empty */                   { $$ = Parameters.EmptyReadOnlyParameters; }
1163         | formal_parameter_list
1164         ;
1165
1166 formal_parameter_list
1167         : fixed_parameters              
1168           { 
1169                 ArrayList pars_list = (ArrayList) $1;
1170
1171                 Parameter [] pars = new Parameter [pars_list.Count];
1172                 pars_list.CopyTo (pars);
1173
1174                 $$ = new Parameters (pars, null, lexer.Location); 
1175           } 
1176         | fixed_parameters COMMA parameter_array
1177           {
1178                 ArrayList pars_list = (ArrayList) $1;
1179
1180                 Parameter [] pars = new Parameter [pars_list.Count];
1181                 pars_list.CopyTo (pars);
1182
1183                 $$ = new Parameters (pars, (Parameter) $3, lexer.Location); 
1184           }
1185         | fixed_parameters COMMA ARGLIST
1186           {
1187                 ArrayList pars_list = (ArrayList) $1;
1188
1189                 Parameter [] pars = new Parameter [pars_list.Count];
1190                 pars_list.CopyTo (pars);
1191
1192                 $$ = new Parameters (pars, true, lexer.Location);
1193           }
1194         | parameter_array 
1195           {
1196                 $$ = new Parameters (null, (Parameter) $1, lexer.Location);
1197           }
1198         | ARGLIST
1199           {
1200                 $$ = new Parameters (null, true, lexer.Location);
1201           }
1202         ;
1203
1204 fixed_parameters
1205         : fixed_parameter       
1206           {
1207                 ArrayList pars = new ArrayList (4);
1208
1209                 pars.Add ($1);
1210                 $$ = pars;
1211           }
1212         | fixed_parameters COMMA fixed_parameter
1213           {
1214                 ArrayList pars = (ArrayList) $1;
1215
1216                 pars.Add ($3);
1217                 $$ = $1;
1218           }
1219         ;
1220
1221 fixed_parameter
1222         : opt_attributes
1223           opt_parameter_modifier
1224           type
1225           IDENTIFIER
1226           {
1227                 $$ = new Parameter ((Expression) $3, (string) $4, (Parameter.Modifier) $2, (Attributes) $1);
1228           }
1229         | opt_attributes
1230           opt_parameter_modifier
1231           type
1232           {
1233                 Report.Error (1001, lexer.Location, "Identifier expected");
1234                 $$ = null;
1235           }
1236         | opt_attributes
1237           opt_parameter_modifier
1238           type
1239           error {
1240                 CheckIdentifierToken (yyToken);
1241                 $$ = null;
1242           }
1243         | opt_attributes
1244           opt_parameter_modifier
1245           type
1246           IDENTIFIER
1247           ASSIGN
1248           constant_expression
1249            {
1250                  Report.Error (241, lexer.Location, "Default parameter specifiers are not permitted");
1251                  $$ = null;
1252            }
1253         ;
1254
1255 opt_parameter_modifier
1256         : /* empty */           { $$ = Parameter.Modifier.NONE; }
1257         | parameter_modifier
1258         ;
1259
1260 parameter_modifier
1261         : REF                   { $$ = Parameter.Modifier.REF | Parameter.Modifier.ISBYREF; }
1262         | OUT                   { $$ = Parameter.Modifier.OUT | Parameter.Modifier.ISBYREF; }
1263         ;
1264
1265 parameter_array
1266         : opt_attributes PARAMS type IDENTIFIER
1267           { 
1268                 $$ = new Parameter ((Expression) $3, (string) $4, Parameter.Modifier.PARAMS, (Attributes) $1);
1269                 note ("type must be a single-dimension array type"); 
1270           }
1271         | opt_attributes PARAMS parameter_modifier type IDENTIFIER 
1272           {
1273                 Report.Error (1611, lexer.Location, "The params parameter cannot be declared as ref or out");
1274                 $$ = null;
1275           }
1276         | opt_attributes PARAMS type error {
1277                 CheckIdentifierToken (yyToken);
1278                 $$ = null;
1279           }
1280         ;
1281
1282 property_declaration
1283         : opt_attributes
1284           opt_modifiers
1285           type
1286           namespace_or_type_name
1287           {
1288                 if (RootContext.Documentation != null)
1289                         tmpComment = Lexer.consume_doc_comment ();
1290           }
1291           OPEN_BRACE 
1292           {
1293                 implicit_value_parameter_type = (Expression) $3;
1294
1295                 lexer.PropertyParsing = true;
1296
1297                 $$ = lexer.Location;
1298
1299                 iterator_container = SimpleIteratorContainer.GetSimple ();
1300           }
1301           accessor_declarations 
1302           {
1303                 lexer.PropertyParsing = false;
1304           }
1305           CLOSE_BRACE
1306           { 
1307                 Property prop;
1308                 Pair pair = (Pair) $8;
1309                 Accessor get_block = (Accessor) pair.First;
1310                 Accessor set_block = (Accessor) pair.Second;
1311
1312                 Location loc = (Location) $7;
1313                 MemberName name = (MemberName) $4;
1314
1315                 if (name.TypeArguments != null)
1316                         syntax_error (lexer.Location, "a property can't have type arguments");
1317
1318                 prop = new Property (current_container, (Expression) $3, (int) $2, false,
1319                                      name, (Attributes) $1, get_block, set_block, loc);
1320                 if (SimpleIteratorContainer.Simple.Yields)
1321                         prop.SetYields ();
1322                 
1323                 current_container.AddProperty (prop);
1324                 implicit_value_parameter_type = null;
1325                 iterator_container = null;
1326
1327                 if (RootContext.Documentation != null)
1328                         prop.DocComment = ConsumeStoredComment ();
1329
1330           }
1331         ;
1332
1333 accessor_declarations
1334         : get_accessor_declaration opt_set_accessor_declaration
1335           { 
1336                 $$ = new Pair ($1, $2);
1337           }
1338         | set_accessor_declaration opt_get_accessor_declaration
1339           {
1340                 $$ = new Pair ($2, $1);
1341           }
1342         ;
1343
1344 opt_get_accessor_declaration
1345         : /* empty */                   { $$ = null; }
1346         | get_accessor_declaration
1347         ;
1348
1349 opt_set_accessor_declaration
1350         : /* empty */                   { $$ = null; }
1351         | set_accessor_declaration
1352         ;
1353
1354 get_accessor_declaration
1355         : opt_attributes opt_modifiers GET
1356           {
1357                 // If this is not the case, then current_local_parameters has already
1358                 // been set in indexer_declaration
1359                 if (parsing_indexer == false)
1360                         current_local_parameters = null;
1361                 else 
1362                         current_local_parameters = indexer_parameters;
1363                 lexer.PropertyParsing = false;
1364           }
1365           accessor_body
1366           {
1367                 $$ = new Accessor ((ToplevelBlock) $5, (int) $2, (Attributes) $1, lexer.Location);
1368                 current_local_parameters = null;
1369                 lexer.PropertyParsing = true;
1370
1371                 if (RootContext.Documentation != null)
1372                         if (Lexer.doc_state == XmlCommentState.Error)
1373                                 Lexer.doc_state = XmlCommentState.NotAllowed;
1374           }
1375         ;
1376
1377 set_accessor_declaration
1378         : opt_attributes opt_modifiers SET 
1379           {
1380                 Parameter [] args;
1381                 Parameter implicit_value_parameter = new Parameter (
1382                         implicit_value_parameter_type, "value", 
1383                         Parameter.Modifier.NONE, null);
1384
1385                 if (parsing_indexer == false) {
1386                         args  = new Parameter [1];
1387                         args [0] = implicit_value_parameter;
1388                         current_local_parameters = new Parameters (args, null, lexer.Location);
1389                 } else {
1390                         Parameter [] fpars = indexer_parameters.FixedParameters;
1391
1392                         if (fpars != null){
1393                                 int count = fpars.Length;
1394
1395                                 args = new Parameter [count + 1];
1396                                 fpars.CopyTo (args, 0);
1397                                 args [count] = implicit_value_parameter;
1398                         } else 
1399                                 args = null;
1400                         current_local_parameters = new Parameters (
1401                                 args, indexer_parameters.ArrayParameter, lexer.Location);
1402                 }
1403                 
1404                 lexer.PropertyParsing = false;
1405           }
1406           accessor_body
1407           {
1408                 $$ = new Accessor ((ToplevelBlock) $5, (int) $2, (Attributes) $1, lexer.Location);
1409                 current_local_parameters = null;
1410                 lexer.PropertyParsing = true;
1411
1412                 if (RootContext.Documentation != null
1413                         && Lexer.doc_state == XmlCommentState.Error)
1414                         Lexer.doc_state = XmlCommentState.NotAllowed;
1415           }
1416         ;
1417
1418 accessor_body
1419         : block 
1420         | SEMICOLON             { $$ = null; }
1421         ;
1422
1423 interface_declaration
1424         : opt_attributes
1425           opt_modifiers
1426           opt_partial
1427           INTERFACE member_name
1428           {
1429                 MemberName name = MakeName ((MemberName) $5);
1430                 bool partial = (bool) $3;
1431
1432                 if (partial) {
1433                         ClassPart part = PartialContainer.CreatePart (
1434                                 current_namespace, current_container, name, (int) $2,
1435                                 (Attributes) $1, Kind.Interface, lexer.Location);
1436
1437                         current_container = part.PartialContainer;
1438                         current_class = part;
1439                 } else {
1440                         current_class = new Interface (
1441                                 current_namespace, current_container, name, (int) $2,
1442                                 (Attributes) $1, lexer.Location);
1443
1444                         current_container = current_class;
1445                         RootContext.Tree.RecordDecl (name.GetName (true), current_class);
1446                 }
1447
1448                 lexer.ConstraintsParsing = true;
1449           }
1450           opt_class_base
1451           opt_type_parameter_constraints_clauses
1452           {
1453                 lexer.ConstraintsParsing = false;
1454
1455                 if ($7 != null)
1456                         current_class.Bases = (ArrayList) $7;
1457
1458                 current_class.SetParameterInfo ((ArrayList) $8);
1459
1460                 if (RootContext.Documentation != null) {
1461                         current_class.DocComment = Lexer.consume_doc_comment ();
1462                         Lexer.doc_state = XmlCommentState.Allowed;
1463                 }
1464
1465                 current_class.Register ();
1466           }
1467           interface_body
1468           { 
1469                 if (RootContext.Documentation != null)
1470                         Lexer.doc_state = XmlCommentState.Allowed;
1471           }
1472           opt_semicolon 
1473           {
1474                 $$ = current_class;
1475
1476                 current_container = current_container.Parent;
1477                 current_class = current_container;
1478           }
1479         | opt_attributes opt_modifiers opt_partial INTERFACE error {
1480                 CheckIdentifierToken (yyToken);
1481           }
1482         ;
1483
1484 interface_body
1485         : OPEN_BRACE
1486           opt_interface_member_declarations
1487           CLOSE_BRACE
1488         ;
1489
1490 opt_interface_member_declarations
1491         : /* empty */
1492         | interface_member_declarations
1493         ;
1494
1495 interface_member_declarations
1496         : interface_member_declaration
1497         | interface_member_declarations interface_member_declaration
1498         ;
1499
1500 interface_member_declaration
1501         : interface_method_declaration          
1502           { 
1503                 Method m = (Method) $1;
1504
1505                 if (m.IsExplicitImpl)
1506                         Report.Error (541, lexer.Location, 
1507                                 "Explicit interface declaration can only be declared in a class or struct");
1508
1509                 current_container.AddMethod (m);
1510
1511                 if (RootContext.Documentation != null)
1512                         Lexer.doc_state = XmlCommentState.Allowed;
1513           }
1514         | interface_property_declaration        
1515           { 
1516                 Property p = (Property) $1;
1517
1518                 if (p.IsExplicitImpl)
1519                         Report.Error (541, lexer.Location, 
1520                                 "Explicit interface declaration can only be declared in a class or struct");
1521
1522                 current_container.AddProperty (p);
1523
1524                 if (RootContext.Documentation != null)
1525                         Lexer.doc_state = XmlCommentState.Allowed;
1526           }
1527         | interface_event_declaration 
1528           { 
1529                 if ($1 != null){
1530                         Event e = (Event) $1;
1531
1532                         if (e.IsExplicitImpl)
1533                                 Report.Error (541, lexer.Location, 
1534                                     "Explicit interface declaration can only be declared in a class or struct");
1535                         
1536                         current_container.AddEvent (e);
1537                 }
1538
1539                 if (RootContext.Documentation != null)
1540                         Lexer.doc_state = XmlCommentState.Allowed;
1541           }
1542         | interface_indexer_declaration
1543           { 
1544                 Indexer i = (Indexer) $1;
1545
1546                 if (i.IsExplicitImpl)
1547                         Report.Error (541, lexer.Location, 
1548                                 "Explicit interface declaration can only be declared in a class or struct");
1549
1550                 current_container.AddIndexer (i);
1551
1552                 if (RootContext.Documentation != null)
1553                         Lexer.doc_state = XmlCommentState.Allowed;
1554           }
1555         ;
1556
1557 opt_new
1558         : opt_modifiers 
1559           {
1560                 int val = (int) $1;
1561                 val = Modifiers.Check (Modifiers.NEW | Modifiers.UNSAFE, val, 0, lexer.Location);
1562                 $$ = val;
1563           }
1564         ;
1565
1566 interface_method_declaration
1567         : opt_attributes opt_new type namespace_or_type_name
1568           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS
1569           {
1570                 lexer.ConstraintsParsing = true;
1571           }
1572           opt_type_parameter_constraints_clauses
1573           SEMICOLON
1574           {
1575                 lexer.ConstraintsParsing = false;
1576
1577                 MemberName name = (MemberName) $4;
1578
1579                 if ($9 != null && name.TypeArguments == null)
1580                         Report.Error (80, lexer.Location,
1581                                       "Contraints are not allowed on non-generic declarations");
1582
1583                 GenericMethod generic = null;
1584                 if (name.TypeArguments != null) {
1585                         generic = new GenericMethod (current_namespace, current_class,
1586                                                      name, lexer.Location);
1587
1588                         generic.SetParameterInfo ((ArrayList) $9);
1589                 }
1590
1591                 $$ = new Method (current_class, generic, (Expression) $3, (int) $2, true, name,
1592                                  (Parameters) $6, (Attributes) $1, lexer.Location);
1593                 if (RootContext.Documentation != null)
1594                         ((Method) $$).DocComment = Lexer.consume_doc_comment ();
1595           }
1596         | opt_attributes opt_new VOID namespace_or_type_name
1597           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS
1598           {
1599                 lexer.ConstraintsParsing = true;
1600           }
1601           opt_type_parameter_constraints_clauses
1602           SEMICOLON
1603           {
1604                 lexer.ConstraintsParsing = false;
1605
1606                 MemberName name = (MemberName) $4;
1607
1608                 if ($9 != null && name.TypeArguments == null)
1609                         Report.Error (80, lexer.Location,
1610                                       "Contraints are not allowed on non-generic declarations");
1611
1612                 GenericMethod generic = null;
1613                 if (name.TypeArguments != null) {
1614                         generic = new GenericMethod (current_namespace, current_class,
1615                                                      name, lexer.Location);
1616
1617                         generic.SetParameterInfo ((ArrayList) $9);
1618                 }
1619
1620                 $$ = new Method (current_class, generic, TypeManager.system_void_expr, (int) $2,
1621                                  true, name, (Parameters) $6, (Attributes) $1, lexer.Location);
1622                 if (RootContext.Documentation != null)
1623                         ((Method) $$).DocComment = Lexer.consume_doc_comment ();
1624           }
1625         ;
1626
1627 interface_property_declaration
1628         : opt_attributes
1629           opt_new
1630           type IDENTIFIER 
1631           OPEN_BRACE 
1632           { lexer.PropertyParsing = true; }
1633           interface_accessors 
1634           { lexer.PropertyParsing = false; }
1635           CLOSE_BRACE
1636           {
1637                 InterfaceAccessorInfo pinfo = (InterfaceAccessorInfo) $7;
1638
1639                 $$ = new Property (current_class, (Expression) $3, (int) $2, true,
1640                                    new MemberName ((string) $4), (Attributes) $1,
1641                                    pinfo.Get, pinfo.Set, lexer.Location);
1642                 if (RootContext.Documentation != null)
1643                         ((Property) $$).DocComment = Lexer.consume_doc_comment ();
1644           }
1645         | opt_attributes
1646           opt_new
1647           type error {
1648                 CheckIdentifierToken (yyToken);
1649                 $$ = null;
1650           }
1651         ;
1652
1653 interface_accessors
1654         : opt_attributes opt_modifiers GET SEMICOLON    
1655         { $$ = new InterfaceAccessorInfo (true, false, (Attributes) $1, null, (int) $2, 0, lexer.Location, lexer.Location); }
1656         | opt_attributes opt_modifiers SET SEMICOLON            
1657         { $$ = new InterfaceAccessorInfo (false, true, null, (Attributes) $1, 0, (int) $2, lexer.Location, lexer.Location); }
1658         | opt_attributes opt_modifiers GET SEMICOLON opt_attributes opt_modifiers SET SEMICOLON 
1659           { $$ = new InterfaceAccessorInfo (true, true, (Attributes) $1, (Attributes) $5, (int) $2, (int) $6, lexer.Location, lexer.Location); }
1660         | opt_attributes opt_modifiers SET SEMICOLON opt_attributes opt_modifiers GET SEMICOLON
1661           { $$ = new InterfaceAccessorInfo (true, true, (Attributes) $5, (Attributes) $1, (int) $6, (int) $2, lexer.Location, lexer.Location); }
1662         ;
1663
1664 interface_event_declaration
1665         : opt_attributes opt_new EVENT type IDENTIFIER SEMICOLON
1666           {
1667                 $$ = new EventField (current_class, (Expression) $4, (int) $2, true,
1668                                      new MemberName ((string) $5), null,
1669                                      (Attributes) $1, lexer.Location);
1670                 if (RootContext.Documentation != null)
1671                         ((EventField) $$).DocComment = Lexer.consume_doc_comment ();
1672           }
1673         | opt_attributes opt_new EVENT type error {
1674                 CheckIdentifierToken (yyToken);
1675                 $$ = null;
1676           }
1677         | opt_attributes opt_new EVENT type IDENTIFIER ASSIGN  {
1678                 Report.Error (68, lexer.Location, "Event declarations on interfaces can not be initialized.");
1679                 $$ = null;
1680           }
1681         | opt_attributes opt_new EVENT type IDENTIFIER OPEN_BRACE event_accessor_declarations CLOSE_BRACE {
1682                 Report.Error (69, lexer.Location, "Event accessors not valid on interfaces");
1683                 $$ = null;
1684           }
1685         ;
1686
1687 interface_indexer_declaration 
1688         : opt_attributes opt_new type THIS 
1689           OPEN_BRACKET formal_parameter_list CLOSE_BRACKET
1690           OPEN_BRACE 
1691           { lexer.PropertyParsing = true; }
1692           interface_accessors 
1693           { lexer.PropertyParsing = false; }
1694           CLOSE_BRACE
1695           {
1696                 InterfaceAccessorInfo info = (InterfaceAccessorInfo) $10;
1697
1698                 $$ = new Indexer (current_class, (Expression) $3,
1699                                   new MemberName (TypeContainer.DefaultIndexerName),
1700                                   (int) $2, true, (Parameters) $6, (Attributes) $1,
1701                                   info.Get, info.Set, lexer.Location);
1702                 if (RootContext.Documentation != null)
1703                         ((Indexer) $$).DocComment = ConsumeStoredComment ();
1704           }
1705         ;
1706
1707 operator_declaration
1708         : opt_attributes opt_modifiers operator_declarator 
1709           {
1710                 iterator_container = SimpleIteratorContainer.GetSimple ();
1711           }
1712           operator_body
1713           {
1714                 OperatorDeclaration decl = (OperatorDeclaration) $3;
1715                 
1716                 Parameter [] param_list = new Parameter [decl.arg2type != null ? 2 : 1];
1717
1718                 param_list[0] = new Parameter (decl.arg1type, decl.arg1name, Parameter.Modifier.NONE, null);
1719                 if (decl.arg2type != null)
1720                         param_list[1] = new Parameter (decl.arg2type, decl.arg2name, Parameter.Modifier.NONE, null);
1721
1722                 Operator op = new Operator (
1723                         current_class, decl.optype, decl.ret_type, (int) $2, 
1724                         new Parameters (param_list, null, decl.location),
1725                         (ToplevelBlock) $5, (Attributes) $1, decl.location);
1726
1727                 if (RootContext.Documentation != null) {
1728                         op.DocComment = tmpComment;
1729                         Lexer.doc_state = XmlCommentState.Allowed;
1730                 }
1731
1732                 if (SimpleIteratorContainer.Simple.Yields)
1733                         op.SetYields ();
1734
1735                 // Note again, checking is done in semantic analysis
1736                 current_container.AddOperator (op);
1737
1738                 current_local_parameters = null;
1739                 iterator_container = null;
1740           }
1741         ;
1742
1743 operator_body 
1744         : block
1745         | SEMICOLON { $$ = null; }
1746         ; 
1747 operator_declarator
1748         : type OPERATOR overloadable_operator 
1749           OPEN_PARENS type IDENTIFIER CLOSE_PARENS
1750         {
1751                 Operator.OpType op = (Operator.OpType) $3;
1752                 CheckUnaryOperator (op);
1753
1754                 if (op == Operator.OpType.Addition)
1755                         op = Operator.OpType.UnaryPlus;
1756
1757                 if (op == Operator.OpType.Subtraction)
1758                         op = Operator.OpType.UnaryNegation;
1759
1760                 Parameter [] pars = new Parameter [1];
1761                 Expression type = (Expression) $5;
1762
1763                 pars [0] = new Parameter (type, (string) $6, Parameter.Modifier.NONE, null);
1764
1765                 current_local_parameters = new Parameters (pars, null, lexer.Location);
1766
1767                 if (RootContext.Documentation != null) {
1768                         tmpComment = Lexer.consume_doc_comment ();
1769                         Lexer.doc_state = XmlCommentState.NotAllowed;
1770                 }
1771
1772                 $$ = new OperatorDeclaration (op, (Expression) $1, type, (string) $6,
1773                                               null, null, lexer.Location);
1774         }
1775         | type OPERATOR overloadable_operator
1776           OPEN_PARENS 
1777                 type IDENTIFIER COMMA
1778                 type IDENTIFIER 
1779           CLOSE_PARENS
1780         {
1781                 CheckBinaryOperator ((Operator.OpType) $3);
1782
1783                 Parameter [] pars = new Parameter [2];
1784
1785                 Expression typeL = (Expression) $5;
1786                 Expression typeR = (Expression) $8;
1787
1788                pars [0] = new Parameter (typeL, (string) $6, Parameter.Modifier.NONE, null);
1789                pars [1] = new Parameter (typeR, (string) $9, Parameter.Modifier.NONE, null);
1790
1791                current_local_parameters = new Parameters (pars, null, lexer.Location);
1792
1793                 if (RootContext.Documentation != null) {
1794                         tmpComment = Lexer.consume_doc_comment ();
1795                         Lexer.doc_state = XmlCommentState.NotAllowed;
1796                 }
1797                
1798                $$ = new OperatorDeclaration ((Operator.OpType) $3, (Expression) $1, 
1799                                              typeL, (string) $6,
1800                                              typeR, (string) $9, lexer.Location);
1801         }
1802         | conversion_operator_declarator
1803         ;
1804
1805 overloadable_operator
1806 // Unary operators:
1807         : BANG   { $$ = Operator.OpType.LogicalNot; }
1808         | TILDE  { $$ = Operator.OpType.OnesComplement; }  
1809         | OP_INC { $$ = Operator.OpType.Increment; }
1810         | OP_DEC { $$ = Operator.OpType.Decrement; }
1811         | TRUE   { $$ = Operator.OpType.True; }
1812         | FALSE  { $$ = Operator.OpType.False; }
1813 // Unary and binary:
1814         | PLUS { $$ = Operator.OpType.Addition; }
1815         | MINUS { $$ = Operator.OpType.Subtraction; }
1816 // Binary:
1817         | STAR { $$ = Operator.OpType.Multiply; }
1818         | DIV {  $$ = Operator.OpType.Division; }
1819         | PERCENT { $$ = Operator.OpType.Modulus; }
1820         | BITWISE_AND { $$ = Operator.OpType.BitwiseAnd; }
1821         | BITWISE_OR { $$ = Operator.OpType.BitwiseOr; }
1822         | CARRET { $$ = Operator.OpType.ExclusiveOr; }
1823         | OP_SHIFT_LEFT { $$ = Operator.OpType.LeftShift; }
1824         | OP_SHIFT_RIGHT { $$ = Operator.OpType.RightShift; }
1825         | OP_EQ { $$ = Operator.OpType.Equality; }
1826         | OP_NE { $$ = Operator.OpType.Inequality; }
1827         | OP_GT { $$ = Operator.OpType.GreaterThan; }
1828         | OP_LT { $$ = Operator.OpType.LessThan; }
1829         | OP_GE { $$ = Operator.OpType.GreaterThanOrEqual; }
1830         | OP_LE { $$ = Operator.OpType.LessThanOrEqual; }
1831         ;
1832
1833 conversion_operator_declarator
1834         : IMPLICIT OPERATOR type OPEN_PARENS type IDENTIFIER CLOSE_PARENS
1835           {
1836                 Parameter [] pars = new Parameter [1];
1837
1838                 pars [0] = new Parameter ((Expression) $5, (string) $6, Parameter.Modifier.NONE, null);
1839
1840                 current_local_parameters = new Parameters (pars, null, lexer.Location);  
1841                   
1842                 if (RootContext.Documentation != null) {
1843                         tmpComment = Lexer.consume_doc_comment ();
1844                         Lexer.doc_state = XmlCommentState.NotAllowed;
1845                 }
1846
1847                 $$ = new OperatorDeclaration (Operator.OpType.Implicit, (Expression) $3, (Expression) $5, (string) $6,
1848                                               null, null, lexer.Location);
1849           }
1850         | EXPLICIT OPERATOR type OPEN_PARENS type IDENTIFIER CLOSE_PARENS
1851           {
1852                 Parameter [] pars = new Parameter [1];
1853
1854                 pars [0] = new Parameter ((Expression) $5, (string) $6, Parameter.Modifier.NONE, null);
1855
1856                 current_local_parameters = new Parameters (pars, null, lexer.Location);  
1857                   
1858                 if (RootContext.Documentation != null) {
1859                         tmpComment = Lexer.consume_doc_comment ();
1860                         Lexer.doc_state = XmlCommentState.NotAllowed;
1861                 }
1862
1863                 $$ = new OperatorDeclaration (Operator.OpType.Explicit, (Expression) $3, (Expression) $5, (string) $6,
1864                                               null, null, lexer.Location);
1865           }
1866         | IMPLICIT error 
1867           {
1868                 syntax_error (lexer.Location, "'operator' expected");
1869           }
1870         | EXPLICIT error 
1871           {
1872                 syntax_error (lexer.Location, "'operator' expected");
1873           }
1874         ;
1875
1876 constructor_declaration
1877         : opt_attributes
1878           opt_modifiers
1879           constructor_declarator
1880           constructor_body
1881           { 
1882                 Constructor c = (Constructor) $3;
1883                 c.Block = (ToplevelBlock) $4;
1884                 c.OptAttributes = (Attributes) $1;
1885                 c.ModFlags = (int) $2;
1886         
1887                 if (RootContext.Documentation != null)
1888                         c.DocComment = ConsumeStoredComment ();
1889
1890                 if (c.Name == current_container.Basename){
1891                         if ((c.ModFlags & Modifiers.STATIC) != 0){
1892                                 if ((c.ModFlags & Modifiers.Accessibility) != 0){
1893                                         Report.Error (
1894                                                 515, c.Location, String.Format (
1895                                                 "`{0}.{1}': static constructor can not have access modifiers",
1896                                                 c.Name, current_container.Name));
1897                                 }
1898         
1899                                 c.ModFlags = Modifiers.Check (Constructor.AllowedModifiers, (int) $2, Modifiers.PRIVATE, c.Location);   
1900         
1901                                 if (c.Initializer != null){
1902                                         Report.Error (
1903                                                 514, c.Location, 
1904                                                 "Static constructors can not have an explicit this or base " +
1905                                                 "constructor invocations");
1906                                 }
1907         
1908                                 if (!c.Parameters.Empty){
1909                                         Report.Error (
1910                                                 132, c.Location, "Static constructors should not have parameters");
1911                                 }
1912                         } else {
1913                                 c.ModFlags = Modifiers.Check (Constructor.AllowedModifiers, (int) $2, Modifiers.PRIVATE, c.Location);
1914                         }
1915                 } else {
1916                         // We let another layer check the validity of the constructor.
1917                         //Console.WriteLine ("{0} and {1}", c.Name, current_container.Basename);
1918                 }
1919
1920                 current_container.AddConstructor (c);
1921
1922                 current_local_parameters = null;
1923                 if (RootContext.Documentation != null)
1924                         Lexer.doc_state = XmlCommentState.Allowed;
1925           }
1926         ;
1927
1928 constructor_declarator
1929         : IDENTIFIER
1930           {
1931                 if (RootContext.Documentation != null) {
1932                         tmpComment = Lexer.consume_doc_comment ();
1933                         Lexer.doc_state = XmlCommentState.Allowed;
1934                 }
1935           }
1936           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS 
1937           {
1938                 oob_stack.Push (lexer.Location);
1939
1940                 current_local_parameters = (Parameters) $4;
1941           }
1942           opt_constructor_initializer
1943           {
1944                 Location l = (Location) oob_stack.Pop ();
1945                 $$ = new Constructor (current_class, (string) $1, 0, (Parameters) $4,
1946                                       (ConstructorInitializer) $7, l);
1947           }
1948         ;
1949
1950 constructor_body
1951         : block
1952         | SEMICOLON             { $$ = null; }
1953         ;
1954
1955 opt_constructor_initializer
1956         : /* empty */                   { $$ = null; }
1957         | constructor_initializer
1958         ;
1959
1960 constructor_initializer
1961         : COLON BASE OPEN_PARENS opt_argument_list CLOSE_PARENS
1962           {
1963                 $$ = new ConstructorBaseInitializer ((ArrayList) $4, current_local_parameters, lexer.Location);
1964           }
1965         | COLON THIS OPEN_PARENS opt_argument_list CLOSE_PARENS
1966           {
1967                 $$ = new ConstructorThisInitializer ((ArrayList) $4, current_local_parameters, lexer.Location);
1968           }
1969         | COLON error {
1970                 Report.Error (1018, lexer.Location, "Keyword this or base expected");
1971                 $$ = null;
1972           }
1973         ;
1974
1975 opt_finalizer
1976         : /* EMPTY */           { $$ = 0; }
1977         | UNSAFE                { $$ = Modifiers.UNSAFE; }
1978         | EXTERN                { $$ = Modifiers.EXTERN; }
1979         ;
1980         
1981 destructor_declaration
1982         : opt_attributes opt_finalizer TILDE 
1983           {
1984                 if (RootContext.Documentation != null) {
1985                         tmpComment = Lexer.consume_doc_comment ();
1986                         Lexer.doc_state = XmlCommentState.NotAllowed;
1987                 }
1988           }
1989           IDENTIFIER OPEN_PARENS CLOSE_PARENS block
1990           {
1991                 if ((string) $5 != current_container.Basename){
1992                         Report.Error (574, lexer.Location, "Name of destructor must match name of class");
1993                 } else if (current_container.Kind != Kind.Class){
1994                         Report.Error (575, lexer.Location, "Destructors are only allowed in class types");
1995                 } else {
1996                         Location l = lexer.Location;
1997
1998                         int m = (int) $2;
1999                         if (!RootContext.StdLib && current_container.Name == "System.Object")
2000                                 m |= Modifiers.PROTECTED | Modifiers.VIRTUAL;
2001                         else
2002                                 m |= Modifiers.PROTECTED | Modifiers.OVERRIDE;
2003                         
2004                         if ((m & Modifiers.UNSAFE) != 0){
2005                                 if (!RootContext.Unsafe){
2006                                         Report.Error (227, l,
2007                                               "Unsafe code requires the -unsafe command " +
2008                                               "line option to be specified");
2009                                 }
2010                         }
2011                         
2012                         Method d = new Destructor (
2013                                 current_class, TypeManager.system_void_expr, m, "Finalize", 
2014                                 new Parameters (null, null, l), (Attributes) $1, l);
2015                         if (RootContext.Documentation != null)
2016                                 d.DocComment = ConsumeStoredComment ();
2017                   
2018                         d.Block = (ToplevelBlock) $8;
2019                         current_container.AddMethod (d);
2020                 }
2021           }
2022         ;
2023
2024 event_declaration
2025         : opt_attributes
2026           opt_modifiers
2027           EVENT type variable_declarators SEMICOLON
2028           {
2029                 foreach (VariableDeclaration var in (ArrayList) $5) {
2030
2031                         MemberName name = new MemberName (var.identifier);
2032
2033                         Event e = new EventField (
2034                                 current_class, (Expression) $4, (int) $2, false, name,
2035                                 var.expression_or_array_initializer, (Attributes) $1,
2036                                 lexer.Location);
2037
2038                         current_container.AddEvent (e);
2039
2040                         if (RootContext.Documentation != null) {
2041                                 e.DocComment = Lexer.consume_doc_comment ();
2042                                 Lexer.doc_state = XmlCommentState.Allowed;
2043                         }
2044                 }
2045           }
2046         | opt_attributes
2047           opt_modifiers
2048           EVENT type namespace_or_type_name
2049           OPEN_BRACE
2050           {
2051                 implicit_value_parameter_type = (Expression) $4;  
2052                 lexer.EventParsing = true;
2053                 oob_stack.Push (lexer.Location);
2054           }
2055           event_accessor_declarations
2056           {
2057                 lexer.EventParsing = false;  
2058           }
2059           CLOSE_BRACE
2060           {
2061                 Location loc = (Location) oob_stack.Pop ();
2062
2063                 if ($8 == null){
2064                         Report.Error (65, lexer.Location, "Event must have both add and remove accesors");
2065                         $$ = null;
2066                 } else {
2067                         Pair pair = (Pair) $8;
2068                         
2069                         MemberName name = (MemberName) $5;
2070
2071                         if (name.TypeArguments != null)
2072                                 syntax_error (lexer.Location, "an event can't have type arguments");
2073
2074                         Event e = new EventProperty (
2075                                 current_class, (Expression) $4, (int) $2, false, name, null,
2076                                 (Attributes) $1, (Accessor) pair.First, (Accessor) pair.Second,
2077                                 loc);
2078                         if (RootContext.Documentation != null) {
2079                                 e.DocComment = Lexer.consume_doc_comment ();
2080                                 Lexer.doc_state = XmlCommentState.Allowed;
2081                         }
2082
2083                         current_container.AddEvent (e);
2084                         implicit_value_parameter_type = null;
2085                 }
2086           }
2087         | opt_attributes opt_modifiers EVENT type namespace_or_type_name OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS block {
2088                 MemberName mn = (MemberName) $5;
2089
2090                 if (mn.Left != null)
2091                         Report.Error (71, lexer.Location, "Explicit implementation of events requires property syntax");
2092                 else 
2093                         Report.Error (71, lexer.Location, "Event declaration should use property syntax");
2094
2095                 if (RootContext.Documentation != null)
2096                         Lexer.doc_state = XmlCommentState.Allowed;
2097           }
2098         ;
2099
2100 event_accessor_declarations
2101         : add_accessor_declaration remove_accessor_declaration
2102         {
2103                 $$ = new Pair ($1, $2);
2104         }
2105         | remove_accessor_declaration add_accessor_declaration
2106         {
2107                 $$ = new Pair ($2, $1);
2108         }       
2109         | add_accessor_declaration  { $$ = null; } 
2110         | remove_accessor_declaration { $$ = null; } 
2111         | error
2112         { 
2113                 Report.Error (1055, lexer.Location, "An add or remove accessor expected");
2114                 $$ = null;
2115         }
2116         | { $$ = null; }
2117         ;
2118
2119 add_accessor_declaration
2120         : opt_attributes ADD
2121           {
2122                 Parameter [] args = new Parameter [1];
2123                 Parameter implicit_value_parameter = new Parameter (
2124                         implicit_value_parameter_type, "value", 
2125                         Parameter.Modifier.NONE, null);
2126
2127                 args [0] = implicit_value_parameter;
2128                 
2129                 current_local_parameters = new Parameters (args, null, lexer.Location);  
2130                 lexer.EventParsing = false;
2131           }
2132           block
2133           {
2134                 $$ = new Accessor ((ToplevelBlock) $4, 0, (Attributes) $1, lexer.Location);
2135                 lexer.EventParsing = true;
2136           }
2137         | opt_attributes ADD error {
2138                 Report.Error (73, lexer.Location, "Add or remove accessor must have a body");
2139                 $$ = null;
2140           }
2141         ;
2142
2143 remove_accessor_declaration
2144         : opt_attributes REMOVE
2145           {
2146                 Parameter [] args = new Parameter [1];
2147                 Parameter implicit_value_parameter = new Parameter (
2148                         implicit_value_parameter_type, "value", 
2149                         Parameter.Modifier.NONE, null);
2150
2151                 args [0] = implicit_value_parameter;
2152                 
2153                 current_local_parameters = new Parameters (args, null, lexer.Location);  
2154                 lexer.EventParsing = false;
2155           }
2156           block
2157           {
2158                 $$ = new Accessor ((ToplevelBlock) $4, 0, (Attributes) $1, lexer.Location);
2159                 lexer.EventParsing = true;
2160           }
2161         | opt_attributes REMOVE error {
2162                 Report.Error (73, lexer.Location, "Add or remove accessor must have a body");
2163                 $$ = null;
2164           }
2165         ;
2166
2167 indexer_declaration
2168         : opt_attributes opt_modifiers indexer_declarator 
2169           OPEN_BRACE 
2170           {
2171                 IndexerDeclaration decl = (IndexerDeclaration) $3;
2172
2173                 implicit_value_parameter_type = decl.type;
2174                 
2175                 lexer.PropertyParsing = true;
2176                 parsing_indexer  = true;
2177                 
2178                 indexer_parameters = decl.param_list;
2179                 oob_stack.Push (lexer.Location);
2180           }
2181           accessor_declarations 
2182           {
2183                   lexer.PropertyParsing = false;
2184                   parsing_indexer  = false;
2185           }
2186           CLOSE_BRACE
2187           { 
2188                 // The signature is computed from the signature of the indexer.  Look
2189                 // at section 3.6 on the spec
2190                 Location loc = (Location) oob_stack.Pop ();
2191                 Indexer indexer;
2192                 IndexerDeclaration decl = (IndexerDeclaration) $3;
2193                 Pair pair = (Pair) $6;
2194                 Accessor get_block = (Accessor) pair.First;
2195                 Accessor set_block = (Accessor) pair.Second;
2196
2197                 MemberName name;
2198                 if (decl.interface_type != null)
2199                         name = new MemberName (decl.interface_type,
2200                                                TypeContainer.DefaultIndexerName, null);
2201                 else
2202                         name = new MemberName (TypeContainer.DefaultIndexerName);
2203
2204                 indexer = new Indexer (current_class, decl.type, name,
2205                                        (int) $2, false, decl.param_list, (Attributes) $1,
2206                                        get_block, set_block, loc);
2207                 if (RootContext.Documentation != null)
2208                         indexer.DocComment = ConsumeStoredComment ();
2209
2210                 current_container.AddIndexer (indexer);
2211                 
2212                 current_local_parameters = null;
2213                 implicit_value_parameter_type = null;
2214                 indexer_parameters = null;
2215           }
2216         ;
2217
2218 indexer_declarator
2219         : type THIS OPEN_BRACKET opt_formal_parameter_list CLOSE_BRACKET
2220           {
2221                 Parameters pars = (Parameters) $4;
2222                 if (pars.HasArglist) {
2223                         // "__arglist is not valid in this context"
2224                         Report.Error (1669, lexer.Location, "__arglist is not valid in this context");
2225                 } else if (pars.FixedParameters == null && pars.ArrayParameter == null){
2226                         Report.Error (1551, lexer.Location, "Indexers must have at least one parameter");
2227                 }
2228                 if (RootContext.Documentation != null) {
2229                         tmpComment = Lexer.consume_doc_comment ();
2230                         Lexer.doc_state = XmlCommentState.Allowed;
2231                 }
2232
2233                 $$ = new IndexerDeclaration ((Expression) $1, null, pars);
2234           }
2235         | type namespace_or_type_name DOT THIS OPEN_BRACKET opt_formal_parameter_list CLOSE_BRACKET
2236           {
2237                 Parameters pars = (Parameters) $6;
2238
2239                 if (pars.HasArglist) {
2240                         // "__arglist is not valid in this context"
2241                         Report.Error (1669, lexer.Location, "__arglist is not valid in this context");
2242                 } else if (pars.FixedParameters == null && pars.ArrayParameter == null){
2243                         Report.Error (1551, lexer.Location, "Indexers must have at least one parameter");
2244                 }
2245
2246                 MemberName name = (MemberName) $2;
2247                 if (name.TypeArguments != null)
2248                         syntax_error (lexer.Location, "an indexer can't have type arguments");
2249
2250                 $$ = new IndexerDeclaration ((Expression) $1, name, pars);
2251
2252                 if (RootContext.Documentation != null) {
2253                         tmpComment = Lexer.consume_doc_comment ();
2254                         Lexer.doc_state = XmlCommentState.Allowed;
2255                 }
2256           }
2257         ;
2258
2259 enum_declaration
2260         : opt_attributes
2261           opt_modifiers
2262           ENUM IDENTIFIER 
2263           opt_enum_base {
2264                 if (RootContext.Documentation != null)
2265                         enumTypeComment = Lexer.consume_doc_comment ();
2266           }
2267           enum_body
2268           opt_semicolon
2269           { 
2270                 Location enum_location = lexer.Location;
2271
2272                 MemberName full_name = MakeName (new MemberName ((string) $4));
2273                 Enum e = new Enum (current_namespace, current_container, (Expression) $5, (int) $2,
2274                                    full_name, (Attributes) $1, enum_location);
2275                 
2276                 if (RootContext.Documentation != null)
2277                         e.DocComment = enumTypeComment;
2278
2279                 foreach (VariableDeclaration ev in (ArrayList) $7) {
2280                         e.AddEnumMember (ev.identifier, 
2281                                          (Expression) ev.expression_or_array_initializer,
2282                                          ev.Location, ev.OptAttributes,
2283                                          ev.DocComment);
2284                 }
2285
2286                 string name = full_name.GetName ();
2287                 current_container.AddEnum (e);
2288                 RootContext.Tree.RecordDecl (name, e);
2289
2290           }
2291         ;
2292
2293 opt_enum_base
2294         : /* empty */           { $$ = TypeManager.system_int32_expr; }
2295         | COLON type            { $$ = $2;   }
2296         ;
2297
2298 enum_body
2299         : OPEN_BRACE
2300           {
2301                 if (RootContext.Documentation != null)
2302                         Lexer.doc_state = XmlCommentState.Allowed;
2303           }
2304           opt_enum_member_declarations
2305           {
2306                 // here will be evaluated after CLOSE_BLACE is consumed.
2307                 if (RootContext.Documentation != null)
2308                         Lexer.doc_state = XmlCommentState.Allowed;
2309           }
2310           CLOSE_BRACE
2311           {
2312                 $$ = $3;
2313           }
2314         ;
2315
2316 opt_enum_member_declarations
2317         : /* empty */                   { $$ = new ArrayList (4); }
2318         | enum_member_declarations opt_comma { $$ = $1; }
2319         ;
2320
2321 enum_member_declarations
2322         : enum_member_declaration 
2323           {
2324                 ArrayList l = new ArrayList (4);
2325
2326                 l.Add ($1);
2327                 $$ = l;
2328           }
2329         | enum_member_declarations COMMA enum_member_declaration
2330           {
2331                 ArrayList l = (ArrayList) $1;
2332
2333                 l.Add ($3);
2334
2335                 $$ = l;
2336           }
2337         ;
2338
2339 enum_member_declaration
2340         : opt_attributes IDENTIFIER 
2341           {
2342                 VariableDeclaration vd = new VariableDeclaration ((string) $2, null, lexer.Location, (Attributes) $1);
2343
2344                 if (RootContext.Documentation != null) {
2345                         vd.DocComment = Lexer.consume_doc_comment ();
2346                         Lexer.doc_state = XmlCommentState.Allowed;
2347                 }
2348
2349                 $$ = vd;
2350           }
2351         | opt_attributes IDENTIFIER
2352           {
2353                 $$ = lexer.Location;
2354                 if (RootContext.Documentation != null) {
2355                         tmpComment = Lexer.consume_doc_comment ();
2356                         Lexer.doc_state = XmlCommentState.NotAllowed;
2357                 }
2358           }
2359           ASSIGN expression
2360           { 
2361                 VariableDeclaration vd = new VariableDeclaration ((string) $2, $5, lexer.Location, (Attributes) $1);
2362
2363                 if (RootContext.Documentation != null)
2364                         vd.DocComment = ConsumeStoredComment ();
2365
2366                 $$ = vd;
2367           }
2368         ;
2369
2370 delegate_declaration
2371         : opt_attributes
2372           opt_modifiers
2373           DELEGATE type member_name
2374           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS
2375           {
2376                 Location l = lexer.Location;
2377                 MemberName name = MakeName ((MemberName) $5);
2378                 Delegate del = new Delegate (current_namespace, current_container, (Expression) $4,
2379                                              (int) $2, name, (Parameters) $7, (Attributes) $1, l);
2380
2381                 if (RootContext.Documentation != null) {
2382                         del.DocComment = Lexer.consume_doc_comment ();
2383                         Lexer.doc_state = XmlCommentState.Allowed;
2384                 }
2385
2386                 current_container.AddDelegate (del);
2387                 RootContext.Tree.RecordDecl (name.GetName (true), del);
2388
2389                 current_delegate = del;
2390
2391                 lexer.ConstraintsParsing = true;
2392           }
2393           opt_type_parameter_constraints_clauses
2394           {
2395                 lexer.ConstraintsParsing = false;
2396           }
2397           SEMICOLON
2398           {
2399                 current_delegate.SetParameterInfo ((ArrayList) $9);
2400
2401                 current_delegate = null;
2402           }
2403         | opt_attributes
2404           opt_modifiers
2405           DELEGATE VOID member_name
2406           OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS 
2407           {
2408                 Location l = lexer.Location;
2409                 MemberName name = MakeName ((MemberName) $5);
2410                 Delegate del = new Delegate (
2411                         current_namespace, current_container,
2412                         TypeManager.system_void_expr, (int) $2, name,
2413                         (Parameters) $7, (Attributes) $1, l);
2414
2415                 if (RootContext.Documentation != null) {
2416                         del.DocComment = Lexer.consume_doc_comment ();
2417                         Lexer.doc_state = XmlCommentState.Allowed;
2418                 }
2419
2420                 current_container.AddDelegate (del);
2421                 RootContext.Tree.RecordDecl (name.GetName (true), del);
2422
2423                 current_delegate = del;
2424
2425                 lexer.ConstraintsParsing = true;
2426           }
2427           opt_type_parameter_constraints_clauses
2428           {
2429                 lexer.ConstraintsParsing = false;
2430           }
2431           SEMICOLON
2432           {
2433                 current_delegate.SetParameterInfo ((ArrayList) $9);
2434
2435                 current_delegate = null;
2436           }
2437         ;
2438
2439 namespace_or_type_name
2440         : member_name
2441         | namespace_or_type_name DOT IDENTIFIER opt_type_argument_list {
2442                 $$ = new MemberName ((MemberName) $1, (string) $3, (TypeArguments) $4);
2443           }
2444         ;
2445
2446 member_name
2447         : IDENTIFIER opt_type_argument_list {
2448                 $$ = new MemberName ((string) $1, (TypeArguments) $2);
2449           }
2450         ;
2451
2452 opt_type_argument_list
2453         : /* empty */                { $$ = null; } 
2454         | OP_GENERICS_LT type_arguments OP_GENERICS_GT
2455           {
2456                 $$ = $2;
2457           }
2458         | GENERIC_DIMENSION
2459           {
2460                 $$ = new TypeArguments ((int) $1, lexer.Location);
2461           }
2462         ;
2463
2464 type_arguments
2465         : type {
2466                 TypeArguments type_args = new TypeArguments (lexer.Location);
2467                 type_args.Add ((Expression) $1);
2468                 $$ = type_args;
2469           }
2470         | type_arguments COMMA type {
2471                 TypeArguments type_args = (TypeArguments) $1;
2472                 type_args.Add ((Expression) $3);
2473                 $$ = type_args;
2474           }
2475         ;
2476         
2477 /* 
2478  * Before you think of adding a return_type, notice that we have been
2479  * using two rules in the places where it matters (one rule using type
2480  * and another identical one that uses VOID as the return type).  This
2481  * gets rid of a shift/reduce couple
2482  */
2483 type
2484         : namespace_or_type_name
2485           {
2486                 $$ = ((MemberName) $1).GetTypeExpression (lexer.Location);
2487           }
2488         | builtin_types
2489         | array_type
2490         | pointer_type    
2491         ;
2492
2493
2494 pointer_type
2495         : type STAR
2496           {
2497                 //
2498                 // Note that here only unmanaged types are allowed but we
2499                 // can't perform checks during this phase - we do it during
2500                 // semantic analysis.
2501                 //
2502                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
2503           }
2504         | VOID STAR
2505           {
2506                 $$ = new ComposedCast (TypeManager.system_void_expr, "*", lexer.Location);
2507           }
2508         ;
2509
2510 non_expression_type
2511         : builtin_types 
2512         | non_expression_type rank_specifier
2513           {
2514                 $$ = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
2515           }
2516         | non_expression_type STAR
2517           {
2518                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
2519           }
2520         | expression rank_specifiers 
2521           {
2522                 $$ = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
2523           }
2524         | expression STAR 
2525           {
2526                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
2527           }
2528         
2529         //
2530         // We need this because the parser will happily go and reduce IDENTIFIER STAR
2531         // through this different path
2532         //
2533         | multiplicative_expression STAR 
2534           {
2535                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
2536           }
2537         ;
2538
2539 type_list
2540         : type
2541           {
2542                 ArrayList types = new ArrayList (4);
2543
2544                 types.Add ($1);
2545                 $$ = types;
2546           }
2547         | type_list COMMA type
2548           {
2549                 ArrayList types = (ArrayList) $1;
2550
2551                 types.Add ($3);
2552                 $$ = types;
2553           }
2554         ;
2555
2556 /*
2557  * replaces all the productions for isolating the various
2558  * simple types, but we need this to reuse it easily in local_variable_type
2559  */
2560 builtin_types
2561         : OBJECT        { $$ = TypeManager.system_object_expr; }
2562         | STRING        { $$ = TypeManager.system_string_expr; }
2563         | BOOL          { $$ = TypeManager.system_boolean_expr; }
2564         | DECIMAL       { $$ = TypeManager.system_decimal_expr; }
2565         | FLOAT         { $$ = TypeManager.system_single_expr; }
2566         | DOUBLE        { $$ = TypeManager.system_double_expr; }
2567         | integral_type
2568         ;
2569
2570 integral_type
2571         : SBYTE         { $$ = TypeManager.system_sbyte_expr; }
2572         | BYTE          { $$ = TypeManager.system_byte_expr; }
2573         | SHORT         { $$ = TypeManager.system_int16_expr; }
2574         | USHORT        { $$ = TypeManager.system_uint16_expr; }
2575         | INT           { $$ = TypeManager.system_int32_expr; }
2576         | UINT          { $$ = TypeManager.system_uint32_expr; }
2577         | LONG          { $$ = TypeManager.system_int64_expr; }
2578         | ULONG         { $$ = TypeManager.system_uint64_expr; }
2579         | CHAR          { $$ = TypeManager.system_char_expr; }
2580         | VOID          { $$ = TypeManager.system_void_expr; }
2581         ;
2582
2583 array_type
2584         : type rank_specifiers
2585           {
2586                 $$ = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
2587           }
2588         ;
2589
2590 //
2591 // Expressions, section 7.5
2592 //
2593 primary_expression
2594         : literal
2595           {
2596                 // 7.5.1: Literals
2597           }
2598  
2599         | member_name
2600           {
2601                 $$ = ((MemberName) $1).GetTypeExpression (lexer.Location);
2602           }
2603         | parenthesized_expression
2604         | default_value_expression
2605         | member_access
2606         | invocation_expression
2607         | element_access
2608         | this_access
2609         | base_access
2610         | post_increment_expression
2611         | post_decrement_expression
2612         | new_expression
2613         | typeof_expression
2614         | sizeof_expression
2615         | checked_expression
2616         | unchecked_expression
2617         | pointer_member_access
2618         | anonymous_method_expression
2619         ;
2620
2621 literal
2622         : boolean_literal
2623         | integer_literal
2624         | real_literal
2625         | LITERAL_CHARACTER     { $$ = new CharLiteral ((char) lexer.Value); }
2626         | LITERAL_STRING        { $$ = new StringLiteral ((string) lexer.Value); }
2627         | NULL                  { $$ = NullLiteral.Null; }
2628         ;
2629
2630 real_literal
2631         : LITERAL_FLOAT         { $$ = new FloatLiteral ((float) lexer.Value); }
2632         | LITERAL_DOUBLE        { $$ = new DoubleLiteral ((double) lexer.Value); }
2633         | LITERAL_DECIMAL       { $$ = new DecimalLiteral ((decimal) lexer.Value); }
2634         ;
2635
2636 integer_literal
2637         : LITERAL_INTEGER       { 
2638                 object v = lexer.Value;
2639
2640                 if (v is int){
2641                         int i = (int) v;
2642
2643                         if (i == 0)
2644                                 $$ = IntLiteral.Zero;
2645                         else if (i == 1)
2646                                 $$ = IntLiteral.One;
2647                         else
2648                                 $$ = new IntLiteral (i);
2649                 } else if (v is uint)
2650                         $$ = new UIntLiteral ((UInt32) v);
2651                 else if (v is long)
2652                         $$ = new LongLiteral ((Int64) v);
2653                 else if (v is ulong)
2654                         $$ = new ULongLiteral ((UInt64) v);
2655                 else
2656                         Console.WriteLine ("OOPS.  Unexpected result from scanner");
2657           }
2658         ;
2659
2660 boolean_literal
2661         : TRUE                  { $$ = new BoolLiteral (true); }
2662         | FALSE                 { $$ = new BoolLiteral (false); }
2663         ;
2664
2665 parenthesized_expression_0
2666         : OPEN_PARENS expression CLOSE_PARENS
2667           {
2668                 $$ = $2;
2669                 lexer.Deambiguate_CloseParens ();
2670                 // After this, the next token returned is one of
2671                 // CLOSE_PARENS_CAST, CLOSE_PARENS_NO_CAST, CLOSE_PARENS_OPEN_PARENS
2672                 // or CLOSE_PARENS_MINUS.
2673           }
2674         ;
2675
2676 parenthesized_expression
2677         : parenthesized_expression_0 CLOSE_PARENS_NO_CAST
2678           {
2679                 $$ = $1;
2680           }
2681         | parenthesized_expression_0 CLOSE_PARENS_MINUS
2682           {
2683                 // If a parenthesized expression is followed by a minus, we need to wrap
2684                 // the expression inside a ParenthesizedExpression for the CS0075 check
2685                 // in Binary.DoResolve().
2686                 $$ = new ParenthesizedExpression ((Expression) $1, lexer.Location);
2687           }
2688         ;;
2689
2690 member_access
2691         : primary_expression DOT IDENTIFIER opt_type_argument_list
2692           {
2693                 $$ = new MemberAccess ((Expression) $1, (string) $3,
2694                                        (TypeArguments) $4, lexer.Location);
2695           }
2696         | predefined_type DOT IDENTIFIER opt_type_argument_list
2697           {
2698                 $$ = new MemberAccess ((Expression) $1, (string) $3,
2699                                        (TypeArguments) $4, lexer.Location);
2700           }
2701         ;
2702
2703 predefined_type
2704         : builtin_types
2705         ;
2706
2707 invocation_expression
2708         : primary_expression OPEN_PARENS opt_argument_list CLOSE_PARENS
2709           {
2710                 if ($1 == null) {
2711                         Location l = lexer.Location;
2712                         Report.Error (1, l, "Parse error");
2713                 }
2714                 $$ = new Invocation ((Expression) $1, (ArrayList) $3, lexer.Location);
2715           }
2716         | parenthesized_expression_0 CLOSE_PARENS_OPEN_PARENS OPEN_PARENS CLOSE_PARENS
2717           {
2718                 $$ = new Invocation ((Expression) $1, new ArrayList (), lexer.Location);
2719           }
2720         | parenthesized_expression_0 CLOSE_PARENS_OPEN_PARENS primary_expression
2721           {
2722                 $$ = new InvocationOrCast ((Expression) $1, (Expression) $3, lexer.Location);
2723           }
2724         ;
2725
2726 opt_argument_list
2727         : /* empty */           { $$ = null; }
2728         | argument_list
2729         ;
2730
2731 argument_list
2732         : argument              
2733           { 
2734                 ArrayList list = new ArrayList (4);
2735                 list.Add ($1);
2736                 $$ = list;
2737           }
2738         | argument_list COMMA argument
2739           {
2740                 ArrayList list = (ArrayList) $1;
2741                 list.Add ($3);
2742                 $$ = list;
2743           }
2744         | argument_list error {
2745                 CheckToken (1026, yyToken, ", or ) expected");
2746           }
2747         ;
2748
2749 argument
2750         : expression
2751           {
2752                 $$ = new Argument ((Expression) $1, Argument.AType.Expression);
2753           }
2754         | REF variable_reference 
2755           { 
2756                 $$ = new Argument ((Expression) $2, Argument.AType.Ref);
2757           }
2758         | OUT variable_reference 
2759           { 
2760                 $$ = new Argument ((Expression) $2, Argument.AType.Out);
2761           }
2762         | ARGLIST OPEN_PARENS argument_list CLOSE_PARENS
2763           {
2764                 ArrayList list = (ArrayList) $3;
2765                 Argument[] args = new Argument [list.Count];
2766                 list.CopyTo (args, 0);
2767
2768                 Expression expr = new Arglist (args, lexer.Location);
2769                 $$ = new Argument (expr, Argument.AType.Expression);
2770           }
2771         | ARGLIST
2772           {
2773                 $$ = new Argument (new ArglistAccess (lexer.Location), Argument.AType.ArgList);
2774           }
2775         ;
2776
2777 variable_reference
2778         : expression { note ("section 5.4"); $$ = $1; }
2779         ;
2780
2781 element_access
2782         : primary_expression OPEN_BRACKET expression_list CLOSE_BRACKET 
2783           {
2784                 $$ = new ElementAccess ((Expression) $1, (ArrayList) $3, lexer.Location);
2785           }
2786         | primary_expression rank_specifiers
2787           {
2788                 // So the super-trick is that primary_expression
2789                 // can only be either a SimpleName or a MemberAccess. 
2790                 // The MemberAccess case arises when you have a fully qualified type-name like :
2791                 // Foo.Bar.Blah i;
2792                 // SimpleName is when you have
2793                 // Blah i;
2794                   
2795                 Expression expr = (Expression) $1;  
2796                 if (expr is ComposedCast){
2797                         $$ = new ComposedCast (expr, (string) $2, lexer.Location);
2798                 } else if (!(expr is SimpleName || expr is MemberAccess || expr is ConstructedType)){
2799                         Error_ExpectingTypeName (lexer.Location, expr);
2800                         $$ = TypeManager.system_object_expr;
2801                 } else {
2802                         //
2803                         // So we extract the string corresponding to the SimpleName
2804                         // or MemberAccess
2805                         // 
2806                         $$ = new ComposedCast (expr, (string) $2, lexer.Location);
2807                 }
2808           }
2809         ;
2810
2811 expression_list
2812         : expression
2813           {
2814                 ArrayList list = new ArrayList (4);
2815                 list.Add ($1);
2816                 $$ = list;
2817           }
2818         | expression_list COMMA expression
2819           {
2820                 ArrayList list = (ArrayList) $1;
2821                 list.Add ($3);
2822                 $$ = list;
2823           }
2824         ;
2825
2826 this_access
2827         : THIS
2828           {
2829                 $$ = new This (current_block, lexer.Location);
2830           }
2831         ;
2832
2833 base_access
2834         : BASE DOT IDENTIFIER
2835           {
2836                 $$ = new BaseAccess ((string) $3, lexer.Location);
2837           }
2838         | BASE OPEN_BRACKET expression_list CLOSE_BRACKET
2839           {
2840                 $$ = new BaseIndexerAccess ((ArrayList) $3, lexer.Location);
2841           }
2842         | BASE error {
2843                 Report.Error (175, lexer.Location, "Use of keyword `base' is not valid in this context");
2844                 $$ = null;
2845           }
2846         ;
2847
2848 post_increment_expression
2849         : primary_expression OP_INC
2850           {
2851                 $$ = new UnaryMutator (UnaryMutator.Mode.PostIncrement,
2852                                        (Expression) $1, lexer.Location);
2853           }
2854         ;
2855
2856 post_decrement_expression
2857         : primary_expression OP_DEC
2858           {
2859                 $$ = new UnaryMutator (UnaryMutator.Mode.PostDecrement,
2860                                        (Expression) $1, lexer.Location);
2861           }
2862         ;
2863
2864 new_expression
2865         : object_or_delegate_creation_expression
2866         | array_creation_expression
2867         ;
2868
2869 object_or_delegate_creation_expression
2870         : NEW type OPEN_PARENS opt_argument_list CLOSE_PARENS
2871           {
2872                 $$ = new New ((Expression) $2, (ArrayList) $4, lexer.Location);
2873           }
2874         ;
2875
2876 array_creation_expression
2877         : NEW type OPEN_BRACKET expression_list CLOSE_BRACKET 
2878           opt_rank_specifier
2879           opt_array_initializer
2880           {
2881                 $$ = new ArrayCreation ((Expression) $2, (ArrayList) $4, (string) $6, (ArrayList) $7, lexer.Location);
2882           }
2883         | NEW type rank_specifiers array_initializer
2884           {
2885                 $$ = new ArrayCreation ((Expression) $2, (string) $3, (ArrayList) $4, lexer.Location);
2886           }
2887         | NEW error
2888           {
2889                 Report.Error (1031, lexer.Location, "Type expected");
2890                 $$ = null;
2891           }          
2892         | NEW type error 
2893           {
2894                 Report.Error (1526, lexer.Location, "new expression requires () or [] after type");
2895           }
2896         ;
2897
2898 opt_rank_specifier
2899         : /* empty */
2900           {
2901                   $$ = "";
2902           }
2903         | rank_specifiers
2904           {
2905                         $$ = $1;
2906           }
2907         ;
2908
2909 rank_specifiers
2910         : rank_specifier opt_rank_specifier
2911           {
2912                   $$ = (string) $2 + (string) $1;
2913           }
2914         ;
2915
2916 rank_specifier
2917         : OPEN_BRACKET opt_dim_separators CLOSE_BRACKET
2918           {
2919                 $$ = "[" + (string) $2 + "]";
2920           }
2921         ;
2922
2923 opt_dim_separators
2924         : /* empty */
2925           {
2926                 $$ = "";
2927           }
2928         | dim_separators
2929           {
2930                   $$ = $1;
2931           }               
2932         ;
2933
2934 dim_separators
2935         : COMMA
2936           {
2937                 $$ = ",";
2938           }
2939         | dim_separators COMMA
2940           {
2941                 $$ = (string) $1 + ",";
2942           }
2943         ;
2944
2945 opt_array_initializer
2946         : /* empty */
2947           {
2948                 $$ = null;
2949           }
2950         | array_initializer
2951           {
2952                 $$ = $1;
2953           }
2954         ;
2955
2956 array_initializer
2957         : OPEN_BRACE CLOSE_BRACE
2958           {
2959                 ArrayList list = new ArrayList (4);
2960                 $$ = list;
2961           }
2962         | OPEN_BRACE variable_initializer_list opt_comma CLOSE_BRACE
2963           {
2964                 $$ = (ArrayList) $2;
2965           }
2966         ;
2967
2968 variable_initializer_list
2969         : variable_initializer
2970           {
2971                 ArrayList list = new ArrayList (4);
2972                 list.Add ($1);
2973                 $$ = list;
2974           }
2975         | variable_initializer_list COMMA variable_initializer
2976           {
2977                 ArrayList list = (ArrayList) $1;
2978                 list.Add ($3);
2979                 $$ = list;
2980           }
2981         ;
2982
2983 void_pointer_expression
2984         : void_pointer_expression STAR
2985           {
2986                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
2987           }
2988         | VOID STAR
2989           {
2990                 $$ = new ComposedCast (TypeManager.system_void_expr, "*", lexer.Location);;
2991           }
2992         ;
2993
2994 typeof_expression
2995         : TYPEOF OPEN_PARENS VOID CLOSE_PARENS
2996           {
2997                 $$ = new TypeOfVoid (lexer.Location);
2998           }
2999         | TYPEOF OPEN_PARENS void_pointer_expression CLOSE_PARENS
3000           {
3001                 $$ = new TypeOf ((Expression) $3, lexer.Location);
3002           }
3003         | TYPEOF OPEN_PARENS
3004           {
3005                 lexer.TypeOfParsing = true;
3006           }
3007           type CLOSE_PARENS
3008           {
3009                 lexer.TypeOfParsing = false;
3010                 $$ = new TypeOf ((Expression) $4, lexer.Location);
3011           }
3012         ;
3013
3014 sizeof_expression
3015         : SIZEOF OPEN_PARENS type CLOSE_PARENS { 
3016                 $$ = new SizeOf ((Expression) $3, lexer.Location);
3017           }
3018         ;
3019
3020 checked_expression
3021         : CHECKED OPEN_PARENS expression CLOSE_PARENS
3022           {
3023                 $$ = new CheckedExpr ((Expression) $3, lexer.Location);
3024           }
3025         ;
3026
3027 unchecked_expression
3028         : UNCHECKED OPEN_PARENS expression CLOSE_PARENS
3029           {
3030                 $$ = new UnCheckedExpr ((Expression) $3, lexer.Location);
3031           }
3032         ;
3033
3034 pointer_member_access 
3035         : primary_expression OP_PTR IDENTIFIER
3036           {
3037                 Expression deref;
3038
3039                 deref = new Unary (Unary.Operator.Indirection, (Expression) $1, lexer.Location);
3040                 $$ = new MemberAccess (deref, (string) $3, lexer.Location);
3041           }
3042         ;
3043
3044 anonymous_method_expression
3045         : DELEGATE opt_anonymous_method_signature {
3046                 oob_stack.Push (current_local_parameters);
3047                 current_local_parameters = (Parameters)$2;
3048
3049                 // Force the next block to be created as a ToplevelBlock
3050                 oob_stack.Push (current_block);
3051                 oob_stack.Push (top_current_block);
3052                 oob_stack.Push (lexer.Location);
3053                 current_block = null;
3054           } block {
3055                 Location loc = (Location) oob_stack.Pop ();
3056                 top_current_block = (Block) oob_stack.Pop ();
3057                 current_block = (Block) oob_stack.Pop ();
3058                         if (RootContext.Version == LanguageVersion.ISO_1){
3059                                 Report.FeatureIsNotStandardized (lexer.Location, "anonymous methods");
3060                                 $$ = null;
3061                 } else  {
3062                         ToplevelBlock anon_block = (ToplevelBlock) $4;
3063
3064                         anon_block.Parent = current_block;
3065                         $$ = new AnonymousMethod ((Parameters) $2, (ToplevelBlock) top_current_block, 
3066                                 anon_block, loc);
3067                 }
3068                         current_local_parameters = (Parameters) oob_stack.Pop ();
3069                 }
3070         ;
3071
3072 opt_anonymous_method_signature
3073         : /* empty */                   { $$ = null; } 
3074         | anonymous_method_signature
3075         ;
3076
3077 anonymous_method_signature
3078         : OPEN_PARENS opt_anonymous_method_parameter_list CLOSE_PARENS 
3079           {
3080                 if ($2 == null)
3081                         $$ = Parameters.EmptyReadOnlyParameters;
3082                 else {
3083                         ArrayList par_list = (ArrayList) $2;
3084                         Parameter [] pars = new Parameter [par_list.Count];
3085                         par_list.CopyTo (pars);
3086                         $$ = new Parameters (pars, null, lexer.Location);
3087                 }
3088           }
3089         ;
3090
3091 opt_anonymous_method_parameter_list
3092         : /* empty */   { $$ = null; } 
3093         | anonymous_method_parameter_list  { $$ = $1; }
3094         ;
3095
3096 anonymous_method_parameter_list
3097         : anonymous_method_parameter 
3098           {
3099                 ArrayList a = new ArrayList (4);
3100                 a.Add ($1);
3101                 $$ = a;
3102           }
3103         | anonymous_method_parameter_list COMMA anonymous_method_parameter 
3104           {
3105                 ArrayList a = (ArrayList) $1;
3106                 a.Add ($3);
3107                 $$ = a;
3108           }
3109         ; 
3110
3111 anonymous_method_parameter
3112         : opt_parameter_modifier type IDENTIFIER {
3113                 $$ = new Parameter ((Expression) $2, (string) $3, (Parameter.Modifier) $1, null);
3114           }
3115         | PARAMS type IDENTIFIER {
3116                 Report.Error (-221, lexer.Location, "params modifier not allowed in anonymous method declaration");
3117                 $$ = null;
3118           }
3119         ;
3120
3121 default_value_expression
3122         : DEFAULT_OPEN_PARENS type CLOSE_PARENS
3123           {
3124                 $$ = new DefaultValueExpression ((Expression) $2, lexer.Location);
3125           }
3126         ;
3127
3128 unary_expression
3129         : primary_expression
3130         | BANG prefixed_unary_expression
3131           {
3132                 $$ = new Unary (Unary.Operator.LogicalNot, (Expression) $2, lexer.Location);
3133           }
3134         | TILDE prefixed_unary_expression
3135           {
3136                 $$ = new Unary (Unary.Operator.OnesComplement, (Expression) $2, lexer.Location);
3137           }
3138         | cast_expression
3139         ;
3140
3141 cast_list
3142         : parenthesized_expression_0 CLOSE_PARENS_CAST unary_expression
3143           {
3144                 $$ = new Cast ((Expression) $1, (Expression) $3, lexer.Location);
3145           }
3146         | parenthesized_expression_0 CLOSE_PARENS_OPEN_PARENS cast_expression
3147           {
3148                 $$ = new Cast ((Expression) $1, (Expression) $3, lexer.Location);
3149           }     
3150         ;
3151
3152 cast_expression
3153         : cast_list
3154         | OPEN_PARENS non_expression_type CLOSE_PARENS prefixed_unary_expression
3155           {
3156                 $$ = new Cast ((Expression) $2, (Expression) $4, lexer.Location);
3157           }
3158         ;
3159
3160         //
3161         // The idea to split this out is from Rhys' grammar
3162         // to solve the problem with casts.
3163         //
3164 prefixed_unary_expression
3165         : unary_expression
3166         | PLUS prefixed_unary_expression
3167           { 
3168                 $$ = new Unary (Unary.Operator.UnaryPlus, (Expression) $2, lexer.Location);
3169           } 
3170         | MINUS prefixed_unary_expression 
3171           { 
3172                 $$ = new Unary (Unary.Operator.UnaryNegation, (Expression) $2, lexer.Location);
3173           }
3174         | OP_INC prefixed_unary_expression 
3175           {
3176                 $$ = new UnaryMutator (UnaryMutator.Mode.PreIncrement,
3177                                        (Expression) $2, lexer.Location);
3178           }
3179         | OP_DEC prefixed_unary_expression 
3180           {
3181                 $$ = new UnaryMutator (UnaryMutator.Mode.PreDecrement,
3182                                        (Expression) $2, lexer.Location);
3183           }
3184         | STAR prefixed_unary_expression
3185           {
3186                 $$ = new Unary (Unary.Operator.Indirection, (Expression) $2, lexer.Location);
3187           }
3188         | BITWISE_AND prefixed_unary_expression
3189           {
3190                 $$ = new Unary (Unary.Operator.AddressOf, (Expression) $2, lexer.Location);
3191           }
3192         ;
3193
3194 pre_increment_expression
3195         : OP_INC prefixed_unary_expression 
3196           {
3197                 $$ = new UnaryMutator (UnaryMutator.Mode.PreIncrement,
3198                                        (Expression) $2, lexer.Location);
3199           }
3200         ;
3201
3202 pre_decrement_expression
3203         : OP_DEC prefixed_unary_expression 
3204           {
3205                 $$ = new UnaryMutator (UnaryMutator.Mode.PreDecrement,
3206                                        (Expression) $2, lexer.Location);
3207           }
3208         ;
3209
3210 multiplicative_expression
3211         : prefixed_unary_expression
3212         | multiplicative_expression STAR prefixed_unary_expression
3213           {
3214                 $$ = new Binary (Binary.Operator.Multiply, 
3215                                  (Expression) $1, (Expression) $3, lexer.Location);
3216           }
3217         | multiplicative_expression DIV prefixed_unary_expression
3218           {
3219                 $$ = new Binary (Binary.Operator.Division, 
3220                                  (Expression) $1, (Expression) $3, lexer.Location);
3221           }
3222         | multiplicative_expression PERCENT prefixed_unary_expression 
3223           {
3224                 $$ = new Binary (Binary.Operator.Modulus, 
3225                                  (Expression) $1, (Expression) $3, lexer.Location);
3226           }
3227         ;
3228
3229 additive_expression
3230         : multiplicative_expression
3231         | additive_expression PLUS multiplicative_expression 
3232           {
3233                 $$ = new Binary (Binary.Operator.Addition, 
3234                                  (Expression) $1, (Expression) $3, lexer.Location);
3235           }
3236         | additive_expression MINUS multiplicative_expression
3237           {
3238                 $$ = new Binary (Binary.Operator.Subtraction, 
3239                                  (Expression) $1, (Expression) $3, lexer.Location);
3240           }
3241         ;
3242
3243 shift_expression
3244         : additive_expression
3245         | shift_expression OP_SHIFT_LEFT additive_expression
3246           {
3247                 $$ = new Binary (Binary.Operator.LeftShift, 
3248                                  (Expression) $1, (Expression) $3, lexer.Location);
3249           }
3250         | shift_expression OP_SHIFT_RIGHT additive_expression
3251           {
3252                 $$ = new Binary (Binary.Operator.RightShift, 
3253                                  (Expression) $1, (Expression) $3, lexer.Location);
3254           }
3255         ; 
3256
3257 relational_expression
3258         : shift_expression
3259         | relational_expression OP_LT shift_expression
3260           {
3261                 $$ = new Binary (Binary.Operator.LessThan, 
3262                                  (Expression) $1, (Expression) $3, lexer.Location);
3263           }
3264         | relational_expression OP_GT shift_expression
3265           {
3266                 $$ = new Binary (Binary.Operator.GreaterThan, 
3267                                  (Expression) $1, (Expression) $3, lexer.Location);
3268           }
3269         | relational_expression OP_LE shift_expression
3270           {
3271                 $$ = new Binary (Binary.Operator.LessThanOrEqual, 
3272                                  (Expression) $1, (Expression) $3, lexer.Location);
3273           }
3274         | relational_expression OP_GE shift_expression
3275           {
3276                 $$ = new Binary (Binary.Operator.GreaterThanOrEqual, 
3277                                  (Expression) $1, (Expression) $3, lexer.Location);
3278           }
3279         | relational_expression IS type
3280           {
3281                 $$ = new Is ((Expression) $1, (Expression) $3, lexer.Location);
3282           }
3283         | relational_expression AS type
3284           {
3285                 $$ = new As ((Expression) $1, (Expression) $3, lexer.Location);
3286           }
3287         ;
3288
3289 equality_expression
3290         : relational_expression
3291         | equality_expression OP_EQ relational_expression
3292           {
3293                 $$ = new Binary (Binary.Operator.Equality, 
3294                                  (Expression) $1, (Expression) $3, lexer.Location);
3295           }
3296         | equality_expression OP_NE relational_expression
3297           {
3298                 $$ = new Binary (Binary.Operator.Inequality, 
3299                                  (Expression) $1, (Expression) $3, lexer.Location);
3300           }
3301         ; 
3302
3303 and_expression
3304         : equality_expression
3305         | and_expression BITWISE_AND equality_expression
3306           {
3307                 $$ = new Binary (Binary.Operator.BitwiseAnd, 
3308                                  (Expression) $1, (Expression) $3, lexer.Location);
3309           }
3310         ;
3311
3312 exclusive_or_expression
3313         : and_expression
3314         | exclusive_or_expression CARRET and_expression
3315           {
3316                 $$ = new Binary (Binary.Operator.ExclusiveOr, 
3317                                  (Expression) $1, (Expression) $3, lexer.Location);
3318           }
3319         ;
3320
3321 inclusive_or_expression
3322         : exclusive_or_expression
3323         | inclusive_or_expression BITWISE_OR exclusive_or_expression
3324           {
3325                 $$ = new Binary (Binary.Operator.BitwiseOr, 
3326                                  (Expression) $1, (Expression) $3, lexer.Location);
3327           }
3328         ;
3329
3330 conditional_and_expression
3331         : inclusive_or_expression
3332         | conditional_and_expression OP_AND inclusive_or_expression
3333           {
3334                 $$ = new Binary (Binary.Operator.LogicalAnd, 
3335                                  (Expression) $1, (Expression) $3, lexer.Location);
3336           }
3337         ;
3338
3339 conditional_or_expression
3340         : conditional_and_expression
3341         | conditional_or_expression OP_OR conditional_and_expression
3342           {
3343                 $$ = new Binary (Binary.Operator.LogicalOr, 
3344                                  (Expression) $1, (Expression) $3, lexer.Location);
3345           }
3346         ;
3347
3348 conditional_expression
3349         : conditional_or_expression
3350         | conditional_or_expression INTERR expression COLON expression 
3351           {
3352                 $$ = new Conditional ((Expression) $1, (Expression) $3, (Expression) $5, lexer.Location);
3353           }
3354         ;
3355
3356 assignment_expression
3357         : prefixed_unary_expression ASSIGN expression
3358           {
3359                 $$ = new Assign ((Expression) $1, (Expression) $3, lexer.Location);
3360           }
3361         | prefixed_unary_expression OP_MULT_ASSIGN expression
3362           {
3363                 Location l = lexer.Location;
3364
3365                 $$ = new CompoundAssign (
3366                         Binary.Operator.Multiply, (Expression) $1, (Expression) $3, l);
3367           }
3368         | prefixed_unary_expression OP_DIV_ASSIGN expression
3369           {
3370                 Location l = lexer.Location;
3371
3372                 $$ = new CompoundAssign (
3373                         Binary.Operator.Division, (Expression) $1, (Expression) $3, l);
3374           }
3375         | prefixed_unary_expression OP_MOD_ASSIGN expression
3376           {
3377                 Location l = lexer.Location;
3378
3379                 $$ = new CompoundAssign (
3380                         Binary.Operator.Modulus, (Expression) $1, (Expression) $3, l);
3381           }
3382         | prefixed_unary_expression OP_ADD_ASSIGN expression
3383           {
3384                 Location l = lexer.Location;
3385
3386                 $$ = new CompoundAssign (
3387                         Binary.Operator.Addition, (Expression) $1, (Expression) $3, l);
3388           }
3389         | prefixed_unary_expression OP_SUB_ASSIGN expression
3390           {
3391                 Location l = lexer.Location;
3392
3393                 $$ = new CompoundAssign (
3394                         Binary.Operator.Subtraction, (Expression) $1, (Expression) $3, l);
3395           }
3396         | prefixed_unary_expression OP_SHIFT_LEFT_ASSIGN expression
3397           {
3398                 Location l = lexer.Location;
3399
3400                 $$ = new CompoundAssign (
3401                         Binary.Operator.LeftShift, (Expression) $1, (Expression) $3, l);
3402           }
3403         | prefixed_unary_expression OP_SHIFT_RIGHT_ASSIGN expression
3404           {
3405                 Location l = lexer.Location;
3406
3407                 $$ = new CompoundAssign (
3408                         Binary.Operator.RightShift, (Expression) $1, (Expression) $3, l);
3409           }
3410         | prefixed_unary_expression OP_AND_ASSIGN expression
3411           {
3412                 Location l = lexer.Location;
3413
3414                 $$ = new CompoundAssign (
3415                         Binary.Operator.BitwiseAnd, (Expression) $1, (Expression) $3, l);
3416           }
3417         | prefixed_unary_expression OP_OR_ASSIGN expression
3418           {
3419                 Location l = lexer.Location;
3420
3421                 $$ = new CompoundAssign (
3422                         Binary.Operator.BitwiseOr, (Expression) $1, (Expression) $3, l);
3423           }
3424         | prefixed_unary_expression OP_XOR_ASSIGN expression
3425           {
3426                 Location l = lexer.Location;
3427
3428                 $$ = new CompoundAssign (
3429                         Binary.Operator.ExclusiveOr, (Expression) $1, (Expression) $3, l);
3430           }
3431         ;
3432
3433 expression
3434         : conditional_expression
3435         | assignment_expression
3436         ;
3437
3438 constant_expression
3439         : expression
3440         ;
3441
3442 boolean_expression
3443         : expression
3444         ;
3445
3446 //
3447 // 10 classes
3448 //
3449 class_declaration
3450         : opt_attributes
3451           opt_modifiers
3452           opt_partial
3453           CLASS member_name
3454           {
3455                 MemberName name = MakeName ((MemberName) $5);
3456                 bool partial = (bool) $3;
3457                 int mod_flags = (int) $2;
3458
3459                 if (partial) {
3460                         ClassPart part = PartialContainer.CreatePart (
3461                                 current_namespace, current_container, name, mod_flags,
3462                                 (Attributes) $1, Kind.Class, lexer.Location);
3463
3464                         current_container = part.PartialContainer;
3465                         current_class = part;
3466                 } else {
3467                         if ((mod_flags & Modifiers.STATIC) != 0) {
3468                                 current_class = new StaticClass (
3469                                         current_namespace, current_container, name,
3470                                         mod_flags, (Attributes) $1, lexer.Location);
3471                         } else {
3472                                 current_class = new Class (
3473                                         current_namespace, current_container, name,
3474                                         mod_flags, (Attributes) $1, lexer.Location);
3475                         }
3476
3477                         current_container = current_class;
3478                         RootContext.Tree.RecordDecl (name.GetName (true), current_class);
3479                 }
3480
3481                 lexer.ConstraintsParsing = true;
3482           }
3483           opt_class_base
3484           opt_type_parameter_constraints_clauses
3485           {
3486                 lexer.ConstraintsParsing = false;
3487
3488                 if ($7 != null) {
3489                         if (current_class.Name == "System.Object") {
3490                                 Report.Error (537, current_class.Location,
3491                                               "The class System.Object cannot have a base " +
3492                                               "class or implement an interface.");
3493                         }
3494                         current_class.Bases = (ArrayList) $7;
3495                 }
3496
3497                 current_class.SetParameterInfo ((ArrayList) $8);
3498
3499                 if (RootContext.Documentation != null) {
3500                         current_class.DocComment = Lexer.consume_doc_comment ();
3501                         Lexer.doc_state = XmlCommentState.Allowed;
3502                 }
3503
3504                 current_class.Register ();
3505           }
3506           class_body
3507           {
3508                 if (RootContext.Documentation != null)
3509                         Lexer.doc_state = XmlCommentState.Allowed;
3510           }
3511           opt_semicolon 
3512           {
3513                 $$ = current_class;
3514
3515                 current_container = current_container.Parent;
3516                 current_class = current_container;
3517           }
3518         ;       
3519
3520 opt_partial
3521         : /* empty */
3522           { $$ = (bool) false; }
3523         | PARTIAL
3524           { $$ = (bool) true; }
3525         ;
3526
3527 opt_modifiers
3528         : /* empty */           { $$ = (int) 0; }
3529         | modifiers
3530         ;
3531
3532 modifiers
3533         : modifier
3534         | modifiers modifier
3535           { 
3536                 int m1 = (int) $1;
3537                 int m2 = (int) $2;
3538
3539                 if ((m1 & m2) != 0) {
3540                         Location l = lexer.Location;
3541                         Report.Error (1004, l, "Duplicate modifier: `" + Modifiers.Name (m2) + "'");
3542                 }
3543                 $$ = (int) (m1 | m2);
3544           }
3545         ;
3546
3547 modifier
3548         : NEW                   { $$ = Modifiers.NEW; }
3549         | PUBLIC                { $$ = Modifiers.PUBLIC; }
3550         | PROTECTED             { $$ = Modifiers.PROTECTED; }
3551         | INTERNAL              { $$ = Modifiers.INTERNAL; }
3552         | PRIVATE               { $$ = Modifiers.PRIVATE; }
3553         | ABSTRACT              { $$ = Modifiers.ABSTRACT; }
3554         | SEALED                { $$ = Modifiers.SEALED; }
3555         | STATIC                { $$ = Modifiers.STATIC; }
3556         | READONLY              { $$ = Modifiers.READONLY; }
3557         | VIRTUAL               { $$ = Modifiers.VIRTUAL; }
3558         | OVERRIDE              { $$ = Modifiers.OVERRIDE; }
3559         | EXTERN                { $$ = Modifiers.EXTERN; }
3560         | VOLATILE              { $$ = Modifiers.VOLATILE; }
3561         | UNSAFE                { $$ = Modifiers.UNSAFE; }
3562         ;
3563
3564 opt_class_base
3565         : /* empty */           { $$ = null; }
3566         | class_base            { $$ = $1;   }
3567         ;
3568
3569 class_base
3570         : COLON type_list { $$ = $2; }
3571         ;
3572
3573 opt_type_parameter_constraints_clauses
3574         : /* empty */           { $$ = null; }
3575         | type_parameter_constraints_clauses 
3576           { $$ = $1; }
3577         ;
3578
3579 type_parameter_constraints_clauses
3580         : type_parameter_constraints_clause {
3581                 ArrayList constraints = new ArrayList (1);
3582                 constraints.Add ($1);
3583                 $$ = constraints;
3584           }
3585         | type_parameter_constraints_clauses type_parameter_constraints_clause {
3586                 ArrayList constraints = (ArrayList) $1;
3587
3588                 constraints.Add ($2);
3589                 $$ = constraints;
3590           }
3591         ; 
3592
3593 type_parameter_constraints_clause
3594         : WHERE IDENTIFIER COLON type_parameter_constraints {
3595                 $$ = new Constraints ((string) $2, (ArrayList) $4, lexer.Location);
3596           }
3597         ; 
3598
3599 type_parameter_constraints
3600         : type_parameter_constraint {
3601                 ArrayList constraints = new ArrayList (1);
3602                 constraints.Add ($1);
3603                 $$ = constraints;
3604           }
3605         | type_parameter_constraints COMMA type_parameter_constraint {
3606                 ArrayList constraints = (ArrayList) $1;
3607
3608                 constraints.Add ($3);
3609                 $$ = constraints;
3610           }
3611         ;
3612
3613 type_parameter_constraint
3614         : type
3615         | NEW OPEN_PARENS CLOSE_PARENS {
3616                 $$ = SpecialConstraint.Constructor;
3617           }
3618         | CLASS {
3619                 $$ = SpecialConstraint.ReferenceType;
3620           }
3621         | STRUCT {
3622                 $$ = SpecialConstraint.ValueType;
3623           }
3624         ;
3625
3626 //
3627 // Statements (8.2)
3628 //
3629
3630 //
3631 // A block is "contained" on the following places:
3632 //      method_body
3633 //      property_declaration as part of the accessor body (get/set)
3634 //      operator_declaration
3635 //      constructor_declaration
3636 //      destructor_declaration
3637 //      event_declaration as part of add_accessor_declaration or remove_accessor_declaration
3638 //      
3639 block
3640         : OPEN_BRACE 
3641           {
3642                 if (current_block == null){
3643                         current_block = new ToplevelBlock ((ToplevelBlock) top_current_block, current_local_parameters, lexer.Location);
3644                         top_current_block = current_block;
3645                 } else {
3646                 current_block = new Block (current_block, current_local_parameters,
3647                                            lexer.Location, Location.Null);
3648                 }
3649           } 
3650           opt_statement_list CLOSE_BRACE 
3651           { 
3652                 while (current_block.Implicit)
3653                         current_block = current_block.Parent;
3654                 $$ = current_block;
3655                 current_block.SetEndLocation (lexer.Location);
3656                 current_block = current_block.Parent;
3657                 if (current_block == null)
3658                         top_current_block = null;
3659           }
3660         ;
3661
3662 opt_statement_list
3663         : /* empty */
3664         | statement_list 
3665         ;
3666
3667 statement_list
3668         : statement
3669         | statement_list statement
3670         ;
3671
3672 statement
3673         : declaration_statement
3674           {
3675                 if ($1 != null && (Block) $1 != current_block){
3676                         current_block.AddStatement ((Statement) $1);
3677                         current_block = (Block) $1;
3678                 }
3679           }
3680         | valid_declaration_statement
3681           {
3682                 current_block.AddStatement ((Statement) $1);
3683           }
3684         | labeled_statement
3685         ;
3686
3687 valid_declaration_statement
3688         : block
3689         | empty_statement
3690         | expression_statement
3691         | selection_statement
3692         | iteration_statement
3693         | jump_statement                  
3694         | try_statement
3695         | checked_statement
3696         | unchecked_statement
3697         | lock_statement
3698         | using_statement
3699         | unsafe_statement
3700         | fixed_statement
3701         ;
3702
3703 embedded_statement
3704         : valid_declaration_statement
3705         | declaration_statement
3706           {
3707                   Report.Error (1023, lexer.Location, "An embedded statement may not be a declaration.");
3708                   $$ = null;
3709           }
3710         | labeled_statement
3711           {
3712                   Report.Error (1023, lexer.Location, "An embedded statement may not be a labeled statement.");
3713                   $$ = null;
3714           }
3715         ;
3716
3717 empty_statement
3718         : SEMICOLON
3719           {
3720                   $$ = EmptyStatement.Value;
3721           }
3722         ;
3723
3724 labeled_statement
3725         : IDENTIFIER COLON 
3726           {
3727                 LabeledStatement labeled = new LabeledStatement ((string) $1, lexer.Location);
3728
3729                 if (current_block.AddLabel ((string) $1, labeled, lexer.Location))
3730                         current_block.AddStatement (labeled);
3731           }
3732           statement
3733         ;
3734
3735 declaration_statement
3736         : local_variable_declaration SEMICOLON
3737           {
3738                 if ($1 != null){
3739                         DictionaryEntry de = (DictionaryEntry) $1;
3740
3741                         $$ = declare_local_variables ((Expression) de.Key, (ArrayList) de.Value, lexer.Location);
3742                 }
3743           }
3744
3745         | local_constant_declaration SEMICOLON
3746           {
3747                 if ($1 != null){
3748                         DictionaryEntry de = (DictionaryEntry) $1;
3749
3750                         $$ = declare_local_constants ((Expression) de.Key, (ArrayList) de.Value);
3751                 }
3752           }
3753         ;
3754
3755 /* 
3756  * The following is from Rhys' grammar:
3757  * > Types in local variable declarations must be recognized as 
3758  * > expressions to prevent reduce/reduce errors in the grammar.
3759  * > The expressions are converted into types during semantic analysis.
3760  */
3761 local_variable_type
3762         : primary_expression opt_rank_specifier
3763           { 
3764                 // FIXME: Do something smart here regarding the composition of the type.
3765
3766                 // Ok, the above "primary_expression" is there to get rid of
3767                 // both reduce/reduce and shift/reduces in the grammar, it should
3768                 // really just be "type_name".  If you use type_name, a reduce/reduce
3769                 // creeps up.  If you use namespace_or_type_name (which is all we need
3770                 // really) two shift/reduces appear.
3771                 // 
3772
3773                 // So the super-trick is that primary_expression
3774                 // can only be either a SimpleName or a MemberAccess. 
3775                 // The MemberAccess case arises when you have a fully qualified type-name like :
3776                 // Foo.Bar.Blah i;
3777                 // SimpleName is when you have
3778                 // Blah i;
3779                   
3780                 Expression expr = (Expression) $1;  
3781                 if (!(expr is SimpleName || expr is MemberAccess || expr is ComposedCast || expr is ConstructedType)) {
3782                         Error_ExpectingTypeName (lexer.Location, expr);
3783                         $$ = null;
3784                 } else {
3785                         //
3786                         // So we extract the string corresponding to the SimpleName
3787                         // or MemberAccess
3788                         // 
3789
3790                         if ((string) $2 == "")
3791                                 $$ = $1;
3792                         else
3793                                 $$ = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
3794                 }
3795           }
3796         | builtin_types opt_rank_specifier
3797           {
3798                 if ((string) $2 == "")
3799                         $$ = $1;
3800                 else
3801                         $$ = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
3802           }
3803         ;
3804
3805 local_variable_pointer_type
3806         : primary_expression STAR
3807           {
3808                 Expression expr = (Expression) $1;  
3809                 Location l = lexer.Location;
3810
3811                 if (!(expr is SimpleName || expr is MemberAccess || expr is ComposedCast || expr is ConstructedType)) {
3812                         Error_ExpectingTypeName (l, expr);
3813
3814                         $$ = null;
3815                 } else 
3816                         $$ = new ComposedCast ((Expression) $1, "*", l);
3817           }
3818         | builtin_types STAR
3819           {
3820                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);;
3821           }
3822         | VOID STAR
3823           {
3824                 $$ = new ComposedCast (TypeManager.system_void_expr, "*", lexer.Location);;
3825           }
3826         | local_variable_pointer_type STAR
3827           {
3828                 $$ = new ComposedCast ((Expression) $1, "*", lexer.Location);
3829           }
3830         ;
3831
3832 local_variable_declaration
3833         : local_variable_type variable_declarators
3834           {
3835                 if ($1 != null)
3836                         $$ = new DictionaryEntry ($1, $2);
3837                 else
3838                         $$ = null;
3839           }
3840         | local_variable_pointer_type opt_rank_specifier variable_declarators
3841         {
3842                 if ($1 != null){
3843                         Expression t;
3844
3845                         if ((string) $2 == "")
3846                                 t = (Expression) $1;
3847                         else
3848                                 t = new ComposedCast ((Expression) $1, (string) $2, lexer.Location);
3849                         $$ = new DictionaryEntry (t, $3);
3850                 } else 
3851                         $$ = null;
3852         }
3853         ;
3854
3855 local_constant_declaration
3856         : CONST local_variable_type constant_declarators
3857           {
3858                 if ($2 != null)
3859                         $$ = new DictionaryEntry ($2, $3);
3860                 else
3861                         $$ = null;
3862           }
3863         ;
3864
3865 expression_statement
3866         : statement_expression SEMICOLON
3867           {
3868                 $$ = $1;
3869           }
3870         ;
3871
3872         //
3873         // We have to do the wrapping here and not in the case above,
3874         // because statement_expression is used for example in for_statement
3875         //
3876 statement_expression
3877         : invocation_expression         { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3878         | object_creation_expression    { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3879         | assignment_expression         { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3880         | post_increment_expression     { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3881         | post_decrement_expression     { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3882         | pre_increment_expression      { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3883         | pre_decrement_expression      { $$ = new StatementExpression ((ExpressionStatement) $1, lexer.Location); }
3884         | error {
3885                 Report.Error (1002, lexer.Location, "Expecting `;'");
3886                 $$ = null;
3887           }
3888         ;
3889
3890 object_creation_expression
3891         : object_or_delegate_creation_expression
3892           { note ("complain if this is a delegate maybe?"); } 
3893         ;
3894
3895 selection_statement
3896         : if_statement
3897         | switch_statement
3898         ; 
3899
3900 if_statement
3901         : if_statement_open if_statement_rest
3902           {
3903                 $$ = $2;
3904           }
3905         ;
3906
3907 if_statement_open
3908         : IF OPEN_PARENS 
3909           {
3910                 oob_stack.Push (lexer.Location);
3911           }
3912         ;
3913
3914 if_statement_rest
3915         : boolean_expression CLOSE_PARENS 
3916           embedded_statement
3917           { 
3918                 Location l = (Location) oob_stack.Pop ();
3919
3920                 $$ = new If ((Expression) $1, (Statement) $3, l);
3921
3922                 if (RootContext.WarningLevel >= 4){
3923                         if ($3 == EmptyStatement.Value)
3924                                 Report.Warning (642, lexer.Location, "Possible mistaken empty statement");
3925                 }
3926
3927           }
3928         | boolean_expression CLOSE_PARENS
3929           embedded_statement ELSE embedded_statement
3930           {
3931                 Location l = (Location) oob_stack.Pop ();
3932
3933                 $$ = new If ((Expression) $1, (Statement) $3, (Statement) $5, l);
3934           }
3935         ;
3936
3937 switch_statement
3938         : SWITCH OPEN_PARENS 
3939           { 
3940                 oob_stack.Push (lexer.Location);
3941                 switch_stack.Push (current_block);
3942           }
3943           expression CLOSE_PARENS 
3944           switch_block
3945           {
3946                 $$ = new Switch ((Expression) $4, (ArrayList) $6, (Location) oob_stack.Pop ());
3947                 current_block = (Block) switch_stack.Pop ();
3948           }
3949         ;
3950
3951 switch_block
3952         : OPEN_BRACE
3953           opt_switch_sections
3954           CLOSE_BRACE
3955           {
3956                 $$ = $2;
3957           }
3958         ;
3959
3960 opt_switch_sections
3961         : /* empty */           
3962           {
3963                 Report.Error (1522, lexer.Location, "Empty switch block"); 
3964           }
3965         | switch_sections
3966         ;
3967
3968 switch_sections
3969         : switch_section 
3970           {
3971                 ArrayList sections = new ArrayList (4);
3972
3973                 sections.Add ($1);
3974                 $$ = sections;
3975           }
3976         | switch_sections switch_section
3977           {
3978                 ArrayList sections = (ArrayList) $1;
3979
3980                 sections.Add ($2);
3981                 $$ = sections;
3982           }
3983         ;
3984
3985 switch_section
3986         : switch_labels
3987           {
3988                 current_block = current_block.CreateSwitchBlock (lexer.Location);
3989           }
3990           statement_list 
3991           {
3992                 Block topmost = current_block;
3993
3994                 while (topmost.Implicit)
3995                         topmost = topmost.Parent;
3996                 $$ = new SwitchSection ((ArrayList) $1, topmost);
3997           }
3998         ;
3999
4000 switch_labels
4001         : switch_label 
4002           {
4003                 ArrayList labels = new ArrayList (4);
4004
4005                 labels.Add ($1);
4006                 $$ = labels;
4007           }
4008         | switch_labels switch_label 
4009           {
4010                 ArrayList labels = (ArrayList) ($1);
4011                 labels.Add ($2);
4012
4013                 $$ = labels;
4014           }
4015         ;
4016
4017 switch_label
4018         : CASE constant_expression COLON        { $$ = new SwitchLabel ((Expression) $2, lexer.Location); }
4019         | DEFAULT COLON                         { $$ = new SwitchLabel (null, lexer.Location); }
4020         | error {
4021                 Report.Error (
4022                         1523, lexer.Location, 
4023                         "The keyword case or default must precede code in switch block");
4024           }
4025         ;
4026
4027 iteration_statement
4028         : while_statement
4029         | do_statement
4030         | for_statement
4031         | foreach_statement
4032         ;
4033
4034 while_statement
4035         : WHILE OPEN_PARENS 
4036         {
4037                 oob_stack.Push (lexer.Location);
4038         }
4039         boolean_expression CLOSE_PARENS embedded_statement
4040         {
4041                 Location l = (Location) oob_stack.Pop ();
4042                 $$ = new While ((Expression) $4, (Statement) $6, l);
4043         
4044                 if (RootContext.WarningLevel >= 4){
4045                         if ($6 == EmptyStatement.Value)
4046                                 Report.Warning (642, lexer.Location, "Possible mistaken empty statement");
4047                 }
4048         }
4049         ;
4050
4051 do_statement
4052         : DO embedded_statement 
4053           WHILE OPEN_PARENS {
4054                 oob_stack.Push (lexer.Location);
4055           }
4056           boolean_expression CLOSE_PARENS SEMICOLON
4057           {
4058                 Location l = (Location) oob_stack.Pop ();
4059
4060                 $$ = new Do ((Statement) $2, (Expression) $6, l);
4061           }
4062         ;
4063
4064 for_statement
4065         : FOR OPEN_PARENS 
4066           opt_for_initializer SEMICOLON
4067           {
4068                 Block assign_block = new Block (current_block);
4069                 current_block = assign_block;
4070
4071                 if ($3 is DictionaryEntry){
4072                         DictionaryEntry de = (DictionaryEntry) $3;
4073                         
4074                         Expression type = (Expression) de.Key;
4075                         ArrayList var_declarators = (ArrayList) de.Value;
4076
4077                         foreach (VariableDeclaration decl in var_declarators){
4078
4079                                 LocalInfo vi;
4080
4081                                 vi = current_block.AddVariable (
4082                                         type, decl.identifier, current_local_parameters, decl.Location);
4083                                 if (vi == null)
4084                                         continue;
4085
4086                                 Location l = lexer.Location;
4087                                 Expression expr;
4088                                 if (decl.expression_or_array_initializer is Expression){
4089                                         expr = (Expression) decl.expression_or_array_initializer;
4090                                 } else if (decl.expression_or_array_initializer == null) {
4091                                         expr = null;
4092                                 } else {
4093                                         ArrayList init = (ArrayList) decl.expression_or_array_initializer;
4094                                         expr = new ArrayCreation (type, "", init, decl.Location);
4095                                 }
4096                                         
4097                                 LocalVariableReference var;
4098                                 var = new LocalVariableReference (assign_block, decl.identifier, l);
4099
4100                                 if (expr != null) {
4101                                         Assign a = new Assign (var, expr, decl.Location);
4102                                         
4103                                         assign_block.AddStatement (new StatementExpression (a, lexer.Location));
4104                                 }
4105                         }
4106                         
4107                         $3 = null;
4108                 } 
4109                 oob_stack.Push (lexer.Location);
4110           } 
4111           opt_for_condition SEMICOLON
4112           opt_for_iterator CLOSE_PARENS 
4113           embedded_statement
4114           {
4115                 Location l = (Location) oob_stack.Pop ();
4116
4117                 For f = new For ((Statement) $3, (Expression) $6, (Statement) $8, (Statement) $10, l);
4118
4119                 if (RootContext.WarningLevel >= 4){
4120                         if ($10 == EmptyStatement.Value)
4121                                 Report.Warning (642, lexer.Location, "Possible mistaken empty statement");
4122                 }
4123
4124                 current_block.AddStatement (f);
4125                 while (current_block.Implicit)
4126                         current_block = current_block.Parent;
4127                 $$ = current_block;
4128                 current_block = current_block.Parent;
4129           }
4130         ;
4131
4132 opt_for_initializer
4133         : /* empty */           { $$ = EmptyStatement.Value; }
4134         | for_initializer       
4135         ;
4136
4137 for_initializer
4138         : local_variable_declaration
4139         | statement_expression_list
4140         ;
4141
4142 opt_for_condition
4143         : /* empty */           { $$ = null; }
4144         | boolean_expression
4145         ;
4146
4147 opt_for_iterator
4148         : /* empty */           { $$ = EmptyStatement.Value; }
4149         | for_iterator
4150         ;
4151
4152 for_iterator
4153         : statement_expression_list
4154         ;
4155
4156 statement_expression_list
4157         : statement_expression  
4158           {
4159                 // CHANGE: was `null'
4160                 Block b = new Block (current_block, Block.Flags.Implicit);   
4161
4162                 b.AddStatement ((Statement) $1);
4163                 $$ = b;
4164           }
4165         | statement_expression_list COMMA statement_expression
4166           {
4167                 Block b = (Block) $1;
4168
4169                 b.AddStatement ((Statement) $3);
4170                 $$ = $1;
4171           }
4172         ;
4173
4174 foreach_statement
4175         : FOREACH OPEN_PARENS type IDENTIFIER IN 
4176           {
4177                 oob_stack.Push (lexer.Location);
4178           }
4179           expression CLOSE_PARENS 
4180           {
4181                 oob_stack.Push (current_block);
4182
4183                 Block foreach_block = new Block (current_block);
4184                 LocalVariableReference v = null;
4185                 Location l = lexer.Location;
4186                 LocalInfo vi;
4187
4188                 vi = foreach_block.AddVariable ((Expression) $3, (string) $4, current_local_parameters, l);
4189                 if (vi != null) {
4190                         vi.ReadOnly = true;
4191
4192                         // Get a writable reference to this read-only variable.
4193                         v = new LocalVariableReference (foreach_block, (string) $4, l, vi, false);
4194                 }
4195                 current_block = foreach_block;
4196
4197                 oob_stack.Push (v);
4198                 oob_stack.Push (current_block);
4199           } 
4200           embedded_statement 
4201           {
4202                 Block foreach_block = (Block) oob_stack.Pop ();
4203                 LocalVariableReference v = (LocalVariableReference) oob_stack.Pop ();
4204                 Block prev_block = (Block) oob_stack.Pop ();
4205                 Location l = (Location) oob_stack.Pop ();
4206
4207                 current_block = prev_block;
4208
4209                 if (v != null) {
4210                         Foreach f = new Foreach ((Expression) $3, v, (Expression) $7, (Statement) $10, l);
4211                         foreach_block.AddStatement (f);
4212                 }
4213
4214                 $$ = foreach_block;
4215           }
4216         ;
4217
4218 jump_statement
4219         : break_statement
4220         | continue_statement
4221         | goto_statement
4222         | return_statement
4223         | throw_statement
4224         | yield_statement
4225         ;
4226
4227 break_statement
4228         : BREAK SEMICOLON
4229           {
4230                 $$ = new Break (lexer.Location);
4231           }
4232         ;
4233
4234 continue_statement
4235         : CONTINUE SEMICOLON
4236           {
4237                 $$ = new Continue (lexer.Location);
4238           }
4239         ;
4240
4241 goto_statement
4242         : GOTO IDENTIFIER SEMICOLON 
4243           {
4244                 $$ = new Goto (current_block, (string) $2, lexer.Location);
4245           }
4246         | GOTO CASE constant_expression SEMICOLON
4247           {
4248                 $$ = new GotoCase ((Expression) $3, lexer.Location);
4249           }
4250         | GOTO DEFAULT SEMICOLON 
4251           {
4252                 $$ = new GotoDefault (lexer.Location);
4253           }
4254         ; 
4255
4256 return_statement
4257         : RETURN opt_expression SEMICOLON
4258           {
4259                 $$ = new Return ((Expression) $2, lexer.Location);
4260           }
4261         ;
4262
4263 throw_statement
4264         : THROW opt_expression SEMICOLON
4265           {
4266                 $$ = new Throw ((Expression) $2, lexer.Location);
4267           }
4268         ;
4269
4270 yield_statement 
4271         : IDENTIFIER RETURN expression SEMICOLON
4272           {
4273                 string s = (string) $1;
4274                 if (s != "yield"){
4275                         Report.Error (1003, lexer.Location, "; expected");
4276                         $$ = null;
4277                 }
4278                 if (RootContext.Version == LanguageVersion.ISO_1){
4279                         Report.FeatureIsNotStandardized (lexer.Location, "yield statement");
4280                         $$ = null;
4281                 }
4282                 if (iterator_container == null){
4283                         Report.Error (204, lexer.Location, "yield statement can only be used within a method, operator or property");
4284                         $$ = null;
4285                 } else {
4286                         iterator_container.SetYields ();
4287                         $$ = new Yield ((Expression) $3, lexer.Location); 
4288                 }
4289           }
4290         | IDENTIFIER BREAK SEMICOLON
4291           {
4292                 string s = (string) $1;
4293                 if (s != "yield"){
4294                         Report.Error (1003, lexer.Location, "; expected");
4295                         $$ = null;
4296                 }
4297                 if (RootContext.Version == LanguageVersion.ISO_1){
4298                         Report.FeatureIsNotStandardized (lexer.Location, "yield statement");
4299                         $$ = null;
4300                 }
4301                 if (iterator_container == null){
4302                         Report.Error (204, lexer.Location, "yield statement can only be used within a method, operator or property");
4303                         $$ = null;
4304                 } else {
4305                         iterator_container.SetYields ();
4306                         $$ = new YieldBreak (lexer.Location);
4307                 }
4308           }
4309         ;
4310
4311 opt_expression
4312         : /* empty */
4313         | expression
4314         ;
4315
4316 try_statement
4317         : TRY block catch_clauses 
4318         {
4319                 Catch g = null;
4320                 
4321                 ArrayList c = (ArrayList)$3;
4322                 for (int i = 0; i < c.Count; ++i) {
4323                         Catch cc = (Catch) c [i];
4324                         if (cc.IsGeneral) {
4325                                 if (i != c.Count - 1)
4326                                         Report.Error (1017, cc.loc, "Empty catch block must be the last in a series of catch blocks");
4327                                 g = cc;
4328                                 c.RemoveAt (i);
4329                                 i--;
4330                         }
4331                 }
4332
4333                 // Now s contains the list of specific catch clauses
4334                 // and g contains the general one.
4335                 
4336                 $$ = new Try ((Block) $2, c, g, null, ((Block) $2).loc);
4337         }
4338         | TRY block opt_catch_clauses FINALLY block
4339           {
4340                 Catch g = null;
4341                 ArrayList s = new ArrayList (4);
4342                 ArrayList catch_list = (ArrayList) $3;
4343
4344                 if (catch_list != null){
4345                         foreach (Catch cc in catch_list) {
4346                                 if (cc.IsGeneral)
4347                                         g = cc;
4348                                 else
4349                                         s.Add (cc);
4350                         }
4351                 }
4352
4353                 $$ = new Try ((Block) $2, s, g, (Block) $5, ((Block) $2).loc);
4354           }
4355         | TRY block error 
4356           {
4357                 Report.Error (1524, lexer.Location, "Expected catch or finally");
4358           }
4359         ;
4360
4361 opt_catch_clauses
4362         : /* empty */  { $$ = null; }
4363         | catch_clauses
4364         ;
4365
4366 catch_clauses
4367         : catch_clause 
4368           {
4369                 ArrayList l = new ArrayList (4);
4370
4371                 l.Add ($1);
4372                 $$ = l;
4373           }
4374         | catch_clauses catch_clause
4375           {
4376                 ArrayList l = (ArrayList) $1;
4377
4378                 l.Add ($2);
4379                 $$ = l;
4380           }
4381         ;
4382
4383 opt_identifier
4384         : /* empty */   { $$ = null; }
4385         | IDENTIFIER
4386         ;
4387
4388 catch_clause 
4389         : CATCH opt_catch_args 
4390         {
4391                 Expression type = null;
4392                 string id = null;
4393                 
4394                 if ($2 != null) {
4395                         DictionaryEntry cc = (DictionaryEntry) $2;
4396                         type = (Expression) cc.Key;
4397                         id   = (string) cc.Value;
4398
4399                         if (id != null){
4400                                 ArrayList one = new ArrayList (4);
4401                                 Location loc = lexer.Location;
4402
4403                                 one.Add (new VariableDeclaration (id, null, loc));
4404
4405                                 $1 = current_block;
4406                                 current_block = new Block (current_block);
4407                                 Block b = declare_local_variables (type, one, loc);
4408                                 current_block = b;
4409                         }
4410                 }
4411         } block {
4412                 Expression type = null;
4413                 string id = null;
4414
4415                 if ($2 != null){
4416                         DictionaryEntry cc = (DictionaryEntry) $2;
4417                         type = (Expression) cc.Key;
4418                         id   = (string) cc.Value;
4419
4420                         if ($1 != null){
4421                                 //
4422                                 // FIXME: I can change this for an assignment.
4423                                 //
4424                                 while (current_block != (Block) $1)
4425                                         current_block = current_block.Parent;
4426                         }
4427                 }
4428
4429
4430                 $$ = new Catch (type, id , (Block) $4, ((Block) $4).loc);
4431         }
4432         ;
4433
4434 opt_catch_args
4435         : /* empty */ { $$ = null; }
4436         | catch_args
4437         ;         
4438
4439 catch_args 
4440         : OPEN_PARENS type opt_identifier CLOSE_PARENS 
4441         {
4442                 $$ = new DictionaryEntry ($2, $3);
4443         }
4444         ;
4445
4446 checked_statement
4447         : CHECKED block
4448           {
4449                 $$ = new Checked ((Block) $2);
4450           }
4451         ;
4452
4453 unchecked_statement
4454         : UNCHECKED block
4455           {
4456                 $$ = new Unchecked ((Block) $2);
4457           }
4458         ;
4459
4460 unsafe_statement
4461         : UNSAFE 
4462         {
4463                 if (!RootContext.Unsafe){
4464                         Report.Error (227, lexer.Location, 
4465                                 "Unsafe code can only be used if --unsafe is used");
4466                 }
4467         } block {
4468                 $$ = new Unsafe ((Block) $3);
4469         }
4470         ;
4471
4472 fixed_statement
4473         : FIXED OPEN_PARENS 
4474           type fixed_pointer_declarators 
4475           CLOSE_PARENS 
4476           {
4477                 ArrayList list = (ArrayList) $4;
4478                 Expression type = (Expression) $3;
4479                 Location l = lexer.Location;
4480                 int top = list.Count;
4481
4482                 Block assign_block = new Block (current_block);
4483                 current_block = assign_block;
4484
4485                 for (int i = 0; i < top; i++){
4486                         Pair p = (Pair) list [i];
4487                         LocalInfo v;
4488
4489                         v = current_block.AddVariable (type, (string) p.First,current_local_parameters, l);
4490                         if (v == null)
4491                                 continue;
4492
4493                         v.ReadOnly = true;
4494                         v.Pinned = true;
4495                         p.First = v;
4496                         list [i] = p;
4497                 }
4498
4499                 oob_stack.Push (l);
4500           }
4501           embedded_statement 
4502           {
4503                 Location l = (Location) oob_stack.Pop ();
4504
4505                 Fixed f = new Fixed ((Expression) $3, (ArrayList) $4, (Statement) $7, l);
4506
4507                 if (RootContext.WarningLevel >= 4){
4508                         if ($7 == EmptyStatement.Value)
4509                                 Report.Warning (642, lexer.Location, "Possible mistaken empty statement");
4510                 }
4511
4512                 current_block.AddStatement (f);
4513                 while (current_block.Implicit)
4514                         current_block = current_block.Parent;
4515                 $$ = current_block;
4516                 current_block = current_block.Parent;
4517           }
4518         ;
4519
4520 fixed_pointer_declarators
4521         : fixed_pointer_declarator      { 
4522                 ArrayList declarators = new ArrayList (4);
4523                 if ($1 != null)
4524                         declarators.Add ($1);
4525                 $$ = declarators;
4526           }
4527         | fixed_pointer_declarators COMMA fixed_pointer_declarator
4528           {
4529                 ArrayList declarators = (ArrayList) $1;
4530                 if ($3 != null)
4531                         declarators.Add ($3);
4532                 $$ = declarators;
4533           }
4534         ;
4535
4536 fixed_pointer_declarator
4537         : IDENTIFIER ASSIGN expression
4538           {     
4539                 $$ = new Pair ($1, $3);
4540           }
4541         | IDENTIFIER
4542           {
4543                 Report.Error (210, lexer.Location, "You must provide an initializer in a fixed or using statement declaration");
4544                 $$ = null;
4545           }
4546         ;
4547
4548 lock_statement
4549         : LOCK OPEN_PARENS expression CLOSE_PARENS 
4550           {
4551                 //
4552           } 
4553           embedded_statement
4554           {
4555                 $$ = new Lock ((Expression) $3, (Statement) $6, lexer.Location);
4556           }
4557         ;
4558
4559 using_statement
4560         : USING OPEN_PARENS resource_acquisition CLOSE_PARENS 
4561           {
4562                 Block assign_block = new Block (current_block);
4563                 current_block = assign_block;
4564
4565                 oob_stack.Push (lexer.Location);
4566                 
4567                 if ($3 is DictionaryEntry){
4568                         DictionaryEntry de = (DictionaryEntry) $3;
4569                         Location l = lexer.Location;
4570
4571                         Expression type = (Expression) de.Key;
4572                         ArrayList var_declarators = (ArrayList) de.Value;
4573
4574                         ArrayList vars = new ArrayList (4);
4575
4576                         foreach (VariableDeclaration decl in var_declarators){
4577
4578                                 LocalInfo vi    = current_block.AddVariable (
4579                                         type, decl.identifier, 
4580                                         current_local_parameters, decl.Location);
4581                                 if (vi == null)
4582                                         continue;
4583                                 vi.ReadOnly = true;
4584
4585                                 Expression expr;
4586                                 if (decl.expression_or_array_initializer is Expression){
4587                                         expr = (Expression) decl.expression_or_array_initializer;
4588                                 } else {
4589                                         ArrayList init = (ArrayList) decl.expression_or_array_initializer;
4590                                         if (init == null) {
4591                                                 Report.Error (210, l, "You must provide an initializer in a fixed or using statement declaration");
4592                                         }
4593                                         
4594                                         expr = new ArrayCreation (type, "", init, decl.Location);
4595                                 }
4596
4597                                 LocalVariableReference var;
4598
4599                                 // Get a writable reference to this read-only variable.
4600                                 var = new LocalVariableReference (assign_block, decl.identifier, l, vi, false);
4601
4602                                 // This is so that it is not a warning on using variables
4603                                 vi.Used = true;
4604
4605                                 vars.Add (new DictionaryEntry (var, expr));                             
4606
4607                                 // Assign a = new Assign (var, expr, decl.Location);
4608                                 // assign_block.AddStatement (new StatementExpression (a, lexer.Location));
4609                         }
4610                         $3 = new DictionaryEntry (type, vars);
4611                  }
4612           } 
4613           embedded_statement
4614           {
4615                 Using u = new Using ($3, (Statement) $6, (Location) oob_stack.Pop ());
4616                 current_block.AddStatement (u);
4617                 while (current_block.Implicit)
4618                         current_block = current_block.Parent;
4619                 $$ = current_block;
4620                 current_block = current_block.Parent;
4621           }
4622         ; 
4623
4624 resource_acquisition
4625         : local_variable_declaration
4626         | expression
4627         ;
4628
4629 %%
4630
4631 // <summary>
4632 //   A class used to pass around variable declarations and constants
4633 // </summary>
4634 public class VariableDeclaration {
4635         public string identifier;
4636         public object expression_or_array_initializer;
4637         public Location Location;
4638         public Attributes OptAttributes;
4639         public string DocComment;
4640
4641         public VariableDeclaration (string id, object eoai, Location l, Attributes opt_attrs)
4642         {
4643                 this.identifier = id;
4644                 this.expression_or_array_initializer = eoai;
4645                 this.Location = l;
4646                 this.OptAttributes = opt_attrs;
4647         }
4648
4649         public VariableDeclaration (string id, object eoai, Location l) : this (id, eoai, l, null)
4650         {
4651         }
4652 }
4653
4654 /// <summary>
4655 ///  Used to pass around interface property information
4656 /// </summary>
4657 public class InterfaceAccessorInfo {
4658
4659         public readonly Accessor Get, Set;
4660
4661         public InterfaceAccessorInfo (bool has_get, bool has_set,
4662                                       Attributes get_attrs, Attributes set_attrs, int get_mod, int set_mod, Location get_loc, Location set_loc)
4663         {
4664                 if (get_mod != 0)
4665                         Report.Error (275, get_loc, "Accessibility modifiers can not be used on accessors in interfaces");
4666                 if (set_mod != 0)
4667                         Report.Error (275, set_loc, "Accessibility modifiers can not be used on accessors in interfaces");
4668                         
4669                 if (has_get)
4670                         Get = new Accessor (null, 0, get_attrs, get_loc);
4671                 if (has_set)
4672                         Set = new Accessor (null, 0, set_attrs, set_loc);
4673         }
4674
4675 }
4676
4677
4678 // <summary>
4679 //   A class used to hold info about an indexer declarator
4680 // </summary>
4681 public class IndexerDeclaration {
4682         public Expression type;
4683         public MemberName interface_type;
4684         public Parameters param_list;
4685
4686         public IndexerDeclaration (Expression type, MemberName interface_type,
4687                                    Parameters param_list)
4688         {
4689                 this.type = type;
4690                 this.interface_type = interface_type;
4691                 this.param_list = param_list;
4692         }
4693 }
4694
4695 //
4696 // We use this when we do not have an object in advance that is an IIteratorContainer
4697 //
4698 public class SimpleIteratorContainer : IIteratorContainer {
4699         public bool Yields;
4700
4701         public static SimpleIteratorContainer Simple = new SimpleIteratorContainer ();
4702
4703         //
4704         // Reset and return
4705         //
4706         public static SimpleIteratorContainer GetSimple () { 
4707                 Simple.Yields = false;
4708                 return Simple;
4709         }
4710
4711         public void SetYields () { Yields = true; } 
4712 }
4713
4714 // <summary>
4715 //  A class used to hold info about an operator declarator
4716 // </summary>
4717 public class OperatorDeclaration {
4718         public Operator.OpType optype;
4719         public Expression ret_type, arg1type, arg2type;
4720         public string arg1name, arg2name;
4721         public Location location;
4722
4723         public OperatorDeclaration (Operator.OpType op, Expression ret_type, 
4724                                     Expression arg1type, string arg1name,
4725                                     Expression arg2type, string arg2name, Location location)
4726         {
4727                 optype = op;
4728                 this.ret_type = ret_type;
4729                 this.arg1type = arg1type;
4730                 this.arg1name = arg1name;
4731                 this.arg2type = arg2type;
4732                 this.arg2name = arg2name;
4733                 this.location = location;
4734         }
4735
4736 }
4737
4738 void Error_ExpectingTypeName (Location l, Expression expr)
4739 {
4740         if (expr is Invocation){
4741                 Report.Error (1002, l, "; expected");
4742         } else {
4743                 Report.Error (-1, l, "Invalid Type definition");
4744         }
4745 }
4746
4747 // <summary>
4748 //   Given the @class_name name, it creates a fully qualified name
4749 //   based on the containing declaration space
4750 // </summary>
4751 MemberName
4752 MakeName (MemberName class_name)
4753 {
4754         string ns = current_namespace.FullName;
4755
4756         if (current_container.Name == ""){
4757                 if (ns != "")
4758                         return new MemberName (new MemberName (ns), class_name);
4759                 else
4760                         return class_name;
4761         } else {
4762                 return new MemberName (current_container.MemberName, class_name);
4763         }
4764 }
4765
4766 Block declare_local_variables (Expression type, ArrayList variable_declarators, Location loc)
4767 {
4768         Block implicit_block;
4769         ArrayList inits = null;
4770
4771         //
4772         // We use the `Used' property to check whether statements
4773         // have been added to the current block.  If so, we need
4774         // to create another block to contain the new declaration
4775         // otherwise, as an optimization, we use the same block to
4776         // add the declaration.
4777         //
4778         // FIXME: A further optimization is to check if the statements
4779         // that were added were added as part of the initialization
4780         // below.  In which case, no other statements have been executed
4781         // and we might be able to reduce the number of blocks for
4782         // situations like this:
4783         //
4784         // int j = 1;  int k = j + 1;
4785         //
4786         if (current_block.Used)
4787                 implicit_block = new Block (current_block, Block.Flags.Implicit, loc, Location.Null);
4788         else
4789                 implicit_block = current_block;
4790
4791         foreach (VariableDeclaration decl in variable_declarators){
4792
4793                 if (implicit_block.AddVariable (type, decl.identifier, current_local_parameters, decl.Location) != null) {
4794                         if (decl.expression_or_array_initializer != null){
4795                                 if (inits == null)
4796                                         inits = new ArrayList (4);
4797                                 inits.Add (decl);
4798                         }
4799                 }
4800         }
4801
4802         if (inits == null)
4803                 return implicit_block;
4804
4805         foreach (VariableDeclaration decl in inits){
4806                 Assign assign;
4807                 Expression expr;
4808                 
4809                 if (decl.expression_or_array_initializer is Expression){
4810                         expr = (Expression) decl.expression_or_array_initializer;
4811
4812                 } else {
4813                         ArrayList init = (ArrayList) decl.expression_or_array_initializer;
4814                         
4815                         expr = new ArrayCreation (type, "", init, decl.Location);
4816                 }
4817
4818                 LocalVariableReference var;
4819                 var = new LocalVariableReference (implicit_block, decl.identifier, loc);
4820
4821                 assign = new Assign (var, expr, decl.Location);
4822
4823                 implicit_block.AddStatement (new StatementExpression (assign, lexer.Location));
4824         }
4825         
4826         return implicit_block;
4827 }
4828
4829 Block declare_local_constants (Expression type, ArrayList declarators)
4830 {
4831         Block implicit_block;
4832
4833         if (current_block.Used)
4834                 implicit_block = new Block (current_block, Block.Flags.Implicit);
4835         else
4836                 implicit_block = current_block;
4837
4838         foreach (VariableDeclaration decl in declarators){
4839                 implicit_block.AddConstant (type, decl.identifier, (Expression) decl.expression_or_array_initializer,
4840                                                   current_local_parameters, decl.Location);
4841         }
4842         
4843         return implicit_block;
4844 }
4845
4846 void CheckAttributeTarget (string a)
4847 {
4848         switch (a) {
4849
4850         case "assembly" : case "module" : case "field" : case "method" : case "param" : case "property" : case "type" :
4851                 return;
4852                 
4853         default :
4854                 Location l = lexer.Location;
4855                 Report.Error (658, l, "`" + a + "' is an invalid attribute target");
4856                 break;
4857         }
4858
4859 }
4860
4861 void CheckUnaryOperator (Operator.OpType op)
4862 {
4863         switch (op) {
4864                 
4865         case Operator.OpType.LogicalNot: 
4866         case Operator.OpType.OnesComplement: 
4867         case Operator.OpType.Increment:
4868         case Operator.OpType.Decrement:
4869         case Operator.OpType.True: 
4870         case Operator.OpType.False: 
4871         case Operator.OpType.Addition: 
4872         case Operator.OpType.Subtraction:
4873                 
4874                 break;
4875                 
4876         default :
4877                 Location l = lexer.Location;
4878                 Report.Error (1019, l, "Overloadable unary operator expected"); 
4879                 break;
4880                 
4881         }
4882 }
4883
4884 void CheckBinaryOperator (Operator.OpType op)
4885 {
4886         switch (op) {
4887                 
4888         case Operator.OpType.Addition: 
4889         case Operator.OpType.Subtraction: 
4890         case Operator.OpType.Multiply:
4891         case Operator.OpType.Division:
4892         case Operator.OpType.Modulus: 
4893         case Operator.OpType.BitwiseAnd: 
4894         case Operator.OpType.BitwiseOr:
4895         case Operator.OpType.ExclusiveOr: 
4896         case Operator.OpType.LeftShift: 
4897         case Operator.OpType.RightShift:
4898         case Operator.OpType.Equality: 
4899         case Operator.OpType.Inequality:
4900         case Operator.OpType.GreaterThan: 
4901         case Operator.OpType.LessThan: 
4902         case Operator.OpType.GreaterThanOrEqual:
4903         case Operator.OpType.LessThanOrEqual:
4904                 break;
4905                 
4906         default :
4907                 Location l = lexer.Location;
4908                 Report.Error (1020, l, "Overloadable binary operator expected");
4909                 break;
4910         }
4911         
4912 }
4913
4914 void syntax_error (Location l, string msg)
4915 {
4916         Report.Error (1003, l, "Syntax error, " + msg);
4917 }
4918
4919 void output (string s)
4920 {
4921         Console.WriteLine (s);
4922 }
4923
4924 void note (string s)
4925 {
4926         // Used to put annotations
4927 }
4928
4929 Tokenizer lexer;
4930
4931 public Tokenizer Lexer {
4932         get {
4933                 return lexer;
4934         }
4935 }                  
4936
4937 public CSharpParser (SeekableStreamReader reader, SourceFile file, ArrayList defines)
4938 {
4939         current_namespace = new NamespaceEntry (null, file, null, Location.Null);
4940         this.name = file.Name;
4941         this.file = file;
4942         current_container = RootContext.Tree.Types;
4943         current_container.NamespaceEntry = current_namespace;
4944         oob_stack = new Stack ();
4945         switch_stack = new Stack ();
4946
4947         lexer = new Tokenizer (reader, file, defines);
4948 }
4949
4950 public void parse ()
4951 {
4952         try {
4953                 if (yacc_verbose_flag > 1)
4954                         yyparse (lexer, new yydebug.yyDebugSimple ());
4955                 else
4956                         yyparse (lexer);
4957                 Tokenizer tokenizer = lexer as Tokenizer;
4958                 tokenizer.cleanup ();           
4959         } catch (Exception e){
4960                 //
4961                 // Removed for production use, use parser verbose to get the output.
4962                 //
4963                 // Console.WriteLine (e);
4964                 Report.Error (-25, lexer.Location, "Parsing error");
4965                 if (yacc_verbose_flag > 0)
4966                         Console.WriteLine (e);
4967         }
4968 }
4969
4970 void CheckToken (int error, int yyToken, string msg)
4971 {
4972         if (yyToken >= Token.FIRST_KEYWORD && yyToken <= Token.LAST_KEYWORD){
4973                 Report.Error (error, lexer.Location, String.Format ("{0}: `{1}' is a keyword", msg, yyNames [yyToken].ToLower ()));
4974                 return;
4975         }               
4976         Report.Error (error, lexer.Location, msg);
4977 }
4978
4979 void CheckIdentifierToken (int yyToken)
4980 {
4981         CheckToken (1041, yyToken, "Identifier expected");
4982 }
4983
4984 string ConsumeStoredComment ()
4985 {
4986         string s = tmpComment;
4987         tmpComment = null;
4988         Lexer.doc_state = XmlCommentState.Allowed;
4989         return s;
4990 }
4991
4992 /* end end end */
4993 }