// created by jay 0.7 (c) 1998 Axel.Schreiner@informatik.uni-osnabrueck.de #line 2 "cs-parser.jay" // // cs-parser.jay: The Parser for the C# compiler // // Authors: Miguel de Icaza (miguel@gnome.org) // Ravi Pratap (ravi@ximian.com) // Marek Safar (marek.safar@gmail.com) // // Dual Licensed under the terms of the GNU GPL and the MIT X11 license // // (C) 2001 Ximian, Inc (http://www.ximian.com) // (C) 2004-2011 Novell, Inc // Copyright 2011 Xamarin Inc. // // TODO: // (1) Figure out why error productions dont work. `type-declaration' is a // great spot to put an `error' because you can reproduce it with this input: // "public X { }" // using System.Text; using System.IO; using System; using System.Collections.Generic; namespace Mono.CSharp { /// /// The C# Parser /// public class CSharpParser { [Flags] enum ParameterModifierType { Ref = 1 << 1, Out = 1 << 2, This = 1 << 3, Params = 1 << 4, Arglist = 1 << 5, DefaultValue = 1 << 6, All = Ref | Out | This | Params | Arglist | DefaultValue } static readonly object ModifierNone = 0; NamespaceContainer current_namespace; TypeContainer current_container; DeclSpace current_class; PropertyBase current_property; EventProperty current_event; EventField current_event_field; FieldBase current_field; /// /// Current block is used to add statements as we find /// them. /// Block current_block; BlockVariableDeclaration current_variable; Delegate current_delegate; AnonymousMethodExpression current_anonymous_method; /// /// This is used by the unary_expression code to resolve /// a name against a parameter. /// // FIXME: This is very ugly and it's very hard to reset it correctly // on all places, especially when some parameters are autogenerated. ParametersCompiled current_local_parameters; bool parsing_anonymous_method; bool async_block; /// /// An out-of-band stack. /// static Stack oob_stack; /// /// Controls the verbosity of the errors produced by the parser /// static public int yacc_verbose_flag; /// /// Used by the interactive shell, flags whether EOF was reached /// and an error was produced /// public bool UnexpectedEOF; /// /// The current file. /// readonly CompilationSourceFile file; /// /// Temporary Xml documentation cache. /// For enum types, we need one more temporary store. /// string tmpComment; string enumTypeComment; /// Current attribute target string current_attr_target; ParameterModifierType valid_param_mod; bool default_parameter_used; /// When using the interactive parser, this holds the /// resulting expression public Class InteractiveResult; // // Keeps track of global data changes to undo on parser error // public Undo undo; Stack linq_clause_blocks; ModuleContainer module; readonly CompilerContext compiler; readonly LanguageVersion lang_version; readonly bool doc_support; readonly CompilerSettings settings; readonly Report report; // // Instead of allocating carrier array everytime we // share the bucket for very common constructs which can never // be recursive // static List parameters_bucket = new List (6); // // Full AST support members // LocationsBag lbag; UsingsBag ubag; List> mod_locations; Location parameterModifierLocation, savedLocation, savedOpenLocation, savedCloseLocation; Location savedAttrParenOpenLocation, savedAttrParenCloseLocation, savedOperatorLocation; Stack> locationListStack = new Stack> (); // used for type parameters List attributeCommas = new List (); List attributeArgumentCommas = new List (); List parameterListCommas = new List (); List enumCommas = new List (); object lastYYVal; // Can be used for code completion to get the last valid expression before an error. // needs a hack in yyparse to make it work add // lastYYVal = yyVal; // after the big switch/case (somewhere around line 3915) public object LastYYVal { get { return lastYYVal; } } #line default /** error output stream. It should be changeable. */ public System.IO.TextWriter ErrorOutput = System.Console.Out; /** simplified error message. @see yyerror */ public void yyerror (string message) { yyerror(message, null); } /* An EOF token */ public int eof_token; /** (syntax) error message. Can be overwritten to control message format. @param message text to be displayed. @param expected vector of acceptable tokens, if available. */ public void yyerror (string message, string[] expected) { if ((yacc_verbose_flag > 0) && (expected != null) && (expected.Length > 0)) { ErrorOutput.Write (message+", expecting"); for (int n = 0; n < expected.Length; ++ n) ErrorOutput.Write (" "+expected[n]); ErrorOutput.WriteLine (); } else ErrorOutput.WriteLine (message); } /** debugging support, requires the package jay.yydebug. Set to null to suppress debugging messages. */ //t internal yydebug.yyDebug debug; protected const int yyFinal = 7; //t // Put this array into a separate class so it is only initialized if debugging is actually used //t // Use MarshalByRefObject to disable inlining //t class YYRules : MarshalByRefObject { //t public static readonly string [] yyRule = { //t "$accept : compilation_unit", //t "compilation_unit : outer_declaration opt_EOF", //t "$$1 :", //t "compilation_unit : interactive_parsing $$1 opt_EOF", //t "compilation_unit : documentation_parsing", //t "outer_declaration : opt_extern_alias_directives opt_using_directives", //t "outer_declaration : opt_extern_alias_directives opt_using_directives namespace_or_type_declarations opt_attributes", //t "outer_declaration : opt_extern_alias_directives opt_using_directives attribute_sections", //t "outer_declaration : error", //t "opt_EOF :", //t "opt_EOF : EOF", //t "extern_alias_directives : extern_alias_directive", //t "extern_alias_directives : extern_alias_directives extern_alias_directive", //t "extern_alias_directive : EXTERN_ALIAS IDENTIFIER IDENTIFIER SEMICOLON", //t "extern_alias_directive : EXTERN_ALIAS error", //t "using_directives : using_directive", //t "using_directives : using_directives using_directive", //t "using_directive : using_alias_directive", //t "using_directive : using_namespace_directive", //t "using_alias_directive : USING IDENTIFIER ASSIGN namespace_or_type_name SEMICOLON", //t "using_alias_directive : USING error", //t "using_namespace_directive : USING namespace_name SEMICOLON", //t "$$2 :", //t "$$3 :", //t "namespace_declaration : opt_attributes NAMESPACE qualified_identifier $$2 OPEN_BRACE $$3 opt_extern_alias_directives opt_using_directives opt_namespace_or_type_declarations CLOSE_BRACE opt_semicolon", //t "qualified_identifier : IDENTIFIER", //t "qualified_identifier : qualified_identifier DOT IDENTIFIER", //t "qualified_identifier : error", //t "opt_semicolon :", //t "opt_semicolon : SEMICOLON", //t "opt_comma :", //t "opt_comma : COMMA", //t "namespace_name : namespace_or_type_name", //t "opt_using_directives :", //t "opt_using_directives : using_directives", //t "opt_extern_alias_directives :", //t "opt_extern_alias_directives : extern_alias_directives", //t "opt_namespace_or_type_declarations :", //t "opt_namespace_or_type_declarations : namespace_or_type_declarations", //t "namespace_or_type_declarations : namespace_or_type_declaration", //t "namespace_or_type_declarations : namespace_or_type_declarations namespace_or_type_declaration", //t "namespace_or_type_declaration : type_declaration", //t "namespace_or_type_declaration : namespace_declaration", //t "type_declaration : class_declaration", //t "type_declaration : struct_declaration", //t "type_declaration : interface_declaration", //t "type_declaration : enum_declaration", //t "type_declaration : delegate_declaration", //t "opt_attributes :", //t "opt_attributes : attribute_sections", //t "attribute_sections : attribute_section", //t "attribute_sections : attribute_sections attribute_section", //t "$$4 :", //t "attribute_section : OPEN_BRACKET $$4 attribute_section_cont", //t "$$5 :", //t "attribute_section_cont : attribute_target COLON $$5 attribute_list opt_comma CLOSE_BRACKET", //t "attribute_section_cont : attribute_list opt_comma CLOSE_BRACKET", //t "attribute_target : IDENTIFIER", //t "attribute_target : EVENT", //t "attribute_target : RETURN", //t "attribute_target : error", //t "attribute_list : attribute", //t "attribute_list : attribute_list COMMA attribute", //t "$$6 :", //t "attribute : attribute_name $$6 opt_attribute_arguments", //t "attribute_name : namespace_or_type_name", //t "opt_attribute_arguments :", //t "opt_attribute_arguments : OPEN_PARENS attribute_arguments CLOSE_PARENS", //t "attribute_arguments :", //t "attribute_arguments : positional_or_named_argument", //t "attribute_arguments : named_attribute_argument", //t "attribute_arguments : attribute_arguments COMMA positional_or_named_argument", //t "attribute_arguments : attribute_arguments COMMA named_attribute_argument", //t "positional_or_named_argument : expression", //t "positional_or_named_argument : named_argument", //t "$$7 :", //t "named_attribute_argument : IDENTIFIER ASSIGN $$7 expression", //t "named_argument : identifier_inside_body COLON opt_named_modifier expression", //t "opt_named_modifier :", //t "opt_named_modifier : REF", //t "opt_named_modifier : OUT", //t "opt_class_member_declarations :", //t "opt_class_member_declarations : class_member_declarations", //t "class_member_declarations : class_member_declaration", //t "class_member_declarations : class_member_declarations class_member_declaration", //t "class_member_declaration : constant_declaration", //t "class_member_declaration : field_declaration", //t "class_member_declaration : method_declaration", //t "class_member_declaration : property_declaration", //t "class_member_declaration : event_declaration", //t "class_member_declaration : indexer_declaration", //t "class_member_declaration : operator_declaration", //t "class_member_declaration : constructor_declaration", //t "class_member_declaration : destructor_declaration", //t "class_member_declaration : type_declaration", //t "class_member_declaration : error", //t "$$8 :", //t "$$9 :", //t "$$10 :", //t "$$11 :", //t "$$12 :", //t "struct_declaration : opt_attributes opt_modifiers opt_partial STRUCT $$8 type_declaration_name $$9 opt_class_base opt_type_parameter_constraints_clauses $$10 OPEN_BRACE $$11 opt_class_member_declarations CLOSE_BRACE $$12 opt_semicolon", //t "struct_declaration : opt_attributes opt_modifiers opt_partial STRUCT error", //t "$$13 :", //t "constant_declaration : opt_attributes opt_modifiers CONST type IDENTIFIER $$13 constant_initializer opt_constant_declarators SEMICOLON", //t "opt_constant_declarators :", //t "opt_constant_declarators : constant_declarators", //t "constant_declarators : constant_declarator", //t "constant_declarators : constant_declarators constant_declarator", //t "constant_declarator : COMMA IDENTIFIER constant_initializer", //t "$$14 :", //t "constant_initializer : ASSIGN $$14 constant_initializer_expr", //t "constant_initializer : error", //t "constant_initializer_expr : constant_expression", //t "constant_initializer_expr : array_initializer", //t "$$15 :", //t "field_declaration : opt_attributes opt_modifiers member_type IDENTIFIER $$15 opt_field_initializer opt_field_declarators SEMICOLON", //t "$$16 :", //t "field_declaration : opt_attributes opt_modifiers FIXED simple_type IDENTIFIER $$16 fixed_field_size opt_fixed_field_declarators SEMICOLON", //t "field_declaration : opt_attributes opt_modifiers FIXED simple_type error SEMICOLON", //t "opt_field_initializer :", //t "$$17 :", //t "opt_field_initializer : ASSIGN $$17 variable_initializer", //t "opt_field_declarators :", //t "opt_field_declarators : field_declarators", //t "field_declarators : field_declarator", //t "field_declarators : field_declarators field_declarator", //t "field_declarator : COMMA IDENTIFIER", //t "$$18 :", //t "field_declarator : COMMA IDENTIFIER ASSIGN $$18 variable_initializer", //t "opt_fixed_field_declarators :", //t "opt_fixed_field_declarators : fixed_field_declarators", //t "fixed_field_declarators : fixed_field_declarator", //t "fixed_field_declarators : fixed_field_declarators fixed_field_declarator", //t "fixed_field_declarator : COMMA IDENTIFIER fixed_field_size", //t "$$19 :", //t "fixed_field_size : OPEN_BRACKET $$19 expression CLOSE_BRACKET", //t "fixed_field_size : OPEN_BRACKET error", //t "variable_initializer : expression", //t "variable_initializer : array_initializer", //t "variable_initializer : error", //t "$$20 :", //t "method_declaration : method_header $$20 method_body", //t "$$21 :", //t "$$22 :", //t "method_header : opt_attributes opt_modifiers member_type method_declaration_name OPEN_PARENS $$21 opt_formal_parameter_list CLOSE_PARENS $$22 opt_type_parameter_constraints_clauses", //t "$$23 :", //t "$$24 :", //t "$$25 :", //t "method_header : opt_attributes opt_modifiers PARTIAL VOID $$23 method_declaration_name OPEN_PARENS $$24 opt_formal_parameter_list CLOSE_PARENS $$25 opt_type_parameter_constraints_clauses", //t "method_header : opt_attributes opt_modifiers member_type modifiers method_declaration_name OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS", //t "method_body : block", //t "method_body : SEMICOLON", //t "opt_formal_parameter_list :", //t "opt_formal_parameter_list : formal_parameter_list", //t "formal_parameter_list : fixed_parameters", //t "formal_parameter_list : fixed_parameters COMMA parameter_array", //t "formal_parameter_list : fixed_parameters COMMA arglist_modifier", //t "formal_parameter_list : parameter_array COMMA error", //t "formal_parameter_list : fixed_parameters COMMA parameter_array COMMA error", //t "formal_parameter_list : arglist_modifier COMMA error", //t "formal_parameter_list : fixed_parameters COMMA ARGLIST COMMA error", //t "formal_parameter_list : parameter_array", //t "formal_parameter_list : arglist_modifier", //t "formal_parameter_list : error", //t "fixed_parameters : fixed_parameter", //t "fixed_parameters : fixed_parameters COMMA fixed_parameter", //t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type IDENTIFIER", //t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type IDENTIFIER OPEN_BRACKET CLOSE_BRACKET", //t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type error", //t "$$26 :", //t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type IDENTIFIER ASSIGN $$26 constant_expression", //t "opt_parameter_modifier :", //t "opt_parameter_modifier : parameter_modifiers", //t "parameter_modifiers : parameter_modifier", //t "parameter_modifiers : parameter_modifiers parameter_modifier", //t "parameter_modifier : REF", //t "parameter_modifier : OUT", //t "parameter_modifier : THIS", //t "parameter_array : opt_attributes params_modifier type IDENTIFIER", //t "parameter_array : opt_attributes params_modifier type IDENTIFIER ASSIGN constant_expression", //t "parameter_array : opt_attributes params_modifier type error", //t "params_modifier : PARAMS", //t "params_modifier : PARAMS parameter_modifier", //t "params_modifier : PARAMS params_modifier", //t "arglist_modifier : ARGLIST", //t "$$27 :", //t "$$28 :", //t "$$29 :", //t "property_declaration : opt_attributes opt_modifiers member_type member_declaration_name $$27 OPEN_BRACE $$28 accessor_declarations $$29 CLOSE_BRACE", //t "$$30 :", //t "$$31 :", //t "$$32 :", //t "indexer_declaration : opt_attributes opt_modifiers member_type indexer_declaration_name OPEN_BRACKET $$30 opt_formal_parameter_list CLOSE_BRACKET OPEN_BRACE $$31 accessor_declarations $$32 CLOSE_BRACE", //t "accessor_declarations : get_accessor_declaration", //t "accessor_declarations : get_accessor_declaration accessor_declarations", //t "accessor_declarations : set_accessor_declaration", //t "accessor_declarations : set_accessor_declaration accessor_declarations", //t "accessor_declarations : error", //t "$$33 :", //t "get_accessor_declaration : opt_attributes opt_modifiers GET $$33 accessor_body", //t "$$34 :", //t "set_accessor_declaration : opt_attributes opt_modifiers SET $$34 accessor_body", //t "accessor_body : block", //t "accessor_body : SEMICOLON", //t "accessor_body : error", //t "$$35 :", //t "$$36 :", //t "$$37 :", //t "$$38 :", //t "interface_declaration : opt_attributes opt_modifiers opt_partial INTERFACE $$35 type_declaration_name $$36 opt_class_base opt_type_parameter_constraints_clauses $$37 OPEN_BRACE opt_interface_member_declarations CLOSE_BRACE $$38 opt_semicolon", //t "interface_declaration : opt_attributes opt_modifiers opt_partial INTERFACE error", //t "opt_interface_member_declarations :", //t "opt_interface_member_declarations : interface_member_declarations", //t "interface_member_declarations : interface_member_declaration", //t "interface_member_declarations : interface_member_declarations interface_member_declaration", //t "interface_member_declaration : constant_declaration", //t "interface_member_declaration : field_declaration", //t "interface_member_declaration : method_declaration", //t "interface_member_declaration : property_declaration", //t "interface_member_declaration : event_declaration", //t "interface_member_declaration : indexer_declaration", //t "interface_member_declaration : operator_declaration", //t "interface_member_declaration : constructor_declaration", //t "interface_member_declaration : type_declaration", //t "$$39 :", //t "operator_declaration : opt_attributes opt_modifiers operator_declarator $$39 operator_body", //t "operator_body : block", //t "operator_body : SEMICOLON", //t "operator_type : type_expression_or_array", //t "operator_type : VOID", //t "$$40 :", //t "operator_declarator : operator_type OPERATOR overloadable_operator OPEN_PARENS $$40 opt_formal_parameter_list CLOSE_PARENS", //t "operator_declarator : conversion_operator_declarator", //t "overloadable_operator : BANG", //t "overloadable_operator : TILDE", //t "overloadable_operator : OP_INC", //t "overloadable_operator : OP_DEC", //t "overloadable_operator : TRUE", //t "overloadable_operator : FALSE", //t "overloadable_operator : PLUS", //t "overloadable_operator : MINUS", //t "overloadable_operator : STAR", //t "overloadable_operator : DIV", //t "overloadable_operator : PERCENT", //t "overloadable_operator : BITWISE_AND", //t "overloadable_operator : BITWISE_OR", //t "overloadable_operator : CARRET", //t "overloadable_operator : OP_SHIFT_LEFT", //t "overloadable_operator : OP_SHIFT_RIGHT", //t "overloadable_operator : OP_EQ", //t "overloadable_operator : OP_NE", //t "overloadable_operator : OP_GT", //t "overloadable_operator : OP_LT", //t "overloadable_operator : OP_GE", //t "overloadable_operator : OP_LE", //t "$$41 :", //t "conversion_operator_declarator : IMPLICIT OPERATOR type OPEN_PARENS $$41 opt_formal_parameter_list CLOSE_PARENS", //t "$$42 :", //t "conversion_operator_declarator : EXPLICIT OPERATOR type OPEN_PARENS $$42 opt_formal_parameter_list CLOSE_PARENS", //t "conversion_operator_declarator : IMPLICIT error", //t "conversion_operator_declarator : EXPLICIT error", //t "constructor_declaration : constructor_declarator constructor_body", //t "$$43 :", //t "$$44 :", //t "constructor_declarator : opt_attributes opt_modifiers IDENTIFIER $$43 OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS $$44 opt_constructor_initializer", //t "constructor_body : block_prepared", //t "constructor_body : SEMICOLON", //t "opt_constructor_initializer :", //t "opt_constructor_initializer : constructor_initializer", //t "$$45 :", //t "constructor_initializer : COLON BASE OPEN_PARENS $$45 opt_argument_list CLOSE_PARENS", //t "$$46 :", //t "constructor_initializer : COLON THIS OPEN_PARENS $$46 opt_argument_list CLOSE_PARENS", //t "constructor_initializer : error", //t "$$47 :", //t "destructor_declaration : opt_attributes opt_modifiers TILDE $$47 IDENTIFIER OPEN_PARENS CLOSE_PARENS method_body", //t "$$48 :", //t "event_declaration : opt_attributes opt_modifiers EVENT type member_declaration_name $$48 opt_event_initializer opt_event_declarators SEMICOLON", //t "$$49 :", //t "$$50 :", //t "event_declaration : opt_attributes opt_modifiers EVENT type member_declaration_name OPEN_BRACE $$49 event_accessor_declarations $$50 CLOSE_BRACE", //t "opt_event_initializer :", //t "$$51 :", //t "opt_event_initializer : ASSIGN $$51 event_variable_initializer", //t "opt_event_declarators :", //t "opt_event_declarators : event_declarators", //t "event_declarators : event_declarator", //t "event_declarators : event_declarators event_declarator", //t "event_declarator : COMMA IDENTIFIER", //t "$$52 :", //t "event_declarator : COMMA IDENTIFIER ASSIGN $$52 event_variable_initializer", //t "$$53 :", //t "event_variable_initializer : $$53 variable_initializer", //t "event_accessor_declarations : add_accessor_declaration remove_accessor_declaration", //t "event_accessor_declarations : remove_accessor_declaration add_accessor_declaration", //t "event_accessor_declarations : add_accessor_declaration", //t "event_accessor_declarations : remove_accessor_declaration", //t "event_accessor_declarations : error", //t "$$54 :", //t "add_accessor_declaration : opt_attributes opt_modifiers ADD $$54 event_accessor_block", //t "$$55 :", //t "remove_accessor_declaration : opt_attributes opt_modifiers REMOVE $$55 event_accessor_block", //t "event_accessor_block : opt_semicolon", //t "event_accessor_block : block", //t "$$56 :", //t "$$57 :", //t "$$58 :", //t "$$59 :", //t "enum_declaration : opt_attributes opt_modifiers ENUM $$56 type_declaration_name opt_enum_base $$57 OPEN_BRACE $$58 opt_enum_member_declarations $$59 CLOSE_BRACE opt_semicolon", //t "opt_enum_base :", //t "opt_enum_base : COLON type", //t "opt_enum_base : COLON error", //t "opt_enum_member_declarations :", //t "opt_enum_member_declarations : enum_member_declarations", //t "opt_enum_member_declarations : enum_member_declarations COMMA", //t "enum_member_declarations : enum_member_declaration", //t "enum_member_declarations : enum_member_declarations COMMA enum_member_declaration", //t "enum_member_declaration : opt_attributes IDENTIFIER", //t "$$60 :", //t "enum_member_declaration : opt_attributes IDENTIFIER $$60 ASSIGN constant_expression", //t "$$61 :", //t "$$62 :", //t "$$63 :", //t "delegate_declaration : opt_attributes opt_modifiers DELEGATE member_type type_declaration_name OPEN_PARENS $$61 opt_formal_parameter_list CLOSE_PARENS $$62 opt_type_parameter_constraints_clauses $$63 SEMICOLON", //t "opt_nullable :", //t "opt_nullable : INTERR_NULLABLE", //t "namespace_or_type_name : member_name", //t "namespace_or_type_name : qualified_alias_member IDENTIFIER opt_type_argument_list", //t "member_name : type_name", //t "member_name : namespace_or_type_name DOT IDENTIFIER opt_type_argument_list", //t "type_name : IDENTIFIER opt_type_argument_list", //t "opt_type_argument_list :", //t "opt_type_argument_list : OP_GENERICS_LT type_arguments OP_GENERICS_GT", //t "opt_type_argument_list : OP_GENERICS_LT error", //t "type_arguments : type", //t "type_arguments : type_arguments COMMA type", //t "$$64 :", //t "type_declaration_name : IDENTIFIER $$64 opt_type_parameter_list", //t "member_declaration_name : method_declaration_name", //t "method_declaration_name : type_declaration_name", //t "method_declaration_name : explicit_interface IDENTIFIER opt_type_parameter_list", //t "indexer_declaration_name : THIS", //t "indexer_declaration_name : explicit_interface THIS", //t "explicit_interface : IDENTIFIER opt_type_argument_list DOT", //t "explicit_interface : qualified_alias_member IDENTIFIER opt_type_argument_list DOT", //t "explicit_interface : explicit_interface IDENTIFIER opt_type_argument_list DOT", //t "opt_type_parameter_list :", //t "opt_type_parameter_list : OP_GENERICS_LT_DECL type_parameters OP_GENERICS_GT", //t "type_parameters : type_parameter", //t "type_parameters : type_parameters COMMA type_parameter", //t "type_parameter : opt_attributes opt_type_parameter_variance IDENTIFIER", //t "type_parameter : error", //t "type_and_void : type_expression_or_array", //t "type_and_void : VOID", //t "member_type : type_and_void", //t "type : type_expression_or_array", //t "type : VOID", //t "simple_type : type_expression", //t "simple_type : VOID", //t "parameter_type : type_expression_or_array", //t "parameter_type : VOID", //t "type_expression_or_array : type_expression", //t "type_expression_or_array : type_expression rank_specifiers", //t "type_expression : namespace_or_type_name opt_nullable", //t "type_expression : namespace_or_type_name pointer_stars", //t "type_expression : builtin_types opt_nullable", //t "type_expression : builtin_types pointer_stars", //t "type_expression : VOID pointer_stars", //t "type_list : base_type_name", //t "type_list : type_list COMMA base_type_name", //t "base_type_name : type", //t "base_type_name : error", //t "builtin_types : OBJECT", //t "builtin_types : STRING", //t "builtin_types : BOOL", //t "builtin_types : DECIMAL", //t "builtin_types : FLOAT", //t "builtin_types : DOUBLE", //t "builtin_types : integral_type", //t "integral_type : SBYTE", //t "integral_type : BYTE", //t "integral_type : SHORT", //t "integral_type : USHORT", //t "integral_type : INT", //t "integral_type : UINT", //t "integral_type : LONG", //t "integral_type : ULONG", //t "integral_type : CHAR", //t "primary_expression : primary_expression_or_type", //t "primary_expression : literal", //t "primary_expression : array_creation_expression", //t "primary_expression : parenthesized_expression", //t "primary_expression : default_value_expression", //t "primary_expression : invocation_expression", //t "primary_expression : element_access", //t "primary_expression : this_access", //t "primary_expression : base_access", //t "primary_expression : post_increment_expression", //t "primary_expression : post_decrement_expression", //t "primary_expression : object_or_delegate_creation_expression", //t "primary_expression : anonymous_type_expression", //t "primary_expression : typeof_expression", //t "primary_expression : sizeof_expression", //t "primary_expression : checked_expression", //t "primary_expression : unchecked_expression", //t "primary_expression : pointer_member_access", //t "primary_expression : anonymous_method_expression", //t "primary_expression : undocumented_expressions", //t "primary_expression_or_type : IDENTIFIER opt_type_argument_list", //t "primary_expression_or_type : IDENTIFIER GENERATE_COMPLETION", //t "primary_expression_or_type : member_access", //t "literal : boolean_literal", //t "literal : LITERAL", //t "literal : NULL", //t "boolean_literal : TRUE", //t "boolean_literal : FALSE", //t "open_parens_any : OPEN_PARENS", //t "open_parens_any : OPEN_PARENS_CAST", //t "close_parens : CLOSE_PARENS", //t "close_parens : COMPLETE_COMPLETION", //t "parenthesized_expression : OPEN_PARENS expression CLOSE_PARENS", //t "parenthesized_expression : OPEN_PARENS expression COMPLETE_COMPLETION", //t "member_access : primary_expression DOT IDENTIFIER opt_type_argument_list", //t "member_access : builtin_types DOT IDENTIFIER opt_type_argument_list", //t "member_access : BASE DOT IDENTIFIER opt_type_argument_list", //t "member_access : qualified_alias_member IDENTIFIER opt_type_argument_list", //t "member_access : primary_expression DOT GENERATE_COMPLETION", //t "member_access : primary_expression DOT IDENTIFIER GENERATE_COMPLETION", //t "member_access : builtin_types DOT GENERATE_COMPLETION", //t "member_access : builtin_types DOT IDENTIFIER GENERATE_COMPLETION", //t "invocation_expression : primary_expression open_parens_any opt_argument_list close_parens", //t "opt_object_or_collection_initializer :", //t "opt_object_or_collection_initializer : object_or_collection_initializer", //t "object_or_collection_initializer : OPEN_BRACE opt_member_initializer_list close_brace_or_complete_completion", //t "object_or_collection_initializer : OPEN_BRACE member_initializer_list COMMA CLOSE_BRACE", //t "opt_member_initializer_list :", //t "opt_member_initializer_list : member_initializer_list", //t "member_initializer_list : member_initializer", //t "member_initializer_list : member_initializer_list COMMA member_initializer", //t "member_initializer_list : member_initializer_list error", //t "member_initializer : IDENTIFIER ASSIGN initializer_value", //t "member_initializer : GENERATE_COMPLETION", //t "member_initializer : non_assignment_expression opt_COMPLETE_COMPLETION", //t "member_initializer : OPEN_BRACE expression_list CLOSE_BRACE", //t "member_initializer : OPEN_BRACE CLOSE_BRACE", //t "initializer_value : expression", //t "initializer_value : object_or_collection_initializer", //t "opt_argument_list :", //t "opt_argument_list : argument_list", //t "argument_list : argument_or_named_argument", //t "argument_list : argument_list COMMA argument", //t "argument_list : argument_list COMMA named_argument", //t "argument_list : argument_list COMMA", //t "argument_list : COMMA error", //t "argument : expression", //t "argument : non_simple_argument", //t "argument_or_named_argument : argument", //t "argument_or_named_argument : named_argument", //t "non_simple_argument : REF variable_reference", //t "non_simple_argument : OUT variable_reference", //t "non_simple_argument : ARGLIST OPEN_PARENS argument_list CLOSE_PARENS", //t "non_simple_argument : ARGLIST OPEN_PARENS CLOSE_PARENS", //t "variable_reference : expression", //t "element_access : primary_expression OPEN_BRACKET_EXPR expression_list_arguments CLOSE_BRACKET", //t "element_access : primary_expression OPEN_BRACKET_EXPR expression_list_arguments error", //t "element_access : primary_expression OPEN_BRACKET_EXPR error", //t "expression_list : expression", //t "expression_list : expression_list COMMA expression", //t "expression_list : expression_list error", //t "expression_list_arguments : expression_list_argument", //t "expression_list_arguments : expression_list_arguments COMMA expression_list_argument", //t "expression_list_argument : expression", //t "expression_list_argument : named_argument", //t "this_access : THIS", //t "base_access : BASE OPEN_BRACKET_EXPR expression_list_arguments CLOSE_BRACKET", //t "base_access : BASE OPEN_BRACKET error", //t "post_increment_expression : primary_expression OP_INC", //t "post_decrement_expression : primary_expression OP_DEC", //t "object_or_delegate_creation_expression : NEW new_expr_type open_parens_any opt_argument_list CLOSE_PARENS opt_object_or_collection_initializer", //t "object_or_delegate_creation_expression : NEW new_expr_type object_or_collection_initializer", //t "array_creation_expression : NEW new_expr_type OPEN_BRACKET_EXPR expression_list CLOSE_BRACKET opt_rank_specifier opt_array_initializer", //t "array_creation_expression : NEW new_expr_type rank_specifiers opt_array_initializer", //t "array_creation_expression : NEW rank_specifier array_initializer", //t "array_creation_expression : NEW new_expr_type OPEN_BRACKET CLOSE_BRACKET OPEN_BRACKET_EXPR error CLOSE_BRACKET", //t "array_creation_expression : NEW new_expr_type error", //t "$$65 :", //t "new_expr_type : $$65 simple_type", //t "anonymous_type_expression : NEW OPEN_BRACE anonymous_type_parameters_opt_comma CLOSE_BRACE", //t "anonymous_type_parameters_opt_comma : anonymous_type_parameters_opt", //t "anonymous_type_parameters_opt_comma : anonymous_type_parameters COMMA", //t "anonymous_type_parameters_opt :", //t "anonymous_type_parameters_opt : anonymous_type_parameters", //t "anonymous_type_parameters : anonymous_type_parameter", //t "anonymous_type_parameters : anonymous_type_parameters COMMA anonymous_type_parameter", //t "anonymous_type_parameter : IDENTIFIER ASSIGN variable_initializer", //t "anonymous_type_parameter : IDENTIFIER", //t "anonymous_type_parameter : member_access", //t "anonymous_type_parameter : error", //t "opt_rank_specifier :", //t "opt_rank_specifier : rank_specifiers", //t "rank_specifiers : rank_specifier", //t "rank_specifiers : rank_specifier rank_specifiers", //t "rank_specifier : OPEN_BRACKET CLOSE_BRACKET", //t "rank_specifier : OPEN_BRACKET dim_separators CLOSE_BRACKET", //t "dim_separators : COMMA", //t "dim_separators : dim_separators COMMA", //t "opt_array_initializer :", //t "opt_array_initializer : array_initializer", //t "array_initializer : OPEN_BRACE CLOSE_BRACE", //t "array_initializer : OPEN_BRACE variable_initializer_list opt_comma CLOSE_BRACE", //t "variable_initializer_list : variable_initializer", //t "variable_initializer_list : variable_initializer_list COMMA variable_initializer", //t "$$66 :", //t "typeof_expression : TYPEOF $$66 open_parens_any typeof_type_expression CLOSE_PARENS", //t "typeof_type_expression : type_and_void", //t "typeof_type_expression : unbound_type_name", //t "typeof_type_expression : error", //t "unbound_type_name : identifier_inside_body generic_dimension", //t "unbound_type_name : qualified_alias_member identifier_inside_body generic_dimension", //t "unbound_type_name : unbound_type_name DOT identifier_inside_body", //t "unbound_type_name : unbound_type_name DOT identifier_inside_body generic_dimension", //t "unbound_type_name : namespace_or_type_name DOT identifier_inside_body generic_dimension", //t "generic_dimension : GENERIC_DIMENSION", //t "qualified_alias_member : IDENTIFIER DOUBLE_COLON", //t "sizeof_expression : SIZEOF open_parens_any type CLOSE_PARENS", //t "checked_expression : CHECKED open_parens_any expression CLOSE_PARENS", //t "unchecked_expression : UNCHECKED open_parens_any expression CLOSE_PARENS", //t "pointer_member_access : primary_expression OP_PTR IDENTIFIER opt_type_argument_list", //t "$$67 :", //t "anonymous_method_expression : DELEGATE opt_anonymous_method_signature $$67 block", //t "$$68 :", //t "anonymous_method_expression : ASYNC DELEGATE opt_anonymous_method_signature $$68 block", //t "opt_anonymous_method_signature :", //t "opt_anonymous_method_signature : anonymous_method_signature", //t "$$69 :", //t "anonymous_method_signature : OPEN_PARENS $$69 opt_formal_parameter_list CLOSE_PARENS", //t "default_value_expression : DEFAULT open_parens_any type CLOSE_PARENS", //t "unary_expression : primary_expression", //t "unary_expression : BANG prefixed_unary_expression", //t "unary_expression : TILDE prefixed_unary_expression", //t "unary_expression : OPEN_PARENS_CAST type CLOSE_PARENS prefixed_unary_expression", //t "unary_expression : AWAIT prefixed_unary_expression", //t "prefixed_unary_expression : unary_expression", //t "prefixed_unary_expression : PLUS prefixed_unary_expression", //t "prefixed_unary_expression : MINUS prefixed_unary_expression", //t "prefixed_unary_expression : OP_INC prefixed_unary_expression", //t "prefixed_unary_expression : OP_DEC prefixed_unary_expression", //t "prefixed_unary_expression : STAR prefixed_unary_expression", //t "prefixed_unary_expression : BITWISE_AND prefixed_unary_expression", //t "multiplicative_expression : prefixed_unary_expression", //t "multiplicative_expression : multiplicative_expression STAR prefixed_unary_expression", //t "multiplicative_expression : multiplicative_expression DIV prefixed_unary_expression", //t "multiplicative_expression : multiplicative_expression PERCENT prefixed_unary_expression", //t "additive_expression : multiplicative_expression", //t "additive_expression : additive_expression PLUS multiplicative_expression", //t "additive_expression : additive_expression MINUS multiplicative_expression", //t "additive_expression : parenthesized_expression MINUS multiplicative_expression", //t "additive_expression : additive_expression AS type", //t "additive_expression : additive_expression IS type", //t "shift_expression : additive_expression", //t "shift_expression : shift_expression OP_SHIFT_LEFT additive_expression", //t "shift_expression : shift_expression OP_SHIFT_RIGHT additive_expression", //t "relational_expression : shift_expression", //t "relational_expression : relational_expression OP_LT shift_expression", //t "relational_expression : relational_expression OP_GT shift_expression", //t "relational_expression : relational_expression OP_LE shift_expression", //t "relational_expression : relational_expression OP_GE shift_expression", //t "equality_expression : relational_expression", //t "equality_expression : equality_expression OP_EQ relational_expression", //t "equality_expression : equality_expression OP_NE relational_expression", //t "and_expression : equality_expression", //t "and_expression : and_expression BITWISE_AND equality_expression", //t "exclusive_or_expression : and_expression", //t "exclusive_or_expression : exclusive_or_expression CARRET and_expression", //t "inclusive_or_expression : exclusive_or_expression", //t "inclusive_or_expression : inclusive_or_expression BITWISE_OR exclusive_or_expression", //t "conditional_and_expression : inclusive_or_expression", //t "conditional_and_expression : conditional_and_expression OP_AND inclusive_or_expression", //t "conditional_or_expression : conditional_and_expression", //t "conditional_or_expression : conditional_or_expression OP_OR conditional_and_expression", //t "null_coalescing_expression : conditional_or_expression", //t "null_coalescing_expression : conditional_or_expression OP_COALESCING null_coalescing_expression", //t "conditional_expression : null_coalescing_expression", //t "conditional_expression : null_coalescing_expression INTERR expression COLON expression", //t "assignment_expression : prefixed_unary_expression ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_MULT_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_DIV_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_MOD_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_ADD_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_SUB_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_SHIFT_LEFT_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_SHIFT_RIGHT_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_AND_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_OR_ASSIGN expression", //t "assignment_expression : prefixed_unary_expression OP_XOR_ASSIGN expression", //t "lambda_parameter_list : lambda_parameter", //t "lambda_parameter_list : lambda_parameter_list COMMA lambda_parameter", //t "lambda_parameter : parameter_modifier parameter_type identifier_inside_body", //t "lambda_parameter : parameter_type identifier_inside_body", //t "lambda_parameter : IDENTIFIER", //t "opt_lambda_parameter_list :", //t "opt_lambda_parameter_list : lambda_parameter_list", //t "lambda_expression_body : lambda_expression_body_simple", //t "lambda_expression_body : block", //t "$$70 :", //t "lambda_expression_body_simple : $$70 expression_or_error", //t "expression_or_error : expression", //t "expression_or_error : error", //t "$$71 :", //t "lambda_expression : IDENTIFIER ARROW $$71 lambda_expression_body", //t "$$72 :", //t "lambda_expression : ASYNC identifier_inside_body ARROW $$72 lambda_expression_body", //t "$$73 :", //t "$$74 :", //t "lambda_expression : OPEN_PARENS_LAMBDA $$73 opt_lambda_parameter_list CLOSE_PARENS ARROW $$74 lambda_expression_body", //t "$$75 :", //t "$$76 :", //t "lambda_expression : ASYNC OPEN_PARENS_LAMBDA $$75 opt_lambda_parameter_list CLOSE_PARENS ARROW $$76 lambda_expression_body", //t "expression : assignment_expression", //t "expression : non_assignment_expression", //t "non_assignment_expression : conditional_expression", //t "non_assignment_expression : lambda_expression", //t "non_assignment_expression : query_expression", //t "non_assignment_expression : ARGLIST", //t "undocumented_expressions : REFVALUE OPEN_PARENS non_assignment_expression COMMA type CLOSE_PARENS", //t "undocumented_expressions : REFTYPE open_parens_any expression CLOSE_PARENS", //t "undocumented_expressions : MAKEREF open_parens_any expression CLOSE_PARENS", //t "constant_expression : expression", //t "boolean_expression : expression", //t "$$77 :", //t "$$78 :", //t "$$79 :", //t "$$80 :", //t "class_declaration : opt_attributes opt_modifiers opt_partial CLASS $$77 type_declaration_name $$78 opt_class_base opt_type_parameter_constraints_clauses $$79 OPEN_BRACE opt_class_member_declarations CLOSE_BRACE $$80 opt_semicolon", //t "opt_partial :", //t "opt_partial : PARTIAL", //t "opt_modifiers :", //t "opt_modifiers : modifiers", //t "modifiers : modifier", //t "modifiers : modifiers modifier", //t "modifier : NEW", //t "modifier : PUBLIC", //t "modifier : PROTECTED", //t "modifier : INTERNAL", //t "modifier : PRIVATE", //t "modifier : ABSTRACT", //t "modifier : SEALED", //t "modifier : STATIC", //t "modifier : READONLY", //t "modifier : VIRTUAL", //t "modifier : OVERRIDE", //t "modifier : EXTERN", //t "modifier : VOLATILE", //t "modifier : UNSAFE", //t "modifier : ASYNC", //t "opt_class_base :", //t "opt_class_base : COLON type_list", //t "opt_type_parameter_constraints_clauses :", //t "opt_type_parameter_constraints_clauses : type_parameter_constraints_clauses", //t "opt_type_parameter_constraints_clauses : error", //t "type_parameter_constraints_clauses : type_parameter_constraints_clause", //t "type_parameter_constraints_clauses : type_parameter_constraints_clauses type_parameter_constraints_clause", //t "type_parameter_constraints_clause : WHERE IDENTIFIER COLON type_parameter_constraints", //t "type_parameter_constraints : type_parameter_constraint", //t "type_parameter_constraints : type_parameter_constraints COMMA type_parameter_constraint", //t "type_parameter_constraint : type", //t "type_parameter_constraint : NEW OPEN_PARENS CLOSE_PARENS", //t "type_parameter_constraint : CLASS", //t "type_parameter_constraint : STRUCT", //t "opt_type_parameter_variance :", //t "opt_type_parameter_variance : type_parameter_variance", //t "type_parameter_variance : OUT", //t "type_parameter_variance : IN", //t "$$81 :", //t "block : OPEN_BRACE $$81 opt_statement_list block_end", //t "block_end : CLOSE_BRACE", //t "block_end : COMPLETE_COMPLETION", //t "$$82 :", //t "block_prepared : OPEN_BRACE $$82 opt_statement_list CLOSE_BRACE", //t "opt_statement_list :", //t "opt_statement_list : statement_list", //t "statement_list : statement", //t "statement_list : statement_list statement", //t "statement : block_variable_declaration", //t "statement : valid_declaration_statement", //t "statement : labeled_statement", //t "statement : error", //t "interactive_statement_list : interactive_statement", //t "interactive_statement_list : interactive_statement_list interactive_statement", //t "interactive_statement : block_variable_declaration", //t "interactive_statement : interactive_valid_declaration_statement", //t "interactive_statement : labeled_statement", //t "valid_declaration_statement : block", //t "valid_declaration_statement : empty_statement", //t "valid_declaration_statement : expression_statement", //t "valid_declaration_statement : selection_statement", //t "valid_declaration_statement : iteration_statement", //t "valid_declaration_statement : jump_statement", //t "valid_declaration_statement : try_statement", //t "valid_declaration_statement : checked_statement", //t "valid_declaration_statement : unchecked_statement", //t "valid_declaration_statement : lock_statement", //t "valid_declaration_statement : using_statement", //t "valid_declaration_statement : unsafe_statement", //t "valid_declaration_statement : fixed_statement", //t "interactive_valid_declaration_statement : block", //t "interactive_valid_declaration_statement : empty_statement", //t "interactive_valid_declaration_statement : interactive_expression_statement", //t "interactive_valid_declaration_statement : selection_statement", //t "interactive_valid_declaration_statement : iteration_statement", //t "interactive_valid_declaration_statement : jump_statement", //t "interactive_valid_declaration_statement : try_statement", //t "interactive_valid_declaration_statement : checked_statement", //t "interactive_valid_declaration_statement : unchecked_statement", //t "interactive_valid_declaration_statement : lock_statement", //t "interactive_valid_declaration_statement : using_statement", //t "interactive_valid_declaration_statement : unsafe_statement", //t "interactive_valid_declaration_statement : fixed_statement", //t "embedded_statement : valid_declaration_statement", //t "embedded_statement : block_variable_declaration", //t "embedded_statement : labeled_statement", //t "embedded_statement : error", //t "empty_statement : SEMICOLON", //t "$$83 :", //t "labeled_statement : identifier_inside_body COLON $$83 statement", //t "variable_type : variable_type_simple", //t "variable_type : variable_type_simple rank_specifiers", //t "variable_type_simple : primary_expression_or_type opt_nullable", //t "variable_type_simple : primary_expression_or_type pointer_stars", //t "variable_type_simple : builtin_types opt_nullable", //t "variable_type_simple : builtin_types pointer_stars", //t "variable_type_simple : VOID pointer_stars", //t "variable_type_simple : VOID", //t "pointer_stars : pointer_star", //t "pointer_stars : pointer_star pointer_stars", //t "pointer_star : STAR", //t "identifier_inside_body : IDENTIFIER", //t "identifier_inside_body : AWAIT", //t "$$84 :", //t "block_variable_declaration : variable_type identifier_inside_body $$84 opt_local_variable_initializer opt_variable_declarators SEMICOLON", //t "$$85 :", //t "block_variable_declaration : CONST variable_type identifier_inside_body $$85 const_variable_initializer opt_const_declarators SEMICOLON", //t "opt_local_variable_initializer :", //t "opt_local_variable_initializer : ASSIGN block_variable_initializer", //t "opt_local_variable_initializer : error", //t "opt_variable_declarators :", //t "opt_variable_declarators : variable_declarators", //t "opt_using_or_fixed_variable_declarators :", //t "opt_using_or_fixed_variable_declarators : variable_declarators", //t "variable_declarators : variable_declarator", //t "variable_declarators : variable_declarators variable_declarator", //t "variable_declarator : COMMA identifier_inside_body", //t "variable_declarator : COMMA identifier_inside_body ASSIGN block_variable_initializer", //t "const_variable_initializer :", //t "const_variable_initializer : ASSIGN constant_initializer_expr", //t "opt_const_declarators :", //t "opt_const_declarators : const_declarators", //t "const_declarators : const_declarator", //t "const_declarators : const_declarators const_declarator", //t "const_declarator : COMMA identifier_inside_body ASSIGN constant_initializer_expr", //t "block_variable_initializer : variable_initializer", //t "block_variable_initializer : STACKALLOC simple_type OPEN_BRACKET_EXPR expression CLOSE_BRACKET", //t "block_variable_initializer : STACKALLOC simple_type", //t "expression_statement : statement_expression SEMICOLON", //t "expression_statement : statement_expression COMPLETE_COMPLETION", //t "interactive_expression_statement : interactive_statement_expression SEMICOLON", //t "interactive_expression_statement : interactive_statement_expression COMPLETE_COMPLETION", //t "statement_expression : expression", //t "interactive_statement_expression : expression", //t "interactive_statement_expression : error", //t "selection_statement : if_statement", //t "selection_statement : switch_statement", //t "if_statement : IF open_parens_any boolean_expression CLOSE_PARENS embedded_statement", //t "if_statement : IF open_parens_any boolean_expression CLOSE_PARENS embedded_statement ELSE embedded_statement", //t "$$86 :", //t "switch_statement : SWITCH open_parens_any expression CLOSE_PARENS OPEN_BRACE $$86 opt_switch_sections CLOSE_BRACE", //t "opt_switch_sections :", //t "opt_switch_sections : switch_sections", //t "switch_sections : switch_section", //t "switch_sections : switch_sections switch_section", //t "switch_sections : error", //t "$$87 :", //t "switch_section : switch_labels $$87 statement_list", //t "switch_labels : switch_label", //t "switch_labels : switch_labels switch_label", //t "switch_label : CASE constant_expression COLON", //t "switch_label : DEFAULT_COLON", //t "iteration_statement : while_statement", //t "iteration_statement : do_statement", //t "iteration_statement : for_statement", //t "iteration_statement : foreach_statement", //t "while_statement : WHILE open_parens_any boolean_expression CLOSE_PARENS embedded_statement", //t "do_statement : DO embedded_statement WHILE open_parens_any boolean_expression CLOSE_PARENS SEMICOLON", //t "$$88 :", //t "for_statement : FOR open_parens_any $$88 for_statement_cont", //t "for_statement_cont : opt_for_initializer SEMICOLON opt_for_condition SEMICOLON opt_for_iterator CLOSE_PARENS embedded_statement", //t "for_statement_cont : opt_for_initializer SEMICOLON error", //t "for_statement_cont : error", //t "opt_for_initializer :", //t "opt_for_initializer : for_initializer", //t "$$89 :", //t "for_initializer : variable_type identifier_inside_body $$89 opt_local_variable_initializer opt_variable_declarators", //t "for_initializer : statement_expression_list", //t "opt_for_condition :", //t "opt_for_condition : boolean_expression", //t "opt_for_iterator :", //t "opt_for_iterator : for_iterator", //t "for_iterator : statement_expression_list", //t "statement_expression_list : statement_expression", //t "statement_expression_list : statement_expression_list COMMA statement_expression", //t "foreach_statement : FOREACH open_parens_any type IN expression CLOSE_PARENS", //t "$$90 :", //t "foreach_statement : FOREACH open_parens_any type identifier_inside_body IN expression CLOSE_PARENS $$90 embedded_statement", //t "jump_statement : break_statement", //t "jump_statement : continue_statement", //t "jump_statement : goto_statement", //t "jump_statement : return_statement", //t "jump_statement : throw_statement", //t "jump_statement : yield_statement", //t "break_statement : BREAK SEMICOLON", //t "continue_statement : CONTINUE SEMICOLON", //t "goto_statement : GOTO identifier_inside_body SEMICOLON", //t "goto_statement : GOTO CASE constant_expression SEMICOLON", //t "goto_statement : GOTO DEFAULT SEMICOLON", //t "return_statement : RETURN opt_expression SEMICOLON", //t "throw_statement : THROW opt_expression SEMICOLON", //t "yield_statement : identifier_inside_body RETURN opt_expression SEMICOLON", //t "yield_statement : identifier_inside_body BREAK SEMICOLON", //t "opt_expression :", //t "opt_expression : expression", //t "try_statement : TRY block catch_clauses", //t "try_statement : TRY block FINALLY block", //t "try_statement : TRY block catch_clauses FINALLY block", //t "try_statement : TRY block error", //t "catch_clauses : catch_clause", //t "catch_clauses : catch_clauses catch_clause", //t "opt_identifier :", //t "opt_identifier : identifier_inside_body", //t "catch_clause : CATCH block", //t "$$91 :", //t "catch_clause : CATCH open_parens_any type opt_identifier CLOSE_PARENS $$91 block_prepared", //t "catch_clause : CATCH open_parens_any error", //t "checked_statement : CHECKED block", //t "unchecked_statement : UNCHECKED block", //t "$$92 :", //t "unsafe_statement : UNSAFE $$92 block", //t "lock_statement : LOCK open_parens_any expression CLOSE_PARENS embedded_statement", //t "$$93 :", //t "$$94 :", //t "fixed_statement : FIXED open_parens_any variable_type identifier_inside_body $$93 using_or_fixed_variable_initializer opt_using_or_fixed_variable_declarators CLOSE_PARENS $$94 embedded_statement", //t "$$95 :", //t "$$96 :", //t "using_statement : USING open_parens_any variable_type identifier_inside_body $$95 using_initialization CLOSE_PARENS $$96 embedded_statement", //t "using_statement : USING open_parens_any expression CLOSE_PARENS embedded_statement", //t "using_initialization : using_or_fixed_variable_initializer opt_using_or_fixed_variable_declarators", //t "using_initialization : error", //t "using_or_fixed_variable_initializer :", //t "using_or_fixed_variable_initializer : ASSIGN variable_initializer", //t "query_expression : first_from_clause query_body", //t "query_expression : nested_from_clause query_body", //t "query_expression : first_from_clause COMPLETE_COMPLETION", //t "query_expression : nested_from_clause COMPLETE_COMPLETION", //t "first_from_clause : FROM_FIRST identifier_inside_body IN expression", //t "first_from_clause : FROM_FIRST type identifier_inside_body IN expression", //t "nested_from_clause : FROM identifier_inside_body IN expression", //t "nested_from_clause : FROM type identifier_inside_body IN expression", //t "$$97 :", //t "from_clause : FROM identifier_inside_body IN $$97 expression", //t "$$98 :", //t "from_clause : FROM type identifier_inside_body IN $$98 expression", //t "query_body : opt_query_body_clauses select_or_group_clause opt_query_continuation", //t "query_body : opt_query_body_clauses COMPLETE_COMPLETION", //t "query_body : error", //t "$$99 :", //t "select_or_group_clause : SELECT $$99 expression", //t "$$100 :", //t "$$101 :", //t "select_or_group_clause : GROUP $$100 expression $$101 BY expression", //t "opt_query_body_clauses :", //t "opt_query_body_clauses : query_body_clauses", //t "query_body_clauses : query_body_clause", //t "query_body_clauses : query_body_clauses query_body_clause", //t "query_body_clause : from_clause", //t "query_body_clause : let_clause", //t "query_body_clause : where_clause", //t "query_body_clause : join_clause", //t "query_body_clause : orderby_clause", //t "$$102 :", //t "let_clause : LET identifier_inside_body ASSIGN $$102 expression", //t "$$103 :", //t "where_clause : WHERE $$103 expression", //t "$$104 :", //t "$$105 :", //t "$$106 :", //t "join_clause : JOIN identifier_inside_body IN $$104 expression ON $$105 expression EQUALS $$106 expression opt_join_into", //t "$$107 :", //t "$$108 :", //t "$$109 :", //t "join_clause : JOIN type identifier_inside_body IN $$107 expression ON $$108 expression EQUALS $$109 expression opt_join_into", //t "opt_join_into :", //t "opt_join_into : INTO identifier_inside_body", //t "$$110 :", //t "orderby_clause : ORDERBY $$110 orderings", //t "orderings : order_by", //t "$$111 :", //t "orderings : order_by COMMA $$111 orderings_then_by", //t "orderings_then_by : then_by", //t "$$112 :", //t "orderings_then_by : orderings_then_by COMMA $$112 then_by", //t "order_by : expression", //t "order_by : expression ASCENDING", //t "order_by : expression DESCENDING", //t "then_by : expression", //t "then_by : expression ASCENDING", //t "then_by : expression DESCENDING", //t "opt_query_continuation :", //t "$$113 :", //t "opt_query_continuation : INTO identifier_inside_body $$113 query_body", //t "interactive_parsing : EVAL_STATEMENT_PARSER EOF", //t "interactive_parsing : EVAL_USING_DECLARATIONS_UNIT_PARSER using_directives opt_COMPLETE_COMPLETION", //t "$$114 :", //t "interactive_parsing : EVAL_STATEMENT_PARSER $$114 interactive_statement_list opt_COMPLETE_COMPLETION", //t "interactive_parsing : EVAL_COMPILATION_UNIT_PARSER interactive_compilation_unit", //t "interactive_compilation_unit : opt_extern_alias_directives opt_using_directives", //t "interactive_compilation_unit : opt_extern_alias_directives opt_using_directives namespace_or_type_declarations", //t "opt_COMPLETE_COMPLETION :", //t "opt_COMPLETE_COMPLETION : COMPLETE_COMPLETION", //t "close_brace_or_complete_completion : CLOSE_BRACE", //t "close_brace_or_complete_completion : COMPLETE_COMPLETION", //t "documentation_parsing : DOC_SEE doc_cref", //t "doc_cref : doc_type_declaration_name opt_doc_method_sig", //t "doc_cref : builtin_types opt_doc_method_sig", //t "doc_cref : builtin_types DOT IDENTIFIER opt_doc_method_sig", //t "doc_cref : doc_type_declaration_name DOT THIS", //t "$$115 :", //t "doc_cref : doc_type_declaration_name DOT THIS OPEN_BRACKET $$115 opt_doc_parameters CLOSE_BRACKET", //t "doc_cref : EXPLICIT OPERATOR type opt_doc_method_sig", //t "doc_cref : IMPLICIT OPERATOR type opt_doc_method_sig", //t "doc_cref : OPERATOR overloadable_operator opt_doc_method_sig", //t "doc_type_declaration_name : type_declaration_name", //t "doc_type_declaration_name : doc_type_declaration_name DOT type_declaration_name", //t "opt_doc_method_sig :", //t "$$116 :", //t "opt_doc_method_sig : OPEN_PARENS $$116 opt_doc_parameters CLOSE_PARENS", //t "opt_doc_parameters :", //t "opt_doc_parameters : doc_parameters", //t "doc_parameters : doc_parameter", //t "doc_parameters : doc_parameters COMMA doc_parameter", //t "doc_parameter : opt_parameter_modifier parameter_type", //t }; //t public static string getRule (int index) { //t return yyRule [index]; //t } //t} protected static readonly string [] yyNames = { "end-of-file",null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,null,null,null,null,null,null,null, null,null,null,null,null,null,null,"EOF","NONE","ERROR", "FIRST_KEYWORD","ABSTRACT","AS","ADD","BASE","BOOL","BREAK","BYTE", "CASE","CATCH","CHAR","CHECKED","CLASS","CONST","CONTINUE","DECIMAL", "DEFAULT","DELEGATE","DO","DOUBLE","ELSE","ENUM","EVENT","EXPLICIT", "EXTERN","FALSE","FINALLY","FIXED","FLOAT","FOR","FOREACH","GOTO", "IF","IMPLICIT","IN","INT","INTERFACE","INTERNAL","IS","LOCK","LONG", "NAMESPACE","NEW","NULL","OBJECT","OPERATOR","OUT","OVERRIDE", "PARAMS","PRIVATE","PROTECTED","PUBLIC","READONLY","REF","RETURN", "REMOVE","SBYTE","SEALED","SHORT","SIZEOF","STACKALLOC","STATIC", "STRING","STRUCT","SWITCH","THIS","THROW","TRUE","TRY","TYPEOF", "UINT","ULONG","UNCHECKED","UNSAFE","USHORT","USING","VIRTUAL","VOID", "VOLATILE","WHERE","WHILE","ARGLIST","PARTIAL","ARROW","FROM", "FROM_FIRST","JOIN","ON","EQUALS","SELECT","GROUP","BY","LET", "ORDERBY","ASCENDING","DESCENDING","INTO","INTERR_NULLABLE", "EXTERN_ALIAS","REFVALUE","REFTYPE","MAKEREF","ASYNC","AWAIT","GET", "SET","LAST_KEYWORD","OPEN_BRACE","CLOSE_BRACE","OPEN_BRACKET", "CLOSE_BRACKET","OPEN_PARENS","CLOSE_PARENS","DOT","COMMA","COLON", "SEMICOLON","TILDE","PLUS","MINUS","BANG","ASSIGN","OP_LT","OP_GT", "BITWISE_AND","BITWISE_OR","STAR","PERCENT","DIV","CARRET","INTERR", "DOUBLE_COLON","OP_INC","OP_DEC","OP_SHIFT_LEFT","OP_SHIFT_RIGHT", "OP_LE","OP_GE","OP_EQ","OP_NE","OP_AND","OP_OR","OP_MULT_ASSIGN", "OP_DIV_ASSIGN","OP_MOD_ASSIGN","OP_ADD_ASSIGN","OP_SUB_ASSIGN", "OP_SHIFT_LEFT_ASSIGN","OP_SHIFT_RIGHT_ASSIGN","OP_AND_ASSIGN", "OP_XOR_ASSIGN","OP_OR_ASSIGN","OP_PTR","OP_COALESCING", "OP_GENERICS_LT","OP_GENERICS_LT_DECL","OP_GENERICS_GT","LITERAL", "IDENTIFIER","OPEN_PARENS_LAMBDA","OPEN_PARENS_CAST", "GENERIC_DIMENSION","DEFAULT_COLON","OPEN_BRACKET_EXPR", "EVAL_STATEMENT_PARSER","EVAL_COMPILATION_UNIT_PARSER", "EVAL_USING_DECLARATIONS_UNIT_PARSER","DOC_SEE","GENERATE_COMPLETION", "COMPLETE_COMPLETION","UMINUS", }; /** index-checked interface to yyNames[]. @param token single character or %token value. @return token name or [illegal] or [unknown]. */ //t public static string yyname (int token) { //t if ((token < 0) || (token > yyNames.Length)) return "[illegal]"; //t string name; //t if ((name = yyNames[token]) != null) return name; //t return "[unknown]"; //t } int yyExpectingState; /** computes list of expected tokens on error by tracing the tables. @param state for which to compute the list. @return list of token names. */ protected int [] yyExpectingTokens (int state){ int token, n, len = 0; bool[] ok = new bool[yyNames.Length]; if ((n = yySindex[state]) != 0) for (token = n < 0 ? -n : 0; (token < yyNames.Length) && (n+token < yyTable.Length); ++ token) if (yyCheck[n+token] == token && !ok[token] && yyNames[token] != null) { ++ len; ok[token] = true; } if ((n = yyRindex[state]) != 0) for (token = n < 0 ? -n : 0; (token < yyNames.Length) && (n+token < yyTable.Length); ++ token) if (yyCheck[n+token] == token && !ok[token] && yyNames[token] != null) { ++ len; ok[token] = true; } int [] result = new int [len]; for (n = token = 0; n < len; ++ token) if (ok[token]) result[n++] = token; return result; } protected string[] yyExpecting (int state) { int [] tokens = yyExpectingTokens (state); string [] result = new string[tokens.Length]; for (int n = 0; n < tokens.Length; n++) result[n++] = yyNames[tokens [n]]; return result; } /** the generated parser, with debugging messages. Maintains a state and a value stack, currently with fixed maximum size. @param yyLex scanner. @param yydebug debug message writer implementing yyDebug, or null. @return result of the last reduction, if any. @throws yyException on irrecoverable parse error. */ internal Object yyparse (yyParser.yyInput yyLex, Object yyd) { //t this.debug = (yydebug.yyDebug)yyd; return yyparse(yyLex); } /** initial size and increment of the state/value stack [default 256]. This is not final so that it can be overwritten outside of invocations of yyparse(). */ protected int yyMax; /** executed at the beginning of a reduce action. Used as $$ = yyDefault($1), prior to the user-specified action, if any. Can be overwritten to provide deep copy, etc. @param first value for $1, or null. @return first. */ protected Object yyDefault (Object first) { return first; } static int[] global_yyStates; static object[] global_yyVals; protected bool use_global_stacks; object[] yyVals; // value stack object yyVal; // value stack ptr int yyToken; // current input int yyTop; /** the generated parser. Maintains a state and a value stack, currently with fixed maximum size. @param yyLex scanner. @return result of the last reduction, if any. @throws yyException on irrecoverable parse error. */ internal Object yyparse (yyParser.yyInput yyLex) { if (yyMax <= 0) yyMax = 256; // initial size int yyState = 0; // state stack ptr int [] yyStates; // state stack yyVal = null; yyToken = -1; int yyErrorFlag = 0; // #tks to shift if (use_global_stacks && global_yyStates != null) { yyVals = global_yyVals; yyStates = global_yyStates; } else { yyVals = new object [yyMax]; yyStates = new int [yyMax]; if (use_global_stacks) { global_yyVals = yyVals; global_yyStates = yyStates; } } /*yyLoop:*/ for (yyTop = 0;; ++ yyTop) { if (yyTop >= yyStates.Length) { // dynamically increase global::System.Array.Resize (ref yyStates, yyStates.Length+yyMax); global::System.Array.Resize (ref yyVals, yyVals.Length+yyMax); } yyStates[yyTop] = yyState; yyVals[yyTop] = yyVal; //t if (debug != null) debug.push(yyState, yyVal); /*yyDiscarded:*/ while (true) { // discarding a token does not change stack int yyN; if ((yyN = yyDefRed[yyState]) == 0) { // else [default] reduce (yyN) if (yyToken < 0) { yyToken = yyLex.advance() ? yyLex.token() : 0; //t if (debug != null) //t debug.lex(yyState, yyToken, yyname(yyToken), yyLex.value()); } if ((yyN = yySindex[yyState]) != 0 && ((yyN += yyToken) >= 0) && (yyN < yyTable.Length) && (yyCheck[yyN] == yyToken)) { //t if (debug != null) //t debug.shift(yyState, yyTable[yyN], yyErrorFlag-1); yyState = yyTable[yyN]; // shift to yyN yyVal = yyLex.value(); yyToken = -1; if (yyErrorFlag > 0) -- yyErrorFlag; goto continue_yyLoop; } if ((yyN = yyRindex[yyState]) != 0 && (yyN += yyToken) >= 0 && yyN < yyTable.Length && yyCheck[yyN] == yyToken) yyN = yyTable[yyN]; // reduce (yyN) else switch (yyErrorFlag) { case 0: yyExpectingState = yyState; // yyerror(String.Format ("syntax error, got token `{0}'", yyname (yyToken)), yyExpecting(yyState)); //t if (debug != null) debug.error("syntax error"); if (yyToken == 0 /*eof*/ || yyToken == eof_token) throw new yyParser.yyUnexpectedEof (); goto case 1; case 1: case 2: yyErrorFlag = 3; do { if ((yyN = yySindex[yyStates[yyTop]]) != 0 && (yyN += Token.yyErrorCode) >= 0 && yyN < yyTable.Length && yyCheck[yyN] == Token.yyErrorCode) { //t if (debug != null) //t debug.shift(yyStates[yyTop], yyTable[yyN], 3); yyState = yyTable[yyN]; yyVal = yyLex.value(); goto continue_yyLoop; } //t if (debug != null) debug.pop(yyStates[yyTop]); } while (-- yyTop >= 0); //t if (debug != null) debug.reject(); throw new yyParser.yyException("irrecoverable syntax error"); case 3: if (yyToken == 0) { //t if (debug != null) debug.reject(); throw new yyParser.yyException("irrecoverable syntax error at end-of-file"); } //t if (debug != null) //t debug.discard(yyState, yyToken, yyname(yyToken), //t yyLex.value()); yyToken = -1; goto continue_yyDiscarded; // leave stack alone } } int yyV = yyTop + 1-yyLen[yyN]; //t if (debug != null) //t debug.reduce(yyState, yyStates[yyV-1], yyN, YYRules.getRule (yyN), yyLen[yyN]); yyVal = yyV > yyTop ? null : yyVals[yyV]; // yyVal = yyDefault(yyV > yyTop ? null : yyVals[yyV]); switch (yyN) { case 1: #line 402 "cs-parser.jay" { Lexer.check_incorrect_doc_comment (); } break; case 2: #line 403 "cs-parser.jay" { Lexer.CompleteOnEOF = false; } break; case 6: case_6(); break; case 7: #line 420 "cs-parser.jay" { module.AddAttributes ((Attributes) yyVals[0+yyTop], current_namespace); } break; case 8: case_8(); break; case 13: case_13(); break; case 14: #line 458 "cs-parser.jay" { syntax_error (GetLocation (yyVals[-1+yyTop]), "`alias' expected"); /* TODO: better*/ } break; case 17: case_17(); break; case 18: case_18(); break; case 19: case_19(); break; case 20: case_20(); break; case 21: case_21(); break; case 22: case_22(); break; case 23: case_23(); break; case 24: case_24(); break; case 25: case_25(); break; case 26: case_26(); break; case 27: case_27(); break; case 32: case_32(); break; case 41: case_41(); break; case 42: #line 647 "cs-parser.jay" { current_namespace.DeclarationFound = true; } break; case 50: case_50(); break; case 51: case_51(); break; case 52: case_52(); break; case 53: case_53(); break; case 54: case_54(); break; case 55: case_55(); break; case 56: case_56(); break; case 57: case_57(); break; case 58: #line 756 "cs-parser.jay" { yyVal = "event"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } break; case 59: #line 757 "cs-parser.jay" { yyVal = "return"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } break; case 60: case_60(); break; case 61: #line 774 "cs-parser.jay" { yyVal = new List (4) { (Attribute) yyVals[0+yyTop] }; } break; case 62: case_62(); break; case 63: #line 789 "cs-parser.jay" { ++lexer.parsing_block; } break; case 64: case_64(); break; case 66: #line 816 "cs-parser.jay" { yyVal = null; } break; case 67: case_67(); break; case 68: #line 827 "cs-parser.jay" { yyVal = null; } break; case 69: case_69(); break; case 70: case_70(); break; case 71: case_71(); break; case 72: case_72(); break; case 73: #line 871 "cs-parser.jay" { yyVal = new Argument ((Expression) yyVals[0+yyTop]); } break; case 75: #line 879 "cs-parser.jay" { ++lexer.parsing_block; } break; case 76: case_76(); break; case 77: case_77(); break; case 78: #line 905 "cs-parser.jay" { yyVal = null; } break; case 79: #line 909 "cs-parser.jay" { yyVal = Argument.AType.Ref; } break; case 80: #line 913 "cs-parser.jay" { yyVal = Argument.AType.Out; } break; case 83: #line 925 "cs-parser.jay" { lexer.parsing_modifiers = true; } break; case 84: #line 929 "cs-parser.jay" { lexer.parsing_modifiers = true; } break; case 95: case_95(); break; case 96: #line 959 "cs-parser.jay" { lexer.ConstraintsParsing = true; } break; case 97: case_97(); break; case 98: case_98(); break; case 99: case_99(); break; case 100: case_100(); break; case 101: case_101(); break; case 102: #line 1000 "cs-parser.jay" { Error_SyntaxError (yyToken); } break; case 103: case_103(); break; case 104: case_104(); break; case 107: #line 1041 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 108: #line 1045 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 109: case_109(); break; case 110: #line 1061 "cs-parser.jay" { ++lexer.parsing_block; } break; case 111: case_111(); break; case 112: case_112(); break; case 115: case_115(); break; case 116: case_116(); break; case 117: case_117(); break; case 118: case_118(); break; case 119: #line 1140 "cs-parser.jay" { report.Error (1641, GetLocation (yyVals[-1+yyTop]), "A fixed size buffer field must have the array size specifier after the field name"); } break; case 121: case_121(); break; case 122: case_122(); break; case 125: #line 1170 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 126: #line 1174 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 127: case_127(); break; case 128: #line 1187 "cs-parser.jay" { ++lexer.parsing_block; } break; case 129: case_129(); break; case 132: #line 1206 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 133: #line 1210 "cs-parser.jay" { current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 134: case_134(); break; case 135: #line 1226 "cs-parser.jay" { ++lexer.parsing_block; } break; case 136: case_136(); break; case 137: case_137(); break; case 140: case_140(); break; case 141: case_141(); break; case 142: case_142(); break; case 143: #line 1297 "cs-parser.jay" { valid_param_mod = ParameterModifierType.All; } break; case 144: #line 1301 "cs-parser.jay" { lexer.ConstraintsParsing = true; } break; case 145: case_145(); break; case 146: #line 1335 "cs-parser.jay" { lexer.parsing_generic_declaration = true; } break; case 147: case_147(); break; case 148: #line 1345 "cs-parser.jay" { lexer.ConstraintsParsing = true; } break; case 149: case_149(); break; case 150: case_150(); break; case 152: #line 1403 "cs-parser.jay" { savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } break; case 153: #line 1407 "cs-parser.jay" { yyVal = ParametersCompiled.EmptyReadOnlyParameters; } break; case 155: case_155(); break; case 156: case_156(); break; case 157: case_157(); break; case 158: case_158(); break; case 159: case_159(); break; case 160: case_160(); break; case 161: case_161(); break; case 162: #line 1479 "cs-parser.jay" { yyVal = new ParametersCompiled (new Parameter[] { (Parameter) yyVals[0+yyTop] } ); } break; case 163: #line 1483 "cs-parser.jay" { yyVal = new ParametersCompiled (new Parameter [] { new ArglistParameter (GetLocation (yyVals[0+yyTop])) }, true); } break; case 164: case_164(); break; case 165: case_165(); break; case 166: case_166(); break; case 167: case_167(); break; case 168: case_168(); break; case 169: case_169(); break; case 170: #line 1558 "cs-parser.jay" { ++lexer.parsing_block; } break; case 171: case_171(); break; case 172: #line 1599 "cs-parser.jay" { yyVal = Parameter.Modifier.NONE; } break; case 174: #line 1607 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 175: case_175(); break; case 176: case_176(); break; case 177: case_177(); break; case 178: case_178(); break; case 179: case_179(); break; case 180: case_180(); break; case 181: case_181(); break; case 182: case_182(); break; case 183: case_183(); break; case 184: #line 1700 "cs-parser.jay" { Error_DuplicateParameterModifier (GetLocation (yyVals[-1+yyTop]), Parameter.Modifier.PARAMS); } break; case 185: case_185(); break; case 186: case_186(); break; case 187: case_187(); break; case 188: case_188(); break; case 189: case_189(); break; case 190: #line 1754 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Params | ParameterModifierType.DefaultValue; } break; case 191: case_191(); break; case 192: #line 1783 "cs-parser.jay" { lexer.PropertyParsing = false; } break; case 193: case_193(); break; case 198: case_198(); break; case 199: case_199(); break; case 200: case_200(); break; case 201: case_201(); break; case 202: case_202(); break; case 204: case_204(); break; case 205: case_205(); break; case 206: #line 1932 "cs-parser.jay" { lexer.ConstraintsParsing = true; } break; case 207: case_207(); break; case 208: case_208(); break; case 209: case_209(); break; case 210: case_210(); break; case 211: #line 1969 "cs-parser.jay" { Error_SyntaxError (yyToken); } break; case 214: #line 1981 "cs-parser.jay" { lexer.parsing_modifiers = true; } break; case 215: #line 1985 "cs-parser.jay" { lexer.parsing_modifiers = true; } break; case 216: #line 1992 "cs-parser.jay" { report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); } break; case 217: #line 1996 "cs-parser.jay" { report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); } break; case 222: #line 2004 "cs-parser.jay" { report.Error (567, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain operators"); } break; case 223: #line 2008 "cs-parser.jay" { report.Error (526, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain contructors"); } break; case 224: #line 2012 "cs-parser.jay" { report.Error (524, GetLocation (yyVals[0+yyTop]), "Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations"); } break; case 225: #line 2018 "cs-parser.jay" { } break; case 226: case_226(); break; case 228: #line 2051 "cs-parser.jay" { savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } break; case 230: case_230(); break; case 231: #line 2067 "cs-parser.jay" { valid_param_mod = ParameterModifierType.DefaultValue; } break; case 232: case_232(); break; case 234: #line 2113 "cs-parser.jay" { yyVal = Operator.OpType.LogicalNot; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 235: #line 2114 "cs-parser.jay" { yyVal = Operator.OpType.OnesComplement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 236: #line 2115 "cs-parser.jay" { yyVal = Operator.OpType.Increment; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 237: #line 2116 "cs-parser.jay" { yyVal = Operator.OpType.Decrement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 238: #line 2117 "cs-parser.jay" { yyVal = Operator.OpType.True; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 239: #line 2118 "cs-parser.jay" { yyVal = Operator.OpType.False; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 240: #line 2120 "cs-parser.jay" { yyVal = Operator.OpType.Addition; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 241: #line 2121 "cs-parser.jay" { yyVal = Operator.OpType.Subtraction; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 242: #line 2123 "cs-parser.jay" { yyVal = Operator.OpType.Multiply; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 243: #line 2124 "cs-parser.jay" { yyVal = Operator.OpType.Division; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 244: #line 2125 "cs-parser.jay" { yyVal = Operator.OpType.Modulus; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 245: #line 2126 "cs-parser.jay" { yyVal = Operator.OpType.BitwiseAnd; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 246: #line 2127 "cs-parser.jay" { yyVal = Operator.OpType.BitwiseOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 247: #line 2128 "cs-parser.jay" { yyVal = Operator.OpType.ExclusiveOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 248: #line 2129 "cs-parser.jay" { yyVal = Operator.OpType.LeftShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 249: #line 2130 "cs-parser.jay" { yyVal = Operator.OpType.RightShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 250: #line 2131 "cs-parser.jay" { yyVal = Operator.OpType.Equality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 251: #line 2132 "cs-parser.jay" { yyVal = Operator.OpType.Inequality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 252: #line 2133 "cs-parser.jay" { yyVal = Operator.OpType.GreaterThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 253: #line 2134 "cs-parser.jay" { yyVal = Operator.OpType.LessThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 254: #line 2135 "cs-parser.jay" { yyVal = Operator.OpType.GreaterThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 255: #line 2136 "cs-parser.jay" { yyVal = Operator.OpType.LessThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } break; case 256: #line 2143 "cs-parser.jay" { valid_param_mod = ParameterModifierType.DefaultValue; } break; case 257: case_257(); break; case 258: #line 2162 "cs-parser.jay" { valid_param_mod = ParameterModifierType.DefaultValue; } break; case 259: case_259(); break; case 260: case_260(); break; case 261: case_261(); break; case 262: case_262(); break; case 263: case_263(); break; case 264: case_264(); break; case 265: case_265(); break; case 267: #line 2265 "cs-parser.jay" { current_block = null; yyVal = null; } break; case 270: #line 2277 "cs-parser.jay" { ++lexer.parsing_block; } break; case 271: case_271(); break; case 272: #line 2287 "cs-parser.jay" { ++lexer.parsing_block; } break; case 273: case_273(); break; case 274: case_274(); break; case 275: case_275(); break; case 276: case_276(); break; case 277: case_277(); break; case 278: case_278(); break; case 279: case_279(); break; case 280: case_280(); break; case 281: case_281(); break; case 283: #line 2396 "cs-parser.jay" { ++lexer.parsing_block; } break; case 284: case_284(); break; case 287: #line 2413 "cs-parser.jay" { current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 288: #line 2417 "cs-parser.jay" { current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); } break; case 289: case_289(); break; case 290: #line 2430 "cs-parser.jay" { ++lexer.parsing_block; } break; case 291: case_291(); break; case 292: case_292(); break; case 293: #line 2455 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 296: case_296(); break; case 297: case_297(); break; case 298: case_298(); break; case 299: case_299(); break; case 300: case_300(); break; case 301: case_301(); break; case 302: case_302(); break; case 303: case_303(); break; case 305: #line 2549 "cs-parser.jay" { enumCommas.Add (GetLocation (yyVals[0+yyTop])); } break; case 306: case_306(); break; case 307: case_307(); break; case 308: case_308(); break; case 309: case_309(); break; case 311: case_311(); break; case 312: case_312(); break; case 315: #line 2617 "cs-parser.jay" { enumCommas.Add (GetLocation (yyVals[0+yyTop])); } break; case 317: case_317(); break; case 318: case_318(); break; case 319: case_319(); break; case 320: case_320(); break; case 321: #line 2675 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out | ParameterModifierType.Params | ParameterModifierType.DefaultValue; } break; case 322: case_322(); break; case 323: #line 2697 "cs-parser.jay" { lexer.ConstraintsParsing = false; } break; case 324: case_324(); break; case 326: case_326(); break; case 328: case_328(); break; case 330: case_330(); break; case 331: case_331(); break; case 333: case_333(); break; case 334: case_334(); break; case 335: case_335(); break; case 336: case_336(); break; case 337: #line 2802 "cs-parser.jay" { lexer.parsing_generic_declaration = true; } break; case 338: case_338(); break; case 339: case_339(); break; case 341: case_341(); break; case 342: case_342(); break; case 343: case_343(); break; case 344: case_344(); break; case 345: case_345(); break; case 346: case_346(); break; case 348: case_348(); break; case 349: case_349(); break; case 350: case_350(); break; case 351: case_351(); break; case 352: case_352(); break; case 354: #line 2923 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } break; case 355: #line 2930 "cs-parser.jay" { lexer.parsing_generic_declaration = true; } break; case 357: case_357(); break; case 359: case_359(); break; case 361: case_361(); break; case 363: #line 2968 "cs-parser.jay" { yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 364: case_364(); break; case 365: #line 2988 "cs-parser.jay" { yyVal = new ComposedCast (((MemberName) yyVals[-1+yyTop]).GetTypeExpression (), (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 366: case_366(); break; case 367: #line 2997 "cs-parser.jay" { yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 368: #line 3001 "cs-parser.jay" { yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 369: case_369(); break; case 370: case_370(); break; case 371: case_371(); break; case 372: case_372(); break; case 373: #line 3040 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Object, GetLocation (yyVals[0+yyTop])); } break; case 374: #line 3041 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.String, GetLocation (yyVals[0+yyTop])); } break; case 375: #line 3042 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Bool, GetLocation (yyVals[0+yyTop])); } break; case 376: #line 3043 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Decimal, GetLocation (yyVals[0+yyTop])); } break; case 377: #line 3044 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Float, GetLocation (yyVals[0+yyTop])); } break; case 378: #line 3045 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Double, GetLocation (yyVals[0+yyTop])); } break; case 380: #line 3050 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.SByte, GetLocation (yyVals[0+yyTop])); } break; case 381: #line 3051 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Byte, GetLocation (yyVals[0+yyTop])); } break; case 382: #line 3052 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Short, GetLocation (yyVals[0+yyTop])); } break; case 383: #line 3053 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.UShort, GetLocation (yyVals[0+yyTop])); } break; case 384: #line 3054 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Int, GetLocation (yyVals[0+yyTop])); } break; case 385: #line 3055 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.UInt, GetLocation (yyVals[0+yyTop])); } break; case 386: #line 3056 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Long, GetLocation (yyVals[0+yyTop])); } break; case 387: #line 3057 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.ULong, GetLocation (yyVals[0+yyTop])); } break; case 388: #line 3058 "cs-parser.jay" { yyVal = new TypeExpression (compiler.BuiltinTypes.Char, GetLocation (yyVals[0+yyTop])); } break; case 409: case_409(); break; case 410: case_410(); break; case 414: #line 3105 "cs-parser.jay" { yyVal = new NullLiteral (GetLocation (yyVals[0+yyTop])); } break; case 415: #line 3109 "cs-parser.jay" { yyVal = new BoolLiteral (compiler.BuiltinTypes, true, GetLocation (yyVals[0+yyTop])); } break; case 416: #line 3110 "cs-parser.jay" { yyVal = new BoolLiteral (compiler.BuiltinTypes, false, GetLocation (yyVals[0+yyTop])); } break; case 421: case_421(); break; case 422: #line 3143 "cs-parser.jay" { yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); } break; case 423: case_423(); break; case 424: case_424(); break; case 425: case_425(); break; case 426: case_426(); break; case 427: #line 3178 "cs-parser.jay" { yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null,GetLocation (yyVals[0+yyTop])); } break; case 428: case_428(); break; case 429: #line 3186 "cs-parser.jay" { yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null, lexer.Location); } break; case 430: case_430(); break; case 431: case_431(); break; case 432: #line 3202 "cs-parser.jay" { yyVal = null; } break; case 434: case_434(); break; case 435: case_435(); break; case 436: #line 3225 "cs-parser.jay" { yyVal = null; } break; case 437: #line 3229 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 438: case_438(); break; case 439: case_439(); break; case 440: case_440(); break; case 441: case_441(); break; case 442: #line 3262 "cs-parser.jay" { yyVal = new CompletionElementInitializer (null, GetLocation (yyVals[0+yyTop])); } break; case 443: case_443(); break; case 444: case_444(); break; case 445: case_445(); break; case 448: #line 3290 "cs-parser.jay" { yyVal = null; } break; case 450: case_450(); break; case 451: case_451(); break; case 452: case_452(); break; case 453: case_453(); break; case 454: case_454(); break; case 455: #line 3342 "cs-parser.jay" { yyVal = new Argument ((Expression) yyVals[0+yyTop]); } break; case 459: case_459(); break; case 460: case_460(); break; case 461: case_461(); break; case 462: case_462(); break; case 464: case_464(); break; case 465: #line 3387 "cs-parser.jay" { yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); } break; case 466: #line 3391 "cs-parser.jay" { yyVal = new ElementAccess ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop])); } break; case 467: case_467(); break; case 468: case_468(); break; case 469: case_469(); break; case 470: case_470(); break; case 471: case_471(); break; case 472: #line 3437 "cs-parser.jay" { yyVal = new Argument ((Expression) yyVals[0+yyTop]); } break; case 474: #line 3445 "cs-parser.jay" { yyVal = new This (GetLocation (yyVals[0+yyTop])); } break; case 475: case_475(); break; case 476: case_476(); break; case 477: #line 3465 "cs-parser.jay" { yyVal = new UnaryMutator (UnaryMutator.Mode.PostIncrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); } break; case 478: #line 3472 "cs-parser.jay" { yyVal = new UnaryMutator (UnaryMutator.Mode.PostDecrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); } break; case 479: case_479(); break; case 480: case_480(); break; case 481: case_481(); break; case 482: case_482(); break; case 483: case_483(); break; case 484: case_484(); break; case 485: case_485(); break; case 486: #line 3538 "cs-parser.jay" { ++lexer.parsing_type; } break; case 487: case_487(); break; case 488: case_488(); break; case 491: #line 3565 "cs-parser.jay" { yyVal = null; } break; case 493: case_493(); break; case 494: case_494(); break; case 495: case_495(); break; case 496: case_496(); break; case 497: case_497(); break; case 498: case_498(); break; case 502: case_502(); break; case 503: case_503(); break; case 504: case_504(); break; case 505: #line 3643 "cs-parser.jay" { yyVal = 2; } break; case 506: #line 3647 "cs-parser.jay" { yyVal = ((int) yyVals[-1+yyTop]) + 1; } break; case 507: #line 3654 "cs-parser.jay" { yyVal = null; } break; case 508: #line 3658 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 509: case_509(); break; case 510: case_510(); break; case 511: case_511(); break; case 512: case_512(); break; case 513: #line 3702 "cs-parser.jay" { lexer.TypeOfParsing = true; } break; case 514: case_514(); break; case 517: case_517(); break; case 518: case_518(); break; case 519: case_519(); break; case 520: case_520(); break; case 521: case_521(); break; case 522: case_522(); break; case 523: case_523(); break; case 524: case_524(); break; case 525: case_525(); break; case 526: case_526(); break; case 527: case_527(); break; case 528: case_528(); break; case 529: #line 3822 "cs-parser.jay" { start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], false, GetLocation (yyVals[-1+yyTop])); } break; case 530: case_530(); break; case 531: #line 3835 "cs-parser.jay" { start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], true, GetLocation (yyVals[-2+yyTop])); } break; case 532: case_532(); break; case 533: #line 3852 "cs-parser.jay" { yyVal = ParametersCompiled.Undefined; } break; case 535: #line 3860 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; } break; case 536: case_536(); break; case 537: case_537(); break; case 539: #line 3886 "cs-parser.jay" { yyVal = new Unary (Unary.Operator.LogicalNot, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 540: #line 3890 "cs-parser.jay" { yyVal = new Unary (Unary.Operator.OnesComplement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 541: case_541(); break; case 542: case_542(); break; case 544: #line 3918 "cs-parser.jay" { yyVal = new Unary (Unary.Operator.UnaryPlus, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 545: #line 3922 "cs-parser.jay" { yyVal = new Unary (Unary.Operator.UnaryNegation, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 546: #line 3926 "cs-parser.jay" { yyVal = new UnaryMutator (UnaryMutator.Mode.PreIncrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 547: #line 3930 "cs-parser.jay" { yyVal = new UnaryMutator (UnaryMutator.Mode.PreDecrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 548: #line 3934 "cs-parser.jay" { yyVal = new Indirection ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 549: #line 3938 "cs-parser.jay" { yyVal = new Unary (Unary.Operator.AddressOf, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 551: case_551(); break; case 552: case_552(); break; case 553: case_553(); break; case 555: case_555(); break; case 556: #line 3970 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 557: case_557(); break; case 558: #line 3979 "cs-parser.jay" { yyVal = new As ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 559: #line 3983 "cs-parser.jay" { yyVal = new Is ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 561: case_561(); break; case 562: case_562(); break; case 564: case_564(); break; case 565: case_565(); break; case 566: case_566(); break; case 567: case_567(); break; case 569: case_569(); break; case 570: case_570(); break; case 572: case_572(); break; case 574: case_574(); break; case 576: case_576(); break; case 578: case_578(); break; case 580: case_580(); break; case 582: case_582(); break; case 584: case_584(); break; case 585: #line 4107 "cs-parser.jay" { yyVal = new SimpleAssign ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 586: case_586(); break; case 587: case_587(); break; case 588: case_588(); break; case 589: case_589(); break; case 590: case_590(); break; case 591: case_591(); break; case 592: case_592(); break; case 593: case_593(); break; case 594: case_594(); break; case 595: case_595(); break; case 596: case_596(); break; case 597: case_597(); break; case 598: case_598(); break; case 599: case_599(); break; case 600: case_600(); break; case 601: #line 4204 "cs-parser.jay" { yyVal = ParametersCompiled.EmptyReadOnlyParameters; } break; case 602: case_602(); break; case 605: #line 4220 "cs-parser.jay" { start_block (lexer.Location); } break; case 606: case_606(); break; case 608: case_608(); break; case 609: case_609(); break; case 610: case_610(); break; case 611: case_611(); break; case 612: case_612(); break; case 613: #line 4265 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; } break; case 614: case_614(); break; case 615: case_615(); break; case 616: #line 4279 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; } break; case 617: case_617(); break; case 618: case_618(); break; case 624: #line 4304 "cs-parser.jay" { yyVal = new ArglistAccess (GetLocation (yyVals[0+yyTop])); } break; case 625: case_625(); break; case 626: case_626(); break; case 627: case_627(); break; case 629: #line 4333 "cs-parser.jay" { yyVal = new BooleanExpression ((Expression) yyVals[0+yyTop]); } break; case 630: #line 4346 "cs-parser.jay" { lexer.ConstraintsParsing = true; } break; case 631: case_631(); break; case 632: case_632(); break; case 633: case_633(); break; case 634: case_634(); break; case 635: #line 4389 "cs-parser.jay" { yyVal = null; } break; case 636: #line 4391 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[0+yyTop])); } break; case 637: case_637(); break; case 638: #line 4404 "cs-parser.jay" { lexer.parsing_modifiers = false; } break; case 640: case_640(); break; case 641: case_641(); break; case 642: case_642(); break; case 643: case_643(); break; case 644: case_644(); break; case 645: case_645(); break; case 646: case_646(); break; case 647: case_647(); break; case 648: case_648(); break; case 649: case_649(); break; case 650: case_650(); break; case 651: case_651(); break; case 652: case_652(); break; case 653: case_653(); break; case 654: case_654(); break; case 655: case_655(); break; case 657: case_657(); break; case 659: #line 4524 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 660: case_660(); break; case 661: case_661(); break; case 662: case_662(); break; case 663: case_663(); break; case 664: case_664(); break; case 665: case_665(); break; case 666: case_666(); break; case 667: case_667(); break; case 668: #line 4615 "cs-parser.jay" { yyVal = new SpecialContraintExpr (SpecialConstraint.Class, GetLocation (yyVals[0+yyTop])); } break; case 669: #line 4619 "cs-parser.jay" { yyVal = new SpecialContraintExpr (SpecialConstraint.Struct, GetLocation (yyVals[0+yyTop])); } break; case 670: #line 4626 "cs-parser.jay" { yyVal = Variance.None; } break; case 671: case_671(); break; case 672: case_672(); break; case 673: case_673(); break; case 674: case_674(); break; case 675: #line 4671 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 676: case_676(); break; case 677: case_677(); break; case 678: case_678(); break; case 679: case_679(); break; case 684: #line 4715 "cs-parser.jay" { current_block.AddStatement ((Statement) yyVals[0+yyTop]); } break; case 685: #line 4719 "cs-parser.jay" { current_block.AddStatement ((Statement) yyVals[0+yyTop]); } break; case 687: case_687(); break; case 690: #line 4743 "cs-parser.jay" { current_block.AddStatement ((Statement) yyVals[0+yyTop]); } break; case 691: #line 4747 "cs-parser.jay" { current_block.AddStatement ((Statement) yyVals[0+yyTop]); } break; case 720: case_720(); break; case 721: case_721(); break; case 722: case_722(); break; case 723: case_723(); break; case 724: case_724(); break; case 727: case_727(); break; case 728: case_728(); break; case 729: case_729(); break; case 730: case_730(); break; case 731: #line 4891 "cs-parser.jay" { yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 732: #line 4895 "cs-parser.jay" { yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); } break; case 733: case_733(); break; case 735: case_735(); break; case 736: #line 4916 "cs-parser.jay" { yyVal = ComposedTypeSpecifier.CreatePointer (GetLocation (yyVals[0+yyTop])); } break; case 738: case_738(); break; case 739: case_739(); break; case 740: case_740(); break; case 741: case_741(); break; case 742: case_742(); break; case 744: case_744(); break; case 745: case_745(); break; case 749: case_749(); break; case 752: case_752(); break; case 753: case_753(); break; case 754: #line 5027 "cs-parser.jay" { report.Error (145, lexer.Location, "A const field requires a value to be provided"); } break; case 755: case_755(); break; case 760: case_760(); break; case 762: case_762(); break; case 763: case_763(); break; case 764: case_764(); break; case 765: #line 5077 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; } break; case 766: #line 5081 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; } break; case 767: #line 5082 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; } break; case 768: case_768(); break; case 769: case_769(); break; case 770: case_770(); break; case 773: case_773(); break; case 774: case_774(); break; case 775: #line 5150 "cs-parser.jay" { start_block (GetLocation (yyVals[0+yyTop])); } break; case 776: case_776(); break; case 777: case_777(); break; case 779: case_779(); break; case 780: case_780(); break; case 781: case_781(); break; case 782: #line 5194 "cs-parser.jay" { current_block = current_block.CreateSwitchBlock (lexer.Location); } break; case 783: #line 5198 "cs-parser.jay" { yyVal = new SwitchSection ((List) yyVals[-2+yyTop], current_block); } break; case 784: case_784(); break; case 785: case_785(); break; case 786: case_786(); break; case 787: #line 5227 "cs-parser.jay" { yyVal = new SwitchLabel (null, GetLocation (yyVals[0+yyTop])); } break; case 792: case_792(); break; case 793: case_793(); break; case 794: case_794(); break; case 795: #line 5266 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 796: case_796(); break; case 797: case_797(); break; case 798: case_798(); break; case 799: #line 5304 "cs-parser.jay" { yyVal = new EmptyStatement (lexer.Location); } break; case 801: case_801(); break; case 802: case_802(); break; case 804: #line 5325 "cs-parser.jay" { yyVal = null; } break; case 806: #line 5330 "cs-parser.jay" { yyVal = new EmptyStatement (lexer.Location); } break; case 810: case_810(); break; case 811: case_811(); break; case 812: case_812(); break; case 813: case_813(); break; case 820: case_820(); break; case 821: case_821(); break; case 822: case_822(); break; case 823: case_823(); break; case 824: case_824(); break; case 825: case_825(); break; case 826: case_826(); break; case 827: case_827(); break; case 828: case_828(); break; case 831: #line 5485 "cs-parser.jay" { yyVal = new TryCatch ((Block) yyVals[-1+yyTop], (List) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), false); } break; case 832: case_832(); break; case 833: case_833(); break; case 834: case_834(); break; case 835: case_835(); break; case 836: case_836(); break; case 839: #line 5538 "cs-parser.jay" { yyVal = new Catch ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 840: case_840(); break; case 841: #line 5557 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; } break; case 842: case_842(); break; case 843: #line 5575 "cs-parser.jay" { yyVal = new Checked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 844: #line 5582 "cs-parser.jay" { yyVal = new Unchecked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } break; case 845: case_845(); break; case 846: #line 5592 "cs-parser.jay" { yyVal = new Unsafe ((Block) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); } break; case 847: case_847(); break; case 848: case_848(); break; case 849: case_849(); break; case 850: case_850(); break; case 851: case_851(); break; case 852: case_852(); break; case 853: case_853(); break; case 854: case_854(); break; case 856: case_856(); break; case 857: #line 5684 "cs-parser.jay" { Error_MissingInitializer (lexer.Location); } break; case 858: case_858(); break; case 859: case_859(); break; case 860: case_860(); break; case 861: case_861(); break; case 862: case_862(); break; case 863: case_863(); break; case 864: case_864(); break; case 865: case_865(); break; case 866: case_866(); break; case 867: #line 5785 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 868: case_868(); break; case 869: #line 5800 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 870: case_870(); break; case 871: case_871(); break; case 873: case_873(); break; case 874: #line 5845 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 875: case_875(); break; case 876: case_876(); break; case 877: case_877(); break; case 878: case_878(); break; case 882: case_882(); break; case 888: #line 5904 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 889: case_889(); break; case 890: #line 5923 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 891: case_891(); break; case 892: case_892(); break; case 893: case_893(); break; case 894: case_894(); break; case 895: case_895(); break; case 896: case_896(); break; case 897: case_897(); break; case 898: case_898(); break; case 899: case_899(); break; case 901: #line 6067 "cs-parser.jay" { yyVal = yyVals[0+yyTop]; } break; case 902: #line 6074 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); } break; case 903: case_903(); break; case 905: case_905(); break; case 906: case_906(); break; case 908: case_908(); break; case 909: case_909(); break; case 910: #line 6120 "cs-parser.jay" { yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); } break; case 911: case_911(); break; case 912: case_912(); break; case 913: #line 6137 "cs-parser.jay" { yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); } break; case 914: case_914(); break; case 915: case_915(); break; case 917: case_917(); break; case 918: case_918(); break; case 921: case_921(); break; case 922: case_922(); break; case 930: #line 6261 "cs-parser.jay" { module.DocumentationBuilder.ParsedName = (MemberName) yyVals[0+yyTop]; } break; case 931: #line 6268 "cs-parser.jay" { module.DocumentationBuilder.ParsedParameters = (List)yyVals[0+yyTop]; } break; case 932: case_932(); break; case 933: case_933(); break; case 934: #line 6285 "cs-parser.jay" { yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], new MemberName (MemberCache.IndexerNameAlias)); } break; case 935: #line 6289 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; } break; case 936: case_936(); break; case 937: case_937(); break; case 938: case_938(); break; case 939: case_939(); break; case 941: #line 6325 "cs-parser.jay" { yyVal = new MemberName (((MemberName) yyVals[-2+yyTop]), (MemberName) yyVals[0+yyTop]); } break; case 943: #line 6333 "cs-parser.jay" { valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; } break; case 944: #line 6337 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; } break; case 945: #line 6344 "cs-parser.jay" { yyVal = new List (0); } break; case 947: case_947(); break; case 948: case_948(); break; case 949: case_949(); break; #line default } yyTop -= yyLen[yyN]; yyState = yyStates[yyTop]; int yyM = yyLhs[yyN]; if (yyState == 0 && yyM == 0) { //t if (debug != null) debug.shift(0, yyFinal); yyState = yyFinal; if (yyToken < 0) { yyToken = yyLex.advance() ? yyLex.token() : 0; //t if (debug != null) //t debug.lex(yyState, yyToken,yyname(yyToken), yyLex.value()); } if (yyToken == 0) { //t if (debug != null) debug.accept(yyVal); return yyVal; } goto continue_yyLoop; } if (((yyN = yyGindex[yyM]) != 0) && ((yyN += yyState) >= 0) && (yyN < yyTable.Length) && (yyCheck[yyN] == yyState)) yyState = yyTable[yyN]; else yyState = yyDgoto[yyM]; //t if (debug != null) debug.shift(yyStates[yyTop], yyState); goto continue_yyLoop; continue_yyDiscarded: ; // implements the named-loop continue: 'continue yyDiscarded' } continue_yyLoop: ; // implements the named-loop continue: 'continue yyLoop' } } /* All more than 3 lines long rules are wrapped into a method */ void case_6() #line 410 "cs-parser.jay" { if (yyVals[0+yyTop] != null) { Attributes attrs = (Attributes) yyVals[0+yyTop]; report.Error (1730, attrs.Attrs [0].Location, "Assembly and module attributes must precede all other elements except using clauses and extern alias declarations"); } } void case_8() #line 422 "cs-parser.jay" { if (yyToken == Token.EXTERN_ALIAS) report.Error (439, lexer.Location, "An extern alias declaration must precede all other elements"); else Error_SyntaxError (yyToken); } void case_13() #line 442 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; string s = lt.Value; if (s != "alias"){ syntax_error (lt.Location, "`alias' expected"); } else if (lang_version == LanguageVersion.ISO_1) { FeatureIsNotAvailable (lt.Location, "external alias"); } else { lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; current_namespace.AddUsingExternalAlias (lt.Value, lt.Location, report); ubag.AddExternAlias (GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop]), lt, GetLocation (yyVals[0+yyTop])); } } void case_17() #line 468 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_18() #line 473 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_19() #line 481 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; if (lang_version != LanguageVersion.ISO_1 && lt.Value == "global") { report.Warning (440, 2, lt.Location, "An alias named `global' will not be used when resolving `global::'. The global namespace will be used instead"); } current_namespace.AddUsingAlias (lt.Value, (MemberName) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop])); ubag.AddUsingAlias (GetLocation (yyVals[-4+yyTop]), lt, GetLocation (yyVals[-2+yyTop]), (MemberName) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); } void case_20() #line 492 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_21() #line 500 "cs-parser.jay" { current_namespace.AddUsing ((MemberName) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); ubag.AddUsing (GetLocation (yyVals[-2+yyTop]), (MemberName) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); } void case_22() #line 513 "cs-parser.jay" { Attributes attrs = (Attributes) yyVals[-2+yyTop]; MemberName name = (MemberName) yyVals[0+yyTop]; if (attrs != null) { bool valid_global_attrs = true; if ((current_namespace.DeclarationFound || current_namespace != file.NamespaceContainer)) { valid_global_attrs = false; } else { foreach (var a in attrs.Attrs) { if (a.ExplicitTarget == "assembly" || a.ExplicitTarget == "module") continue; valid_global_attrs = false; break; } } if (!valid_global_attrs) report.Error (1671, name.Location, "A namespace declaration cannot have modifiers or attributes"); } module.AddAttributes (attrs, current_namespace); current_namespace = new NamespaceContainer (name, module, current_namespace, file); module.AddTypesContainer (current_namespace); current_class = current_namespace.SlaveDeclSpace; current_container = current_class.PartialContainer; ubag.DeclareNamespace (GetLocation (yyVals[-1+yyTop]), name); } void case_23() #line 544 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; ubag.OpenNamespace (GetLocation (yyVals[0+yyTop])); } void case_24() #line 550 "cs-parser.jay" { current_namespace = current_namespace.Parent; current_class = current_namespace.SlaveDeclSpace; current_container = current_class.PartialContainer; ubag.CloseNamespace (GetLocation (yyVals[-1+yyTop])); if (yyVals[0+yyTop] != null) ubag.EndNamespace (GetLocation (yyVals[0+yyTop])); else ubag.EndNamespace (); } void case_25() #line 564 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new MemberName (lt.Value, lt.Location); } void case_26() #line 569 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], lt.Value, lt.Location) { DotLocation = GetLocation (yyVals[-1+yyTop]) }; } void case_27() #line 576 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = new MemberName ("", lexer.Location); } void case_32() #line 594 "cs-parser.jay" { MemberName name = (MemberName) yyVals[0+yyTop]; if (name.TypeArguments != null) syntax_error (lexer.Location, "namespace name expected"); yyVal = name; } void case_41() #line 626 "cs-parser.jay" { if (yyVals[0+yyTop] != null) { TypeContainer ds = (TypeContainer)yyVals[0+yyTop]; if ((ds.ModFlags & (Modifiers.PRIVATE | Modifiers.PROTECTED)) != 0){ report.Error (1527, ds.Location, "Namespace elements cannot be explicitly declared as private, protected or protected internal"); } /* Here is a trick, for explicit attributes we don't know where they belong to until*/ /* we parse succeeding declaration hence we parse them as normal and re-attach them*/ /* when we know whether they are global (assembly:, module:) or local (type:).*/ if (ds.OptAttributes != null) { ds.OptAttributes.ConvertGlobalAttributes (ds, current_namespace, !current_namespace.DeclarationFound && current_namespace == file.NamespaceContainer); } } current_namespace.DeclarationFound = true; } void case_50() #line 676 "cs-parser.jay" { var sect = (List) yyVals[0+yyTop]; yyVal = new Attributes (sect); if (locationListStack.Count > 0) lbag.AddLocation (sect, locationListStack.Pop ()); if (attributeCommas.Count > 0) { lbag.AppendTo (sect, attributeCommas); attributeCommas.Clear (); } } void case_51() #line 687 "cs-parser.jay" { Attributes attrs = yyVals[-1+yyTop] as Attributes; var sect = (List) yyVals[0+yyTop]; if (locationListStack.Count > 0) lbag.AddLocation (sect, locationListStack.Pop ()); if (attrs == null) attrs = new Attributes (sect); else attrs.AddAttributes (sect); yyVal = attrs; } void case_52() #line 703 "cs-parser.jay" { lexer.parsing_attribute_section = true; savedOpenLocation = GetLocation (yyVals[0+yyTop]); } void case_53() #line 708 "cs-parser.jay" { lexer.parsing_attribute_section = false; yyVal = yyVals[0+yyTop]; } void case_54() #line 716 "cs-parser.jay" { current_attr_target = (string) yyVals[-1+yyTop]; if (current_attr_target == "assembly" || current_attr_target == "module") { Lexer.check_incorrect_doc_comment (); } } void case_55() #line 723 "cs-parser.jay" { /* when attribute target is invalid*/ if (current_attr_target == string.Empty) yyVal = new List (0); else yyVal = yyVals[-2+yyTop]; current_attr_target = null; lexer.parsing_attribute_section = false; if (yyVals[-1+yyTop] != null) { locationListStack.Push (new List(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) })); } else { locationListStack.Push (new List(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop]) })); } } void case_56() #line 739 "cs-parser.jay" { yyVal = yyVals[-2+yyTop]; if (yyVals[-1+yyTop] != null) { locationListStack.Push (new List(new [] { savedOpenLocation, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) })); } else { locationListStack.Push (new List(new [] { savedOpenLocation, GetLocation (yyVals[0+yyTop]) })); } } void case_57() #line 751 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = CheckAttributeTarget (lt.Value, lt.Location); savedCloseLocation = GetLocation (yyVals[0+yyTop]); } void case_60() #line 759 "cs-parser.jay" { if (yyToken == Token.IDENTIFIER) { Error_SyntaxError (yyToken); yyVal = null; } else { string name = GetTokenName (yyToken); yyVal = CheckAttributeTarget (name, GetLocation (yyVals[0+yyTop])); } } void case_62() #line 776 "cs-parser.jay" { var attrs = (List) yyVals[-2+yyTop]; attrs.Add ((Attribute) yyVals[0+yyTop]); attributeCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = attrs; } void case_64() #line 791 "cs-parser.jay" { --lexer.parsing_block; MemberName mname = (MemberName) yyVals[-2+yyTop]; if (mname.IsGeneric) { report.Error (404, lexer.Location, "'<' unexpected: attributes cannot be generic"); } Arguments [] arguments = (Arguments []) yyVals[0+yyTop]; ATypeNameExpression expr = mname.GetTypeExpression (); yyVal = new Attribute (current_attr_target, expr, arguments, mname.Location, lexer.IsEscapedIdentifier (mname)); if (arguments != null) { attributeArgumentCommas.Insert (0, savedAttrParenOpenLocation); attributeArgumentCommas.Add (savedAttrParenCloseLocation); lbag.AddLocation (yyVal, attributeArgumentCommas); attributeArgumentCommas.Clear (); } } void case_67() #line 818 "cs-parser.jay" { savedAttrParenOpenLocation = GetLocation (yyVals[-2+yyTop]); savedAttrParenCloseLocation = GetLocation (yyVals[0+yyTop]); yyVal = yyVals[-1+yyTop]; } void case_69() #line 829 "cs-parser.jay" { Arguments a = new Arguments (4); a.Add ((Argument) yyVals[0+yyTop]); yyVal = new Arguments [] { a, null }; } void case_70() #line 835 "cs-parser.jay" { Arguments a = new Arguments (4); a.Add ((Argument) yyVals[0+yyTop]); yyVal = new Arguments [] { null, a }; } void case_71() #line 841 "cs-parser.jay" { Arguments[] o = (Arguments[]) yyVals[-2+yyTop]; if (o [1] != null) { report.Error (1016, ((Argument) yyVals[0+yyTop]).Expr.Location, "Named attribute arguments must appear after the positional arguments"); o [0] = new Arguments (4); } Arguments args = ((Arguments) o [0]); if (args.Count > 0 && !(yyVals[0+yyTop] is NamedArgument) && args [args.Count - 1] is NamedArgument) Error_NamedArgumentExpected ((NamedArgument) args [args.Count - 1]); args.Add ((Argument) yyVals[0+yyTop]); attributeArgumentCommas.Add (GetLocation (yyVals[-1+yyTop])); } void case_72() #line 856 "cs-parser.jay" { Arguments[] o = (Arguments[]) yyVals[-2+yyTop]; if (o [1] == null) { o [1] = new Arguments (4); } ((Arguments) o [1]).Add ((Argument) yyVals[0+yyTop]); attributeArgumentCommas.Add (GetLocation (yyVals[-1+yyTop])); } void case_76() #line 881 "cs-parser.jay" { --lexer.parsing_block; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; yyVal = new NamedArgument (lt.Value, lt.Location, (Expression) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation(yyVals[-2+yyTop])); } void case_77() #line 891 "cs-parser.jay" { if (lang_version <= LanguageVersion.V_3) FeatureIsNotAvailable (GetLocation (yyVals[-3+yyTop]), "named argument"); /* Avoid boxing in common case (no modifier)*/ var arg_mod = yyVals[-1+yyTop] == null ? Argument.AType.None : (Argument.AType) yyVals[-1+yyTop]; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; yyVal = new NamedArgument (lt.Value, lt.Location, (Expression) yyVals[0+yyTop], arg_mod); lbag.AddLocation (yyVal, GetLocation(yyVals[-2+yyTop])); } void case_95() #line 944 "cs-parser.jay" { report.Error (1519, lexer.Location, "Unexpected symbol `{0}' in class, struct, or interface member declaration", GetSymbolName (yyToken)); yyVal = null; lexer.parsing_generic_declaration = false; } void case_97() #line 961 "cs-parser.jay" { MemberName name = MakeName ((MemberName) yyVals[0+yyTop]); push_current_class (new Struct (current_namespace, current_class, name, (Modifiers) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop]), yyVals[-3+yyTop]); lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); } void case_98() #line 968 "cs-parser.jay" { lexer.ConstraintsParsing = false; current_class.SetParameterInfo ((List) yyVals[0+yyTop]); if (doc_support) current_container.DocComment = Lexer.consume_doc_comment (); lexer.parsing_modifiers = true; } void case_99() #line 980 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_100() #line 985 "cs-parser.jay" { lbag.AppendToMember (current_class, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); --lexer.parsing_declaration; if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_101() #line 992 "cs-parser.jay" { if (yyVals[-1+yyTop] != null) current_class.OptionalSemicolon = GetLocation (yyVals[-1+yyTop]); yyVal = pop_current_class (); } void case_103() #line 1007 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var mod = (Modifiers) yyVals[-3+yyTop]; current_field = new Const (current_class, (FullNamedExpression) yyVals[-1+yyTop], mod, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-4+yyTop]); current_container.AddConstant ((Const) current_field); if ((mod & Modifiers.STATIC) != 0) { report.Error (504, current_field.Location, "The constant `{0}' cannot be marked static", current_field.GetSignatureForError ()); } yyVal = current_field; } void case_104() #line 1020 "cs-parser.jay" { if (doc_support) { current_field.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } current_field.Initializer = (ConstInitializer) yyVals[-2+yyTop]; lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); current_field = null; } void case_109() #line 1050 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (ConstInitializer) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); } void case_111() #line 1063 "cs-parser.jay" { --lexer.parsing_block; yyVal = new ConstInitializer (current_field, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); } void case_112() #line 1069 "cs-parser.jay" { report.Error (145, lexer.Location, "A const field requires a value to be provided"); yyVal = null; } void case_115() #line 1084 "cs-parser.jay" { lexer.parsing_generic_declaration = false; FullNamedExpression type = (FullNamedExpression) yyVals[-1+yyTop]; if (type.Type != null && type.Type.Kind == MemberKind.Void) report.Error (670, GetLocation (yyVals[-1+yyTop]), "Fields cannot have void type"); var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; current_field = new Field (current_class, type, (Modifiers) yyVals[-2+yyTop], new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-3+yyTop]); current_container.AddField (current_field); yyVal = current_field; } void case_116() #line 1099 "cs-parser.jay" { if (doc_support) { current_field.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[0+yyTop])); yyVal = current_field; current_field = null; } void case_117() #line 1112 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "fixed size buffers"); var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; current_field = new FixedField (current_class, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-4+yyTop]); current_container.AddField (current_field); } void case_118() #line 1123 "cs-parser.jay" { if (doc_support) { current_field.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } current_field.Initializer = (ConstInitializer) yyVals[-2+yyTop]; lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); yyVal = current_field; current_field = null; } void case_121() #line 1146 "cs-parser.jay" { ++lexer.parsing_block; current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; start_block (GetLocation (yyVals[0+yyTop])); } void case_122() #line 1152 "cs-parser.jay" { --lexer.parsing_block; current_field.Initializer = (Expression) yyVals[0+yyTop]; lbag.AppendToMember (current_field, GetLocation (yyVals[-2+yyTop])); end_block (lexer.Location); current_local_parameters = null; } void case_127() #line 1179 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), null); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_129() #line 1189 "cs-parser.jay" { --lexer.parsing_block; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (Expression) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_134() #line 1215 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (ConstInitializer) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); } void case_136() #line 1228 "cs-parser.jay" { --lexer.parsing_block; yyVal = new ConstInitializer (current_field, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_137() #line 1234 "cs-parser.jay" { report.Error (443, lexer.Location, "Value or constant expected"); yyVal = null; } void case_140() #line 1244 "cs-parser.jay" { /* It has to be here for the parent to safely restore artificial block*/ Error_SyntaxError (yyToken); yyVal = null; } void case_141() #line 1253 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.NotAllowed; /* Add it early in the case of body being eof for full ast*/ Method m = (Method) yyVals[0+yyTop]; async_block = (m.ModFlags & Modifiers.ASYNC) != 0; current_container.AddMethod (m); } void case_142() #line 1263 "cs-parser.jay" { Method method = (Method) yyVals[-2+yyTop]; method.Block = (ToplevelBlock) yyVals[0+yyTop]; async_block = false; if (method.Block == null) { lbag.AppendToMember (method, savedLocation); /* semicolon*/ method.ParameterInfo.CheckParameters (method); if ((method.ModFlags & Modifiers.ASYNC) != 0) { report.Error (1994, method.Location, "`{0}': The async modifier can only be used with methods that have a body", method.GetSignatureForError ()); } } else { if (current_container.Kind == MemberKind.Interface) { report.Error (531, method.Location, "`{0}': interface members cannot have a definition", method.GetSignatureForError ()); } } current_local_parameters = null; if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_145() #line 1303 "cs-parser.jay" { lexer.ConstraintsParsing = false; valid_param_mod = 0; MemberName name = (MemberName) yyVals[-6+yyTop]; current_local_parameters = (ParametersCompiled) yyVals[-3+yyTop]; GenericMethod generic = null; if (name.TypeArguments != null) { generic = new GenericMethod (current_namespace, current_class, name, (FullNamedExpression) yyVals[-7+yyTop], current_local_parameters); generic.SetParameterInfo ((List) yyVals[0+yyTop]); } else if (yyVals[0+yyTop] != null) { report.Error (80, GetLocation (yyVals[0+yyTop]), "Constraints are not allowed on non-generic declarations"); } var method = Method.Create (current_class, generic, (FullNamedExpression) yyVals[-7+yyTop], (Modifiers) yyVals[-8+yyTop], name, current_local_parameters, (Attributes) yyVals[-9+yyTop], yyVals[0+yyTop] != null); if (doc_support) method.DocComment = Lexer.consume_doc_comment (); lbag.AddMember (method, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = method; } void case_147() #line 1338 "cs-parser.jay" { lexer.parsing_generic_declaration = false; valid_param_mod = ParameterModifierType.All; } void case_149() #line 1347 "cs-parser.jay" { lexer.ConstraintsParsing = false; valid_param_mod = 0; MemberName name = (MemberName) yyVals[-6+yyTop]; current_local_parameters = (ParametersCompiled) yyVals[-3+yyTop]; if (yyVals[-1+yyTop] != null && name.TypeArguments == null) report.Error (80, lexer.Location, "Constraints are not allowed on non-generic declarations"); GenericMethod generic = null; if (name.TypeArguments != null) { generic = new GenericMethod (current_namespace, current_class, name, new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-8+yyTop])), current_local_parameters); generic.SetParameterInfo ((List) yyVals[-1+yyTop]); } var modifiers = (Modifiers) yyVals[-10+yyTop]; modifiers |= Modifiers.PARTIAL; var method = Method.Create (current_class, generic, new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-8+yyTop])), modifiers, name, current_local_parameters, (Attributes) yyVals[-11+yyTop], yyVals[-1+yyTop] != null); if (doc_support) method.DocComment = Lexer.consume_doc_comment (); StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[-9+yyTop])); lbag.AddMember (method, mod_locations, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = method; } void case_150() #line 1384 "cs-parser.jay" { MemberName name = (MemberName) yyVals[-3+yyTop]; report.Error (1585, name.Location, "Member modifier `{0}' must precede the member type and name", ModifiersExtensions.Name ((Modifiers) yyVals[-4+yyTop])); var method = Method.Create (current_class, null, (FullNamedExpression) yyVals[-5+yyTop], 0, name, (ParametersCompiled) yyVals[-1+yyTop], (Attributes) yyVals[-7+yyTop], false); current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop]; if (doc_support) method.DocComment = Lexer.consume_doc_comment (); yyVal = method; } void case_155() #line 1413 "cs-parser.jay" { var pars_list = (List) yyVals[0+yyTop]; yyVal = new ParametersCompiled (pars_list.ToArray ()); lbag.AddLocation (yyVal, parameterListCommas); } void case_156() #line 1419 "cs-parser.jay" { var pars_list = (List) yyVals[-2+yyTop]; pars_list.Add ((Parameter) yyVals[0+yyTop]); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = new ParametersCompiled (pars_list.ToArray ()); lbag.AddLocation (yyVal, parameterListCommas); } void case_157() #line 1428 "cs-parser.jay" { var pars_list = (List) yyVals[-2+yyTop]; pars_list.Add (new ArglistParameter (GetLocation (yyVals[0+yyTop]))); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = new ParametersCompiled (pars_list.ToArray (), true); lbag.AddLocation (yyVal, parameterListCommas); } void case_158() #line 1437 "cs-parser.jay" { if (yyVals[-2+yyTop] != null) report.Error (231, ((Parameter) yyVals[-2+yyTop]).Location, "A params parameter must be the last parameter in a formal parameter list"); yyVal = new ParametersCompiled (new Parameter[] { (Parameter) yyVals[-2+yyTop] } ); lbag.AddLocation (yyVal, parameterListCommas); } void case_159() #line 1445 "cs-parser.jay" { if (yyVals[-2+yyTop] != null) report.Error (231, ((Parameter) yyVals[-2+yyTop]).Location, "A params parameter must be the last parameter in a formal parameter list"); var pars_list = (List) yyVals[-4+yyTop]; pars_list.Add (new ArglistParameter (GetLocation (yyVals[-2+yyTop]))); parameterListCommas.Add (GetLocation (yyVals[-3+yyTop])); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = new ParametersCompiled (pars_list.ToArray (), true); lbag.AddLocation (yyVal, parameterListCommas); } void case_160() #line 1458 "cs-parser.jay" { report.Error (257, GetLocation (yyVals[-2+yyTop]), "An __arglist parameter must be the last parameter in a formal parameter list"); yyVal = new ParametersCompiled (new Parameter [] { new ArglistParameter (GetLocation (yyVals[-2+yyTop])) }, true); lbag.AddLocation (yyVal, parameterListCommas); } void case_161() #line 1465 "cs-parser.jay" { report.Error (257, GetLocation (yyVals[-2+yyTop]), "An __arglist parameter must be the last parameter in a formal parameter list"); var pars_list = (List) yyVals[-4+yyTop]; pars_list.Add (new ArglistParameter (GetLocation (yyVals[-2+yyTop]))); parameterListCommas.Add (GetLocation (yyVals[-3+yyTop])); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = new ParametersCompiled (pars_list.ToArray (), true); lbag.AddLocation (yyVal, parameterListCommas); } void case_164() #line 1485 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = ParametersCompiled.EmptyReadOnlyParameters; } void case_165() #line 1493 "cs-parser.jay" { parameters_bucket.Clear (); Parameter p = (Parameter) yyVals[0+yyTop]; parameters_bucket.Add (p); parameterListCommas.Clear (); default_parameter_used = p.HasDefaultValue; yyVal = parameters_bucket; } void case_166() #line 1502 "cs-parser.jay" { var pars = (List) yyVals[-2+yyTop]; Parameter p = (Parameter) yyVals[0+yyTop]; if (p != null) { if (p.HasExtensionMethodModifier) report.Error (1100, p.Location, "The parameter modifier `this' can only be used on the first parameter"); else if (!p.HasDefaultValue && default_parameter_used) report.Error (1737, p.Location, "Optional parameter cannot precede required parameters"); default_parameter_used |= p.HasDefaultValue; pars.Add (p); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); } yyVal = yyVals[-2+yyTop]; } void case_167() #line 1526 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new Parameter ((FullNamedExpression) yyVals[-1+yyTop], lt.Value, (Parameter.Modifier) yyVals[-2+yyTop], (Attributes) yyVals[-3+yyTop], lt.Location); lbag.AddLocation (yyVal, parameterModifierLocation); } void case_168() #line 1535 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; report.Error (1552, lt.Location, "Array type specifier, [], must appear before parameter name"); yyVal = new Parameter ((FullNamedExpression) yyVals[-3+yyTop], lt.Value, (Parameter.Modifier) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop], lt.Location); lbag.AddLocation (yyVal, parameterModifierLocation); } void case_169() #line 1545 "cs-parser.jay" { Error_SyntaxError (yyToken); Location l = GetLocation (yyVals[0+yyTop]); yyVal = new Parameter ((FullNamedExpression) yyVals[-1+yyTop], null, (Parameter.Modifier) yyVals[-2+yyTop], (Attributes) yyVals[-3+yyTop], l); lbag.AddLocation (yyVal, parameterModifierLocation); } void case_171() #line 1560 "cs-parser.jay" { --lexer.parsing_block; if (lang_version <= LanguageVersion.V_3) { FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "optional parameter"); } Parameter.Modifier mod = (Parameter.Modifier) yyVals[-5+yyTop]; if (mod != Parameter.Modifier.NONE) { switch (mod) { case Parameter.Modifier.REF: case Parameter.Modifier.OUT: report.Error (1741, GetLocation (yyVals[-5+yyTop]), "Cannot specify a default value for the `{0}' parameter", Parameter.GetModifierSignature (mod)); break; case Parameter.Modifier.This: report.Error (1743, GetLocation (yyVals[-5+yyTop]), "Cannot specify a default value for the `{0}' parameter", Parameter.GetModifierSignature (mod)); break; default: throw new NotImplementedException (mod.ToString ()); } mod = Parameter.Modifier.NONE; } if ((valid_param_mod & ParameterModifierType.DefaultValue) == 0) report.Error (1065, GetLocation (yyVals[-2+yyTop]), "Optional parameter is not valid in this context"); var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; yyVal = new Parameter ((FullNamedExpression) yyVals[-4+yyTop], lt.Value, mod, (Attributes) yyVals[-6+yyTop], lt.Location); lbag.AddLocation (yyVal, parameterModifierLocation, GetLocation (yyVals[-2+yyTop])); /* parameterModifierLocation should be ignored when mod == NONE*/ if (yyVals[0+yyTop] != null) ((Parameter) yyVal).DefaultValue = new DefaultParameterValueExpression ((Expression) yyVals[0+yyTop]); } void case_175() #line 1609 "cs-parser.jay" { Parameter.Modifier p2 = (Parameter.Modifier)yyVals[0+yyTop]; Parameter.Modifier mod = (Parameter.Modifier)yyVals[-1+yyTop] | p2; if (((Parameter.Modifier)yyVals[-1+yyTop] & p2) == p2) { Error_DuplicateParameterModifier (lexer.Location, p2); } else { switch (mod & ~Parameter.Modifier.This) { case Parameter.Modifier.REF: report.Error (1101, lexer.Location, "The parameter modifiers `this' and `ref' cannot be used altogether"); break; case Parameter.Modifier.OUT: report.Error (1102, lexer.Location, "The parameter modifiers `this' and `out' cannot be used altogether"); break; default: report.Error (1108, lexer.Location, "A parameter cannot have specified more than one modifier"); break; } } yyVal = mod; } void case_176() #line 1633 "cs-parser.jay" { if ((valid_param_mod & ParameterModifierType.Ref) == 0) Error_ParameterModifierNotValid ("ref", GetLocation (yyVals[0+yyTop])); parameterModifierLocation = GetLocation (yyVals[0+yyTop]); yyVal = Parameter.Modifier.REF; } void case_177() #line 1640 "cs-parser.jay" { if ((valid_param_mod & ParameterModifierType.Out) == 0) Error_ParameterModifierNotValid ("out", GetLocation (yyVals[0+yyTop])); parameterModifierLocation = GetLocation (yyVals[0+yyTop]); yyVal = Parameter.Modifier.OUT; } void case_178() #line 1647 "cs-parser.jay" { if ((valid_param_mod & ParameterModifierType.This) == 0) Error_ParameterModifierNotValid ("this", GetLocation (yyVals[0+yyTop])); if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "extension methods"); parameterModifierLocation = GetLocation (yyVals[0+yyTop]); yyVal = Parameter.Modifier.This; } void case_179() #line 1660 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new ParamsParameter ((FullNamedExpression) yyVals[-1+yyTop], lt.Value, (Attributes) yyVals[-3+yyTop], lt.Location); lbag.AddLocation (yyVal, savedLocation); } void case_180() #line 1666 "cs-parser.jay" { report.Error (1751, GetLocation (yyVals[-4+yyTop]), "Cannot specify a default value for a parameter array"); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new ParamsParameter ((FullNamedExpression) yyVals[-3+yyTop], lt.Value, (Attributes) yyVals[-5+yyTop], lt.Location); lbag.AddLocation (yyVal, savedLocation); } void case_181() #line 1674 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_182() #line 1682 "cs-parser.jay" { if ((valid_param_mod & ParameterModifierType.Params) == 0) report.Error (1670, (GetLocation (yyVals[0+yyTop])), "The `params' modifier is not allowed in current context"); savedLocation = GetLocation (yyVals[0+yyTop]); } void case_183() #line 1688 "cs-parser.jay" { Parameter.Modifier mod = (Parameter.Modifier)yyVals[0+yyTop]; if ((mod & Parameter.Modifier.This) != 0) { report.Error (1104, GetLocation (yyVals[-1+yyTop]), "The parameter modifiers `this' and `params' cannot be used altogether"); } else { report.Error (1611, GetLocation (yyVals[-1+yyTop]), "The params parameter cannot be declared as ref or out"); } savedLocation = GetLocation (yyVals[-1+yyTop]); } void case_185() #line 1705 "cs-parser.jay" { if ((valid_param_mod & ParameterModifierType.Arglist) == 0) report.Error (1669, GetLocation (yyVals[0+yyTop]), "__arglist is not valid in this context"); } void case_186() #line 1716 "cs-parser.jay" { if (doc_support) tmpComment = Lexer.consume_doc_comment (); } void case_187() #line 1721 "cs-parser.jay" { var type = (FullNamedExpression) yyVals[-3+yyTop]; current_property = new Property (current_class, type, (Modifiers) yyVals[-4+yyTop], (MemberName) yyVals[-2+yyTop], (Attributes) yyVals[-5+yyTop]); if (type.Type != null && type.Type.Kind == MemberKind.Void) report.Error (547, GetLocation (yyVals[-3+yyTop]), "`{0}': property or indexer cannot have void type", current_property.GetSignatureForError ()); current_container.AddProperty ((Property)current_property); lbag.AddMember (current_property, GetModifierLocations (), GetLocation (yyVals[0+yyTop])); lexer.PropertyParsing = true; } void case_188() #line 1735 "cs-parser.jay" { lexer.PropertyParsing = false; if (doc_support) current_property.DocComment = ConsumeStoredComment (); } void case_189() #line 1742 "cs-parser.jay" { lbag.AppendToMember (current_property, GetLocation (yyVals[0+yyTop])); current_property = null; } void case_191() #line 1756 "cs-parser.jay" { valid_param_mod = 0; var type = (FullNamedExpression) yyVals[-6+yyTop]; Indexer indexer = new Indexer (current_class, type, (MemberName) yyVals[-5+yyTop], (Modifiers) yyVals[-7+yyTop], (ParametersCompiled) yyVals[-2+yyTop], (Attributes) yyVals[-8+yyTop]); current_property = indexer; current_container.AddIndexer (indexer); lbag.AddMember (current_property, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); if (type.Type != null && type.Type.Kind == MemberKind.Void) report.Error (620, GetLocation (yyVals[-6+yyTop]), "`{0}': indexer return type cannot be `void'", indexer.GetSignatureForError ()); if (indexer.ParameterInfo.IsEmpty) { report.Error (1551, GetLocation (yyVals[-4+yyTop]), "Indexers must have at least one parameter"); } if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lexer.PropertyParsing = true; } void case_193() #line 1785 "cs-parser.jay" { if (current_property.AccessorFirst != null && current_property.AccessorFirst.Block == null) ((Indexer) current_property).ParameterInfo.CheckParameters (current_property); if (doc_support) current_property.DocComment = ConsumeStoredComment (); lbag.AppendToMember (current_property, GetLocation (yyVals[-1+yyTop])); current_property = null; } void case_198() #line 1804 "cs-parser.jay" { if (yyToken == Token.CLOSE_BRACE) { report.Error (548, lexer.Location, "`{0}': property or indexer must have at least one accessor", current_property.GetSignatureForError ()); } else { if (yyToken == Token.SEMICOLON) report.Error (1597, lexer.Location, "Semicolon after method or accessor block is not valid"); else report.Error (1014, GetLocation (yyVals[0+yyTop]), "A get or set accessor expected"); } } void case_199() #line 1818 "cs-parser.jay" { if (yyVals[-1+yyTop] != ModifierNone && lang_version == LanguageVersion.ISO_1) { FeatureIsNotAvailable (GetLocation (yyVals[-1+yyTop]), "access modifiers on properties"); } if (current_property.Get != null) { report.Error (1007, GetLocation (yyVals[0+yyTop]), "Property accessor already defined"); } if (current_property is Indexer) { current_property.Get = new Indexer.GetIndexerMethod (current_property, (Modifiers) yyVals[-1+yyTop], ((Indexer)current_property).ParameterInfo.Clone (), (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); } else { current_property.Get = new Property.GetMethod (current_property, (Modifiers) yyVals[-1+yyTop], (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); } current_local_parameters = current_property.Get.ParameterInfo; lexer.PropertyParsing = false; } void case_200() #line 1839 "cs-parser.jay" { if (yyVals[0+yyTop] != null) { current_property.Get.Block = (ToplevelBlock) yyVals[0+yyTop]; if (current_container.Kind == MemberKind.Interface) { report.Error (531, current_property.Get.Block.StartLocation, "`{0}': interface members cannot have a definition", current_property.Get.GetSignatureForError ()); } lbag.AddMember (current_property.Get, GetModifierLocations ()); } else { lbag.AddMember (current_property.Get, GetModifierLocations (), savedLocation); } current_local_parameters = null; lexer.PropertyParsing = true; if (doc_support) if (Lexer.doc_state == XmlCommentState.Error) Lexer.doc_state = XmlCommentState.NotAllowed; } void case_201() #line 1863 "cs-parser.jay" { if (yyVals[-1+yyTop] != ModifierNone && lang_version == LanguageVersion.ISO_1) { FeatureIsNotAvailable (GetLocation (yyVals[-1+yyTop]), "access modifiers on properties"); } if (current_property.Set != null) { report.Error (1007, GetLocation (yyVals[0+yyTop]), "Property accessor already defined"); } if (current_property is Indexer) { current_property.Set = new Indexer.SetIndexerMethod (current_property, (Modifiers) yyVals[-1+yyTop], ParametersCompiled.MergeGenerated (compiler, ((Indexer)current_property).ParameterInfo, true, new Parameter ( current_property.TypeExpression, "value", Parameter.Modifier.NONE, null, GetLocation (yyVals[0+yyTop])), null), (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); } else { current_property.Set = new Property.SetMethod (current_property, (Modifiers) yyVals[-1+yyTop], ParametersCompiled.CreateImplicitParameter (current_property.TypeExpression, GetLocation (yyVals[0+yyTop])), (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); } current_local_parameters = current_property.Set.ParameterInfo; lexer.PropertyParsing = false; } void case_202() #line 1889 "cs-parser.jay" { if (yyVals[0+yyTop] != null) { current_property.Set.Block = (ToplevelBlock) yyVals[0+yyTop]; if (current_container.Kind == MemberKind.Interface) { report.Error (531, current_property.Set.Block.StartLocation, "`{0}': interface members cannot have a definition", current_property.Set.GetSignatureForError ()); } lbag.AddMember (current_property.Set, GetModifierLocations ()); } else { lbag.AddMember (current_property.Set, GetModifierLocations (), savedLocation); } current_local_parameters = null; lexer.PropertyParsing = true; if (doc_support && Lexer.doc_state == XmlCommentState.Error) Lexer.doc_state = XmlCommentState.NotAllowed; } void case_204() #line 1914 "cs-parser.jay" { savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } void case_205() #line 1919 "cs-parser.jay" { Error_SyntaxError (1043, yyToken, "Invalid accessor body"); yyVal = null; } void case_207() #line 1934 "cs-parser.jay" { MemberName name = MakeName ((MemberName) yyVals[0+yyTop]); push_current_class (new Interface (current_namespace, current_class, name, (Modifiers) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop]), yyVals[-3+yyTop]); lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); } void case_208() #line 1941 "cs-parser.jay" { lexer.ConstraintsParsing = false; current_class.SetParameterInfo ((List) yyVals[0+yyTop]); if (doc_support) { current_container.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lexer.parsing_modifiers = true; } void case_209() #line 1954 "cs-parser.jay" { --lexer.parsing_declaration; if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_210() #line 1960 "cs-parser.jay" { if (yyVals[0+yyTop] != null) current_class.OptionalSemicolon = GetLocation (yyVals[0+yyTop]); lbag.AppendToMember (current_class, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = pop_current_class (); } void case_226() #line 2020 "cs-parser.jay" { OperatorDeclaration decl = (OperatorDeclaration) yyVals[-2+yyTop]; if (decl != null) { Operator op = new Operator ( current_class, decl.optype, decl.ret_type, (Modifiers) yyVals[-3+yyTop], current_local_parameters, (ToplevelBlock) yyVals[0+yyTop], (Attributes) yyVals[-4+yyTop], decl.location); if (op.Block == null) op.ParameterInfo.CheckParameters (op); if (doc_support) { op.DocComment = tmpComment; Lexer.doc_state = XmlCommentState.Allowed; } /* Note again, checking is done in semantic analysis*/ current_container.AddOperator (op); lbag.AddMember (op, GetModifierLocations (), lbag.GetLocations (decl)); if (yyVals[0+yyTop] == null) { /* Semicolon*/ lbag.AppendTo (op, savedLocation); } } current_local_parameters = null; } void case_230() #line 2057 "cs-parser.jay" { report.Error (590, GetLocation (yyVals[0+yyTop]), "User-defined operators cannot return void"); yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } void case_232() #line 2069 "cs-parser.jay" { valid_param_mod = 0; Location loc = GetLocation (yyVals[-5+yyTop]); Operator.OpType op = (Operator.OpType) yyVals[-4+yyTop]; current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; int p_count = current_local_parameters.Count; if (p_count == 1) { if (op == Operator.OpType.Addition) op = Operator.OpType.UnaryPlus; else if (op == Operator.OpType.Subtraction) op = Operator.OpType.UnaryNegation; } if (IsUnaryOperator (op)) { if (p_count == 2) { report.Error (1020, loc, "Overloadable binary operator expected"); } else if (p_count != 1) { report.Error (1535, loc, "Overloaded unary operator `{0}' takes one parameter", Operator.GetName (op)); } } else { if (p_count > 2) { report.Error (1534, loc, "Overloaded binary operator `{0}' takes two parameters", Operator.GetName (op)); } else if (p_count != 2) { report.Error (1019, loc, "Overloadable unary operator expected"); } } if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.NotAllowed; } yyVal = new OperatorDeclaration (op, (FullNamedExpression) yyVals[-6+yyTop], loc); lbag.AddLocation (yyVal, GetLocation (yyVals[-5+yyTop]), savedOperatorLocation, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_257() #line 2145 "cs-parser.jay" { valid_param_mod = 0; Location loc = GetLocation (yyVals[-5+yyTop]); current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.NotAllowed; } yyVal = new OperatorDeclaration (Operator.OpType.Implicit, (FullNamedExpression) yyVals[-4+yyTop], loc); lbag.AddLocation (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_259() #line 2164 "cs-parser.jay" { valid_param_mod = 0; Location loc = GetLocation (yyVals[-5+yyTop]); current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.NotAllowed; } yyVal = new OperatorDeclaration (Operator.OpType.Explicit, (FullNamedExpression) yyVals[-4+yyTop], loc); lbag.AddLocation (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_260() #line 2179 "cs-parser.jay" { Error_SyntaxError (yyToken); current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; yyVal = new OperatorDeclaration (Operator.OpType.Implicit, null, GetLocation (yyVals[-1+yyTop])); } void case_261() #line 2185 "cs-parser.jay" { Error_SyntaxError (yyToken); current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; yyVal = new OperatorDeclaration (Operator.OpType.Explicit, null, GetLocation (yyVals[-1+yyTop])); } void case_262() #line 2195 "cs-parser.jay" { Constructor c = (Constructor) yyVals[-1+yyTop]; c.Block = (ToplevelBlock) yyVals[0+yyTop]; if (doc_support) c.DocComment = ConsumeStoredComment (); current_container.AddConstructor (c); current_local_parameters = null; if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_263() #line 2214 "cs-parser.jay" { if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } valid_param_mod = ParameterModifierType.All; } void case_264() #line 2223 "cs-parser.jay" { valid_param_mod = 0; current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop]; /**/ /* start block here, so possible anonymous methods inside*/ /* constructor initializer can get correct parent block*/ /**/ start_block (lexer.Location); } void case_265() #line 2234 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-6+yyTop]; var mods = (Modifiers) yyVals[-7+yyTop]; ConstructorInitializer ci = (ConstructorInitializer) yyVals[0+yyTop]; Constructor c = new Constructor (current_class, lt.Value, mods, (Attributes) yyVals[-8+yyTop], current_local_parameters, ci, lt.Location); if (lt.Value != current_container.MemberName.Name) { report.Error (1520, c.Location, "Class, struct, or interface method must have a return type"); } else if ((mods & Modifiers.STATIC) != 0) { if ((mods & Modifiers.AccessibilityMask) != 0){ report.Error (515, c.Location, "`{0}': static constructor cannot have an access modifier", c.GetSignatureForError ()); } if (ci != null) { report.Error (514, c.Location, "`{0}': static constructor cannot have an explicit `this' or `base' constructor call", c.GetSignatureForError ()); } } lbag.AddMember (c, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = c; } void case_271() #line 2279 "cs-parser.jay" { --lexer.parsing_block; yyVal = new ConstructorBaseInitializer ((Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_273() #line 2289 "cs-parser.jay" { --lexer.parsing_block; yyVal = new ConstructorThisInitializer ((Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_274() #line 2295 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_275() #line 2303 "cs-parser.jay" { if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.NotAllowed; } current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; } void case_276() #line 2312 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; if (lt.Value != current_container.MemberName.Name){ report.Error (574, lt.Location, "Name of destructor must match name of class"); } else if (current_container.Kind != MemberKind.Class){ report.Error (575, lt.Location, "Only class types can contain destructor"); } Destructor d = new Destructor (current_class, (Modifiers) yyVals[-6+yyTop], ParametersCompiled.EmptyReadOnlyParameters, (Attributes) yyVals[-7+yyTop], lt.Location); if (doc_support) d.DocComment = ConsumeStoredComment (); d.Block = (ToplevelBlock) yyVals[0+yyTop]; current_container.AddMethod (d); lbag.AddMember (d, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[-1+yyTop])); current_local_parameters = null; } void case_277() #line 2337 "cs-parser.jay" { current_event_field = new EventField (current_class, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], (MemberName) yyVals[0+yyTop], (Attributes) yyVals[-4+yyTop]); current_container.AddEvent (current_event_field); if (current_event_field.MemberName.Left != null) { report.Error (71, current_event_field.Location, "`{0}': An explicit interface implementation of an event must use property syntax", current_event_field.GetSignatureForError ()); } yyVal = current_event_field; } void case_278() #line 2351 "cs-parser.jay" { if (doc_support) { current_event_field.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lbag.AddMember (current_event_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); current_event_field = null; } void case_279() #line 2364 "cs-parser.jay" { current_event = new EventProperty (current_class, (FullNamedExpression) yyVals[-2+yyTop], (Modifiers) yyVals[-4+yyTop], (MemberName) yyVals[-1+yyTop], (Attributes) yyVals[-5+yyTop]); current_container.AddEvent (current_event); lbag.AddMember (current_event, GetModifierLocations (), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); lexer.EventParsing = true; } void case_280() #line 2372 "cs-parser.jay" { if (current_container.Kind == MemberKind.Interface) report.Error (69, GetLocation (yyVals[-2+yyTop]), "Event in interface cannot have add or remove accessors"); lexer.EventParsing = false; } void case_281() #line 2379 "cs-parser.jay" { if (doc_support) { current_event.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lbag.AppendToMember (current_event, GetLocation (yyVals[-1+yyTop])); current_event = null; current_local_parameters = null; } void case_284() #line 2398 "cs-parser.jay" { --lexer.parsing_block; current_event_field.Initializer = (Expression) yyVals[0+yyTop]; } void case_289() #line 2422 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), null); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_291() #line 2432 "cs-parser.jay" { --lexer.parsing_block; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (Expression) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_292() #line 2441 "cs-parser.jay" { if (current_container.Kind == MemberKind.Interface) { report.Error (68, lexer.Location, "`{0}': event in interface cannot have an initializer", current_event_field.GetSignatureForError ()); } if ((current_event_field.ModFlags & Modifiers.ABSTRACT) != 0) { report.Error (74, lexer.Location, "`{0}': abstract event cannot have an initializer", current_event_field.GetSignatureForError ()); } } void case_296() #line 2462 "cs-parser.jay" { report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", current_event.GetSignatureForError ()); } void case_297() #line 2467 "cs-parser.jay" { report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", current_event.GetSignatureForError ()); } void case_298() #line 2472 "cs-parser.jay" { report.Error (1055, GetLocation (yyVals[0+yyTop]), "An add or remove accessor expected"); yyVal = null; } void case_299() #line 2480 "cs-parser.jay" { if (yyVals[-1+yyTop] != ModifierNone) { report.Error (1609, GetLocation (yyVals[-1+yyTop]), "Modifiers cannot be placed on event accessor declarations"); } current_event.Add = new EventProperty.AddDelegateMethod (current_event, (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); current_local_parameters = current_event.Add.ParameterInfo; lbag.AddMember (current_event.Add, GetModifierLocations ()); lexer.EventParsing = false; } void case_300() #line 2492 "cs-parser.jay" { lexer.EventParsing = true; current_event.Add.Block = (ToplevelBlock) yyVals[0+yyTop]; if (current_container.Kind == MemberKind.Interface) { report.Error (531, current_event.Add.Block.StartLocation, "`{0}': interface members cannot have a definition", current_event.Add.GetSignatureForError ()); } current_local_parameters = null; } void case_301() #line 2508 "cs-parser.jay" { if (yyVals[-1+yyTop] != ModifierNone) { report.Error (1609, GetLocation (yyVals[-1+yyTop]), "Modifiers cannot be placed on event accessor declarations"); } current_event.Remove = new EventProperty.RemoveDelegateMethod (current_event, (Attributes) yyVals[-2+yyTop], GetLocation (yyVals[0+yyTop])); current_local_parameters = current_event.Remove.ParameterInfo; lbag.AddMember (current_event.Remove, GetModifierLocations ()); lexer.EventParsing = false; } void case_302() #line 2520 "cs-parser.jay" { lexer.EventParsing = true; current_event.Remove.Block = (ToplevelBlock) yyVals[0+yyTop]; if (current_container.Kind == MemberKind.Interface) { report.Error (531, current_event.Remove.Block.StartLocation, "`{0}': interface members cannot have a definition", current_event.Remove.GetSignatureForError ()); } current_local_parameters = null; } void case_303() #line 2536 "cs-parser.jay" { report.Error (73, lexer.Location, "An add or remove accessor must have a body"); yyVal = null; } void case_306() #line 2552 "cs-parser.jay" { if (doc_support) enumTypeComment = Lexer.consume_doc_comment (); } void case_307() #line 2557 "cs-parser.jay" { if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; enumCommas.Add (GetLocation (yyVals[0+yyTop])); MemberName name = (MemberName) yyVals[-3+yyTop]; if (name.IsGeneric) { report.Error (1675, name.Location, "Enums cannot have type parameters"); } push_current_class (new Enum (current_namespace, current_class, (TypeExpression) yyVals[-2+yyTop], (Modifiers) yyVals[-6+yyTop], MakeName (name), (Attributes) yyVals[-7+yyTop]), null); } void case_308() #line 2570 "cs-parser.jay" { /* here will be evaluated after CLOSE_BLACE is consumed.*/ if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_309() #line 2576 "cs-parser.jay" { enumCommas.Add (GetLocation (yyVals[-1+yyTop])); if (yyVals[0+yyTop] != null) current_class.OptionalSemicolon = GetLocation (yyVals[0+yyTop]); if (doc_support) current_class.DocComment = enumTypeComment; --lexer.parsing_declaration; lbag.AddMember (current_class, GetModifierLocations (), enumCommas); enumCommas.Clear (); yyVal = pop_current_class (); } void case_311() #line 2594 "cs-parser.jay" { var te = yyVals[0+yyTop] as TypeExpression; if (te == null || !EnumSpec.IsValidUnderlyingType (te.Type)) { Enum.Error_1008 (GetLocation (yyVals[0+yyTop]), report); yyVal = null; } else { enumCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = yyVals[0+yyTop]; } } void case_312() #line 2605 "cs-parser.jay" { Error_TypeExpected (GetLocation (yyVals[-1+yyTop])); yyVal = null; } void case_317() #line 2623 "cs-parser.jay" { enumCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = yyVals[0+yyTop]; } void case_318() #line 2631 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var em = new EnumMember ((Enum) current_class, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-1+yyTop]); ((Enum) current_class).AddEnumMember (em); if (doc_support) { em.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } yyVal = em; } void case_319() #line 2644 "cs-parser.jay" { ++lexer.parsing_block; if (doc_support) { tmpComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.NotAllowed; } } void case_320() #line 2652 "cs-parser.jay" { --lexer.parsing_block; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var em = new EnumMember ((Enum) current_class, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-4+yyTop]); em.Initializer = new ConstInitializer (em, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); ((Enum) current_class).AddEnumMember (em); if (doc_support) em.DocComment = ConsumeStoredComment (); yyVal = em; } void case_322() #line 2677 "cs-parser.jay" { valid_param_mod = 0; MemberName name = MakeName ((MemberName) yyVals[-4+yyTop]); ParametersCompiled p = (ParametersCompiled) yyVals[-1+yyTop]; Delegate del = new Delegate (current_namespace, current_class, (FullNamedExpression) yyVals[-5+yyTop], (Modifiers) yyVals[-7+yyTop], name, p, (Attributes) yyVals[-8+yyTop]); p.CheckParameters (del); ubag.PushTypeDeclaration (del); ubag.PopTypeDeclaration (); current_container.AddDelegate (del); current_delegate = del; lexer.ConstraintsParsing = true; } void case_324() #line 2699 "cs-parser.jay" { if (doc_support) { current_delegate.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } current_delegate.SetParameterInfo ((List) yyVals[-2+yyTop]); lbag.AddMember (current_delegate, GetModifierLocations (), GetLocation (yyVals[-10+yyTop]), GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop])); yyVal = current_delegate; current_delegate = null; } void case_326() #line 2717 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "nullable types"); yyVal = ComposedTypeSpecifier.CreateNullable (GetLocation (yyVals[0+yyTop])); } void case_328() #line 2728 "cs-parser.jay" { var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberName (lt1.Value, lt2.Value, (TypeArguments) yyVals[0+yyTop], lt1.Location); } void case_330() #line 2739 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberName ((MemberName) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_331() #line 2749 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); } void case_333() #line 2761 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "generics"); var list = locationListStack.Pop (); list.Add (GetLocation (yyVals[-2+yyTop])); list.Add (GetLocation (yyVals[-1+yyTop])); lbag.AddLocation (yyVals[-1+yyTop], list); yyVal = yyVals[-1+yyTop];; } void case_334() #line 2772 "cs-parser.jay" { Error_TypeExpected (lexer.Location); yyVal = new TypeArguments (); } void case_335() #line 2780 "cs-parser.jay" { TypeArguments type_args = new TypeArguments (); type_args.Add ((FullNamedExpression) yyVals[0+yyTop]); yyVal = type_args; locationListStack.Push (new List ()); } void case_336() #line 2787 "cs-parser.jay" { TypeArguments type_args = (TypeArguments) yyVals[-2+yyTop]; type_args.Add ((FullNamedExpression) yyVals[0+yyTop]); yyVal = type_args; locationListStack.Peek ().Add (GetLocation (yyVals[-1+yyTop])); } void case_338() #line 2804 "cs-parser.jay" { lexer.parsing_generic_declaration = false; var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new MemberName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); } void case_339() #line 2813 "cs-parser.jay" { MemberName mn = (MemberName)yyVals[0+yyTop]; if (mn.TypeArguments != null) syntax_error (mn.Location, string.Format ("Member `{0}' cannot declare type arguments", mn.GetSignatureForError ())); } void case_341() #line 2824 "cs-parser.jay" { lexer.parsing_generic_declaration = false; var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location); } void case_342() #line 2833 "cs-parser.jay" { lexer.parsing_generic_declaration = false; yyVal = new MemberName (TypeContainer.DefaultIndexerName, GetLocation (yyVals[0+yyTop])); } void case_343() #line 2838 "cs-parser.jay" { lexer.parsing_generic_declaration = false; yyVal = new MemberName ((MemberName) yyVals[-1+yyTop], TypeContainer.DefaultIndexerName, null, GetLocation (yyVals[0+yyTop])); } void case_344() #line 2846 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new MemberName (lt.Value, (TypeArguments) yyVals[-1+yyTop], lt.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_345() #line 2852 "cs-parser.jay" { var lt1 = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var lt2 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new MemberName (lt1.Value, lt2.Value, (TypeArguments) yyVals[-1+yyTop], lt1.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_346() #line 2860 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new MemberName ((MemberName) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[-1+yyTop], lt.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_348() #line 2870 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "generics"); yyVal = yyVals[-1+yyTop]; lbag.AppendTo (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_349() #line 2881 "cs-parser.jay" { TypeArguments type_args = new TypeArguments (); type_args.Add ((FullNamedExpression)yyVals[0+yyTop]); yyVal = type_args; } void case_350() #line 2887 "cs-parser.jay" { TypeArguments type_args = (TypeArguments) yyVals[-2+yyTop]; type_args.Add ((FullNamedExpression)yyVals[0+yyTop]); yyVal = type_args; lbag.AppendTo (type_args, GetLocation (yyVals[-1+yyTop])); } void case_351() #line 2897 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken)yyVals[0+yyTop]; var variance = (Variance) yyVals[-1+yyTop]; yyVal = new TypeParameterName (lt.Value, (Attributes)yyVals[-2+yyTop], variance, lt.Location); if (variance != Variance.None) lbag.AddLocation (yyVal, savedLocation); } void case_352() #line 2905 "cs-parser.jay" { if (GetTokenName (yyToken) == "type") report.Error (81, GetLocation (yyVals[0+yyTop]), "Type parameter declaration must be an identifier not a type"); else Error_SyntaxError (yyToken); yyVal = new TypeParameterName ("", null, lexer.Location); } void case_357() #line 2939 "cs-parser.jay" { Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } void case_359() #line 2948 "cs-parser.jay" { Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } void case_361() #line 2957 "cs-parser.jay" { report.Error (1536, GetLocation (yyVals[0+yyTop]), "Invalid parameter type `void'"); yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } void case_364() #line 2973 "cs-parser.jay" { MemberName name = (MemberName) yyVals[-1+yyTop]; if (yyVals[0+yyTop] != null) { yyVal = new ComposedCast (name.GetTypeExpression (), (ComposedTypeSpecifier) yyVals[0+yyTop]); } else { if (name.Left == null && name.Name == "var") yyVal = new VarExpr (name.Location); else yyVal = name.GetTypeExpression (); } } void case_366() #line 2990 "cs-parser.jay" { if (yyVals[0+yyTop] != null) yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } void case_369() #line 3006 "cs-parser.jay" { var types = new List (2); types.Add ((FullNamedExpression) yyVals[0+yyTop]); yyVal = types; } void case_370() #line 3012 "cs-parser.jay" { var types = (List) yyVals[-2+yyTop]; types.Add ((FullNamedExpression) yyVals[0+yyTop]); lbag.AppendTo (types, GetLocation (yyVals[-1+yyTop])); yyVal = types; } void case_371() #line 3022 "cs-parser.jay" { if (yyVals[0+yyTop] is ComposedCast) { report.Error (1521, GetLocation (yyVals[0+yyTop]), "Invalid base type `{0}'", ((ComposedCast)yyVals[0+yyTop]).GetSignatureForError ()); } yyVal = yyVals[0+yyTop]; } void case_372() #line 3029 "cs-parser.jay" { Error_TypeExpected (lexer.Location); yyVal = null; } void case_409() #line 3091 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); } void case_410() #line 3095 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new CompletionSimpleName (MemberName.MakeName (lt.Value, null), lt.Location); } void case_421() #line 3136 "cs-parser.jay" { yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_423() #line 3148 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_424() #line 3155 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_425() #line 3162 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess (new BaseThis (GetLocation (yyVals[-3+yyTop])), lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_426() #line 3169 "cs-parser.jay" { var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (TypeArguments) yyVals[0+yyTop], lt1.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_428() #line 3179 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); } void case_430() #line 3187 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); } void case_431() #line 3195 "cs-parser.jay" { yyVal = new Invocation ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_434() #line 3208 "cs-parser.jay" { if (yyVals[-1+yyTop] == null) { yyVal = CollectionOrObjectInitializers.Empty; /* TODO: lbag*/ } else { yyVal = new CollectionOrObjectInitializers ((List) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } } void case_435() #line 3218 "cs-parser.jay" { yyVal = new CollectionOrObjectInitializers ((List) yyVals[-2+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_438() #line 3234 "cs-parser.jay" { var a = new List (); a.Add ((Expression) yyVals[0+yyTop]); yyVal = a; } void case_439() #line 3240 "cs-parser.jay" { var a = (List)yyVals[-2+yyTop]; a.Add ((Expression) yyVals[0+yyTop]); lbag.AppendTo (a, GetLocation (yyVals[-1+yyTop])); yyVal = a; } void case_440() #line 3246 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = yyVals[-1+yyTop]; } void case_441() #line 3254 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new ElementInitializer (lt.Value, (Expression)yyVals[0+yyTop], lt.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_443() #line 3263 "cs-parser.jay" { CompletionSimpleName csn = yyVals[-1+yyTop] as CompletionSimpleName; if (csn == null) yyVal = new CollectionElementInitializer ((Expression)yyVals[-1+yyTop]); else yyVal = new CompletionElementInitializer (csn.Prefix, csn.Location); } void case_444() #line 3271 "cs-parser.jay" { if (yyVals[-1+yyTop] == null) yyVal = null; else yyVal = new CollectionElementInitializer ((List)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); } void case_445() #line 3278 "cs-parser.jay" { report.Error (1920, GetLocation (yyVals[-1+yyTop]), "An element initializer cannot be empty"); yyVal = null; } void case_450() #line 3296 "cs-parser.jay" { Arguments list = new Arguments (4); list.Add ((Argument) yyVals[0+yyTop]); yyVal = list; } void case_451() #line 3302 "cs-parser.jay" { Arguments list = (Arguments) yyVals[-2+yyTop]; if (list [list.Count - 1] is NamedArgument) Error_NamedArgumentExpected ((NamedArgument) list [list.Count - 1]); list.Add ((Argument) yyVals[0+yyTop]); lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop])); yyVal = list; } void case_452() #line 3312 "cs-parser.jay" { Arguments list = (Arguments) yyVals[-2+yyTop]; NamedArgument a = (NamedArgument) yyVals[0+yyTop]; for (int i = 0; i < list.Count; ++i) { NamedArgument na = list [i] as NamedArgument; if (na != null && na.Name == a.Name) report.Error (1740, na.Location, "Named argument `{0}' specified multiple times", na.Name); } list.Add (a); lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop])); yyVal = list; } void case_453() #line 3327 "cs-parser.jay" { report.Error (839, GetLocation (yyVals[0+yyTop]), "An argument is missing"); yyVal = yyVals[-1+yyTop]; } void case_454() #line 3332 "cs-parser.jay" { report.Error (839, GetLocation (yyVals[-1+yyTop]), "An argument is missing"); yyVal = null; } void case_459() #line 3353 "cs-parser.jay" { yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Ref); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_460() #line 3358 "cs-parser.jay" { yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Out); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_461() #line 3363 "cs-parser.jay" { yyVal = new Argument (new Arglist ((Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop]))); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_462() #line 3368 "cs-parser.jay" { yyVal = new Argument (new Arglist (GetLocation (yyVals[-2+yyTop]))); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_464() #line 3380 "cs-parser.jay" { yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_467() #line 3396 "cs-parser.jay" { var list = new List (4); list.Add ((Expression) yyVals[0+yyTop]); yyVal = list; } void case_468() #line 3402 "cs-parser.jay" { var list = (List) yyVals[-2+yyTop]; list.Add ((Expression) yyVals[0+yyTop]); lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop])); yyVal = list; } void case_469() #line 3408 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = yyVals[-1+yyTop]; } void case_470() #line 3416 "cs-parser.jay" { Arguments args = new Arguments (4); args.Add ((Argument) yyVals[0+yyTop]); yyVal = args; } void case_471() #line 3422 "cs-parser.jay" { Arguments args = (Arguments) yyVals[-2+yyTop]; if (args [args.Count - 1] is NamedArgument && !(yyVals[0+yyTop] is NamedArgument)) Error_NamedArgumentExpected ((NamedArgument) args [args.Count - 1]); args.Add ((Argument) yyVals[0+yyTop]); lbag.AppendTo (args, GetLocation (yyVals[-1+yyTop])); yyVal = args; } void case_475() #line 3450 "cs-parser.jay" { yyVal = new ElementAccess (new BaseThis (GetLocation (yyVals[-3+yyTop])), (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_476() #line 3455 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = new ElementAccess (null, null, GetLocation (yyVals[-1+yyTop])); } void case_479() #line 3477 "cs-parser.jay" { if (yyVals[0+yyTop] != null) { if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-5+yyTop]), "object initializers"); yyVal = new NewInitialize ((FullNamedExpression) yyVals[-4+yyTop], (Arguments) yyVals[-2+yyTop], (CollectionOrObjectInitializers) yyVals[0+yyTop], GetLocation (yyVals[-5+yyTop])); } else { yyVal = new New ((FullNamedExpression) yyVals[-4+yyTop], (Arguments) yyVals[-2+yyTop], GetLocation (yyVals[-5+yyTop])); } lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_480() #line 3490 "cs-parser.jay" { if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "collection initializers"); yyVal = new NewInitialize ((FullNamedExpression) yyVals[-1+yyTop], null, (CollectionOrObjectInitializers) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); } void case_481() #line 3502 "cs-parser.jay" { yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-5+yyTop], (List) yyVals[-3+yyTop], new ComposedTypeSpecifier (((List) yyVals[-3+yyTop]).Count, GetLocation (yyVals[-4+yyTop])) { Next = (ComposedTypeSpecifier) yyVals[-1+yyTop] }, (ArrayInitializer) yyVals[0+yyTop], GetLocation (yyVals[-6+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_482() #line 3510 "cs-parser.jay" { if (yyVals[0+yyTop] == null) report.Error (1586, GetLocation (yyVals[-3+yyTop]), "Array creation must have array size or array initializer"); yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-2+yyTop], (ComposedTypeSpecifier) yyVals[-1+yyTop], (ArrayInitializer) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop])); } void case_483() #line 3517 "cs-parser.jay" { if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "implicitly typed arrays"); yyVal = new ImplicitlyTypedArrayCreation ((ComposedTypeSpecifier) yyVals[-1+yyTop], (ArrayInitializer) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); } void case_484() #line 3524 "cs-parser.jay" { report.Error (178, GetLocation (yyVals[-1+yyTop]), "Invalid rank specifier, expecting `,' or `]'"); yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-5+yyTop], null, GetLocation (yyVals[-6+yyTop])); } void case_485() #line 3529 "cs-parser.jay" { Error_SyntaxError (1526, yyToken, "Unexpected symbol"); yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop])); } void case_487() #line 3540 "cs-parser.jay" { --lexer.parsing_type; yyVal = yyVals[0+yyTop]; } void case_488() #line 3548 "cs-parser.jay" { if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-3+yyTop]), "anonymous types"); yyVal = new NewAnonymousType ((List) yyVals[-1+yyTop], current_container, GetLocation (yyVals[-3+yyTop])); /* TODO: lbag comma location*/ lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_493() #line 3571 "cs-parser.jay" { var a = new List (4); a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]); yyVal = a; } void case_494() #line 3577 "cs-parser.jay" { var a = (List) yyVals[-2+yyTop]; a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]); lbag.AppendTo (a, GetLocation (yyVals[-1+yyTop])); yyVal = a; } void case_495() #line 3588 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken)yyVals[-2+yyTop]; yyVal = new AnonymousTypeParameter ((Expression)yyVals[0+yyTop], lt.Value, lt.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_496() #line 3594 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken)yyVals[0+yyTop]; yyVal = new AnonymousTypeParameter (new SimpleName (lt.Value, lt.Location), lt.Value, lt.Location); } void case_497() #line 3600 "cs-parser.jay" { MemberAccess ma = (MemberAccess) yyVals[0+yyTop]; yyVal = new AnonymousTypeParameter (ma, ma.Name, ma.Location); } void case_498() #line 3605 "cs-parser.jay" { report.Error (746, lexer.Location, "Invalid anonymous type member declarator. Anonymous type members must be a member assignment, simple name or member access expression"); yyVal = null; } void case_502() #line 3620 "cs-parser.jay" { ((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; yyVal = yyVals[-1+yyTop]; } void case_503() #line 3628 "cs-parser.jay" { yyVal = ComposedTypeSpecifier.CreateArrayDimension (1, GetLocation (yyVals[-1+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_504() #line 3633 "cs-parser.jay" { yyVal = ComposedTypeSpecifier.CreateArrayDimension ((int)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_509() #line 3663 "cs-parser.jay" { var ai = new ArrayInitializer (0, GetLocation (yyVals[-1+yyTop])); ai.VariableDeclaration = current_variable; lbag.AddLocation (ai, GetLocation (yyVals[0+yyTop])); yyVal = ai; } void case_510() #line 3670 "cs-parser.jay" { var ai = new ArrayInitializer ((List) yyVals[-2+yyTop], GetLocation (yyVals[-3+yyTop])); ai.VariableDeclaration = current_variable; if (yyVals[-1+yyTop] != null) { lbag.AddLocation (ai, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } else { lbag.AddLocation (ai, GetLocation (yyVals[0+yyTop])); } yyVal = ai; } void case_511() #line 3684 "cs-parser.jay" { var list = new List (4); list.Add ((Expression) yyVals[0+yyTop]); yyVal = list; } void case_512() #line 3690 "cs-parser.jay" { var list = (List) yyVals[-2+yyTop]; list.Add ((Expression) yyVals[0+yyTop]); lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop])); yyVal = list; } void case_514() #line 3704 "cs-parser.jay" { lexer.TypeOfParsing = false; yyVal = new TypeOf ((FullNamedExpression) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_517() #line 3715 "cs-parser.jay" { Error_TypeExpected (lexer.Location); yyVal = null; } void case_518() #line 3723 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new SimpleName (lt.Value, (int) yyVals[0+yyTop], lt.Location); } void case_519() #line 3729 "cs-parser.jay" { var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (int) yyVals[0+yyTop], lt1.Location); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_520() #line 3737 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new MemberAccess ((Expression) yyVals[-2+yyTop], lt.Value, lt.Location) { DotLocation = GetLocation (yyVals[-1+yyTop]) }; } void case_521() #line 3745 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (int) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_522() #line 3753 "cs-parser.jay" { var te = ((MemberName) yyVals[-3+yyTop]).GetTypeExpression (); if (te.HasTypeArguments) Error_TypeExpected (GetLocation (yyVals[0+yyTop])); var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess (te, lt.Value, (int) yyVals[0+yyTop], lt.Location) { DotLocation = GetLocation (yyVals[-2+yyTop]) }; } void case_523() #line 3767 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "generics"); yyVal = yyVals[0+yyTop]; } void case_524() #line 3777 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; if (lang_version == LanguageVersion.ISO_1) FeatureIsNotAvailable (lt.Location, "namespace alias qualifier"); yyVal = lt; } void case_525() #line 3788 "cs-parser.jay" { yyVal = new SizeOf ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_526() #line 3796 "cs-parser.jay" { yyVal = new CheckedExpr ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_527() #line 3804 "cs-parser.jay" { yyVal = new UnCheckedExpr ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_528() #line 3812 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberAccess (new Indirection ((Expression) yyVals[-3+yyTop], GetLocation (yyVals[-2+yyTop])), lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location); } void case_530() #line 3824 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); if ((ParametersCompiled) yyVals[-2+yyTop] != ParametersCompiled.Undefined) { lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop]), savedOpenLocation, savedCloseLocation); } else { lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop])); } } void case_532() #line 3837 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); if ((ParametersCompiled) yyVals[-2+yyTop] != ParametersCompiled.Undefined) { lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop]), savedOpenLocation, savedCloseLocation); } else { lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop])); } } void case_536() #line 3862 "cs-parser.jay" { valid_param_mod = 0; yyVal = yyVals[-1+yyTop]; savedOpenLocation = GetLocation (yyVals[-3+yyTop]); savedCloseLocation = GetLocation (yyVals[-2+yyTop]); } void case_537() #line 3872 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-3+yyTop]), "default value expression"); yyVal = new DefaultValueExpression ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_541() #line 3892 "cs-parser.jay" { yyVal = new Cast ((FullNamedExpression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_542() #line 3897 "cs-parser.jay" { if (!async_block) { report.Error (1992, GetLocation (yyVals[-1+yyTop]), "The `await' operator can only be used when its containing method or lambda expression is marked with the `async' modifier"); } else { current_block.Explicit.RegisterAsyncAwait (); } yyVal = new Await ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_551() #line 3944 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_552() #line 3949 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_553() #line 3954 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_555() #line 3963 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_557() #line 3972 "cs-parser.jay" { /* Shift/Reduce conflict*/ yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_561() #line 3989 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_562() #line 3994 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_564() #line 4003 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.LessThan, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_565() #line 4008 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.GreaterThan, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_566() #line 4013 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.LessThanOrEqual, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_567() #line 4018 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.GreaterThanOrEqual, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_569() #line 4027 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Equality, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_570() #line 4032 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.Inequality, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_572() #line 4041 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_574() #line 4050 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_576() #line 4059 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_578() #line 4068 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.LogicalAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_580() #line 4077 "cs-parser.jay" { yyVal = new Binary (Binary.Operator.LogicalOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_582() #line 4086 "cs-parser.jay" { if (lang_version < LanguageVersion.ISO_2) FeatureIsNotAvailable (GetLocation (yyVals[-1+yyTop]), "null coalescing operator"); yyVal = new Nullable.NullCoalescingOperator ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_584() #line 4097 "cs-parser.jay" { yyVal = new Conditional (new BooleanExpression ((Expression) yyVals[-4+yyTop]), (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_586() #line 4109 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_587() #line 4114 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_588() #line 4119 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_589() #line 4124 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_590() #line 4129 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_591() #line 4134 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_592() #line 4139 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_593() #line 4144 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_594() #line 4149 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_595() #line 4154 "cs-parser.jay" { yyVal = new CompoundAssign ( Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); } void case_596() #line 4162 "cs-parser.jay" { var pars = new List (4); pars.Add ((Parameter) yyVals[0+yyTop]); parameterListCommas.Clear (); yyVal = pars; } void case_597() #line 4169 "cs-parser.jay" { var pars = (List) yyVals[-2+yyTop]; Parameter p = (Parameter)yyVals[0+yyTop]; if (pars[0].GetType () != p.GetType ()) { report.Error (748, p.Location, "All lambda parameters must be typed either explicitly or implicitly"); } pars.Add (p); parameterListCommas.Add (GetLocation (yyVals[-1+yyTop])); yyVal = pars; } void case_598() #line 4185 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new Parameter ((FullNamedExpression) yyVals[-1+yyTop], lt.Value, (Parameter.Modifier) yyVals[-2+yyTop], null, lt.Location); } void case_599() #line 4191 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new Parameter ((FullNamedExpression) yyVals[-1+yyTop], lt.Value, Parameter.Modifier.NONE, null, lt.Location); } void case_600() #line 4197 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; yyVal = new ImplicitLambdaParameter (lt.Value, lt.Location); } void case_602() #line 4205 "cs-parser.jay" { var pars_list = (List) yyVals[0+yyTop]; yyVal = new ParametersCompiled (pars_list.ToArray ()); lbag.AddLocation (yyVal, parameterListCommas); } void case_606() #line 4222 "cs-parser.jay" { Block b = end_block (lexer.Location); b.IsCompilerGenerated = true; b.AddStatement (new ContextualReturn ((Expression) yyVals[0+yyTop])); yyVal = b; } void case_608() #line 4233 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = EmptyExpression.Null; } void case_609() #line 4241 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; Parameter p = new ImplicitLambdaParameter (lt.Value, lt.Location); start_anonymous (true, new ParametersCompiled (p), false, lt.Location); } void case_610() #line 4247 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); } void case_611() #line 4252 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; Parameter p = new ImplicitLambdaParameter (lt.Value, lt.Location); start_anonymous (true, new ParametersCompiled (p), true, lt.Location); } void case_612() #line 4258 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_614() #line 4267 "cs-parser.jay" { valid_param_mod = 0; start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], false, GetLocation (yyVals[-4+yyTop])); } void case_615() #line 4272 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_617() #line 4281 "cs-parser.jay" { valid_param_mod = 0; start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], true, GetLocation (yyVals[-5+yyTop])); } void case_618() #line 4286 "cs-parser.jay" { yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop])); } void case_625() #line 4309 "cs-parser.jay" { yyVal = new RefValueExpr ((Expression) yyVals[-3+yyTop], (FullNamedExpression) yyVals[-1+yyTop], GetLocation (yyVals[-5+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_626() #line 4314 "cs-parser.jay" { yyVal = new RefTypeExpr ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_627() #line 4319 "cs-parser.jay" { yyVal = new MakeRefExpr ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_631() #line 4348 "cs-parser.jay" { MemberName name = MakeName ((MemberName) yyVals[0+yyTop]); Class c = new Class (current_namespace, current_class, name, (Modifiers) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop]); if (((c.ModFlags & Modifiers.STATIC) != 0) && lang_version == LanguageVersion.ISO_1) { FeatureIsNotAvailable (c.Location, "static classes"); } push_current_class (c, yyVals[-3+yyTop]); lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); } void case_632() #line 4360 "cs-parser.jay" { lexer.ConstraintsParsing = false; current_class.SetParameterInfo ((List) yyVals[0+yyTop]); if (doc_support) { current_container.DocComment = Lexer.consume_doc_comment (); Lexer.doc_state = XmlCommentState.Allowed; } lexer.parsing_modifiers = true; } void case_633() #line 4373 "cs-parser.jay" { --lexer.parsing_declaration; if (doc_support) Lexer.doc_state = XmlCommentState.Allowed; } void case_634() #line 4379 "cs-parser.jay" { lbag.AppendToMember (current_class, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); if (yyVals[0+yyTop] != null) current_class.OptionalSemicolon = GetLocation (yyVals[0+yyTop]); yyVal = pop_current_class (); } void case_637() #line 4396 "cs-parser.jay" { mod_locations = null; yyVal = ModifierNone; lexer.parsing_modifiers = false; } void case_640() #line 4410 "cs-parser.jay" { var m1 = (Modifiers) yyVals[-1+yyTop]; var m2 = (Modifiers) yyVals[0+yyTop]; if ((m1 & m2) != 0) { report.Error (1004, lexer.Location - ModifiersExtensions.Name (m2).Length, "Duplicate `{0}' modifier", ModifiersExtensions.Name (m2)); } else if ((m2 & Modifiers.AccessibilityMask) != 0 && (m1 & Modifiers.AccessibilityMask) != 0 && ((m2 | m1 & Modifiers.AccessibilityMask) != (Modifiers.PROTECTED | Modifiers.INTERNAL))) { report.Error (107, lexer.Location - ModifiersExtensions.Name (m2).Length, "More than one protection modifier specified"); } yyVal = m1 | m2; } void case_641() #line 4429 "cs-parser.jay" { yyVal = Modifiers.NEW; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); if (current_container == module) report.Error (1530, GetLocation (yyVals[0+yyTop]), "Keyword `new' is not allowed on namespace elements"); } void case_642() #line 4437 "cs-parser.jay" { yyVal = Modifiers.PUBLIC; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_643() #line 4442 "cs-parser.jay" { yyVal = Modifiers.PROTECTED; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_644() #line 4447 "cs-parser.jay" { yyVal = Modifiers.INTERNAL; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_645() #line 4452 "cs-parser.jay" { yyVal = Modifiers.PRIVATE; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_646() #line 4457 "cs-parser.jay" { yyVal = Modifiers.ABSTRACT; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_647() #line 4462 "cs-parser.jay" { yyVal = Modifiers.SEALED; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_648() #line 4467 "cs-parser.jay" { yyVal = Modifiers.STATIC; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_649() #line 4472 "cs-parser.jay" { yyVal = Modifiers.READONLY; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_650() #line 4477 "cs-parser.jay" { yyVal = Modifiers.VIRTUAL; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_651() #line 4482 "cs-parser.jay" { yyVal = Modifiers.OVERRIDE; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_652() #line 4487 "cs-parser.jay" { yyVal = Modifiers.EXTERN; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_653() #line 4492 "cs-parser.jay" { yyVal = Modifiers.VOLATILE; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_654() #line 4497 "cs-parser.jay" { yyVal = Modifiers.UNSAFE; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); if (!settings.Unsafe) Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); } void case_655() #line 4504 "cs-parser.jay" { yyVal = Modifiers.ASYNC; StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_657() #line 4513 "cs-parser.jay" { lbag.AppendToMember (current_class, GetLocation (yyVals[-1+yyTop])); current_container.AddBasesForPart (current_class, (List) yyVals[0+yyTop]); } void case_660() #line 4526 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_661() #line 4534 "cs-parser.jay" { var constraints = new List (1); constraints.Add ((Constraints) yyVals[0+yyTop]); yyVal = constraints; } void case_662() #line 4540 "cs-parser.jay" { var constraints = (List) yyVals[-1+yyTop]; Constraints new_constraint = (Constraints)yyVals[0+yyTop]; foreach (Constraints c in constraints) { if (new_constraint.TypeParameter.Value == c.TypeParameter.Value) { report.Error (409, new_constraint.Location, "A constraint clause has already been specified for type parameter `{0}'", new_constraint.TypeParameter.Value); } } constraints.Add (new_constraint); yyVal = constraints; } void case_663() #line 4559 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; yyVal = new Constraints (new SimpleMemberName (lt.Value, lt.Location), (List) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_664() #line 4568 "cs-parser.jay" { var constraints = new List (1); constraints.Add ((FullNamedExpression) yyVals[0+yyTop]); yyVal = constraints; } void case_665() #line 4574 "cs-parser.jay" { var constraints = (List) yyVals[-2+yyTop]; var prev = constraints [constraints.Count - 1] as SpecialContraintExpr; if (prev != null && (prev.Constraint & SpecialConstraint.Constructor) != 0) { report.Error (401, GetLocation (yyVals[-1+yyTop]), "The `new()' constraint must be the last constraint specified"); } prev = yyVals[0+yyTop] as SpecialContraintExpr; if (prev != null) { if ((prev.Constraint & (SpecialConstraint.Class | SpecialConstraint.Struct)) != 0) { report.Error (449, prev.Location, "The `class' or `struct' constraint must be the first constraint specified"); } else { prev = constraints [0] as SpecialContraintExpr; if (prev != null && (prev.Constraint & SpecialConstraint.Struct) != 0) { report.Error (451, GetLocation (yyVals[0+yyTop]), "The `new()' constraint cannot be used with the `struct' constraint"); } } } constraints.Add ((FullNamedExpression) yyVals[0+yyTop]); lbag.AppendTo (constraints, GetLocation (yyVals[-1+yyTop])); yyVal = constraints; } void case_666() #line 4601 "cs-parser.jay" { if (yyVals[0+yyTop] is ComposedCast) report.Error (706, GetLocation (yyVals[0+yyTop]), "Invalid constraint type `{0}'", ((ComposedCast)yyVals[0+yyTop]).GetSignatureForError ()); yyVal = yyVals[0+yyTop]; } void case_667() #line 4608 "cs-parser.jay" { yyVal = new SpecialContraintExpr (SpecialConstraint.Constructor, GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_671() #line 4628 "cs-parser.jay" { if (lang_version <= LanguageVersion.V_3) FeatureIsNotAvailable (lexer.Location, "generic type variance"); yyVal = yyVals[0+yyTop]; } void case_672() #line 4638 "cs-parser.jay" { yyVal = Variance.Covariant; savedLocation = GetLocation (yyVals[0+yyTop]); } void case_673() #line 4643 "cs-parser.jay" { yyVal = Variance.Contravariant; savedLocation = GetLocation (yyVals[0+yyTop]); } void case_674() #line 4664 "cs-parser.jay" { ++lexer.parsing_block; start_block (GetLocation (yyVals[0+yyTop])); } void case_676() #line 4676 "cs-parser.jay" { --lexer.parsing_block; yyVal = end_block (GetLocation (yyVals[0+yyTop])); } void case_677() #line 4681 "cs-parser.jay" { --lexer.parsing_block; yyVal = end_block (lexer.Location); } void case_678() #line 4690 "cs-parser.jay" { ++lexer.parsing_block; current_block.StartLocation = GetLocation (yyVals[0+yyTop]); } void case_679() #line 4695 "cs-parser.jay" { --lexer.parsing_block; yyVal = end_block (GetLocation (yyVals[0+yyTop])); } void case_687() #line 4722 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_720() #line 4786 "cs-parser.jay" { report.Error (1023, GetLocation (yyVals[0+yyTop]), "An embedded statement may not be a declaration or labeled statement"); yyVal = null; } void case_721() #line 4791 "cs-parser.jay" { report.Error (1023, GetLocation (yyVals[0+yyTop]), "An embedded statement may not be a declaration or labeled statement"); yyVal = null; } void case_722() #line 4796 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); } void case_723() #line 4804 "cs-parser.jay" { /* Uses lexer.Location because semicolon location is not kept in quick mode*/ yyVal = new EmptyStatement (lexer.Location); } void case_724() #line 4812 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; LabeledStatement labeled = new LabeledStatement (lt.Value, current_block, lt.Location); lbag.AddLocation (labeled, GetLocation (yyVals[0+yyTop])); current_block.AddLabel (labeled); current_block.AddStatement (labeled); } void case_727() #line 4825 "cs-parser.jay" { if (yyVals[-1+yyTop] is VarExpr) yyVals[-1+yyTop] = new SimpleName ("var", ((VarExpr) yyVals[-1+yyTop]).Location); yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } void case_728() #line 4841 "cs-parser.jay" { /* Ok, the above "primary_expression" is there to get rid of*/ /* both reduce/reduce and shift/reduces in the grammar, it should*/ /* really just be "type_name". If you use type_name, a reduce/reduce*/ /* creeps up. If you use namespace_or_type_name (which is all we need*/ /* really) two shift/reduces appear.*/ /* */ /* So the super-trick is that primary_expression*/ /* can only be either a SimpleName or a MemberAccess. */ /* The MemberAccess case arises when you have a fully qualified type-name like :*/ /* Foo.Bar.Blah i;*/ /* SimpleName is when you have*/ /* Blah i;*/ Expression expr = (Expression) yyVals[-1+yyTop]; if (yyVals[0+yyTop] == null) { SimpleName sn = expr as SimpleName; if (sn != null && sn.Name == "var") yyVal = new VarExpr (sn.Location); else yyVal = yyVals[-1+yyTop]; } else if (expr is ATypeNameExpression) { yyVal = new ComposedCast ((ATypeNameExpression)expr, (ComposedTypeSpecifier) yyVals[0+yyTop]); } else { Error_ExpectingTypeName (expr); yyVal = null; } } void case_729() #line 4871 "cs-parser.jay" { ATypeNameExpression expr = yyVals[-1+yyTop] as ATypeNameExpression; if (expr != null) { yyVal = new ComposedCast (expr, (ComposedTypeSpecifier) yyVals[0+yyTop]); } else { Error_ExpectingTypeName ((Expression)yyVals[-1+yyTop]); yyVal = expr; } } void case_730() #line 4882 "cs-parser.jay" { if (yyVals[0+yyTop] == null) yyVal = yyVals[-1+yyTop]; else yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); } void case_733() #line 4897 "cs-parser.jay" { Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); } void case_735() #line 4906 "cs-parser.jay" { ((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; yyVal = yyVals[-1+yyTop]; } void case_738() #line 4922 "cs-parser.jay" { if (async_block) { report.Error (4003, GetLocation (yyVals[0+yyTop]), "`await' cannot be used as an identifier within an async method or lambda expression"); yyVal = Tokenizer.LocatedToken.Create ("await", GetLocation (yyVals[0+yyTop])); } } void case_739() #line 4932 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_block, lt.Value, lt.Location); current_block.AddLocalName (li); current_variable = new BlockVariableDeclaration ((FullNamedExpression) yyVals[-1+yyTop], li); } void case_740() #line 4939 "cs-parser.jay" { yyVal = current_variable; current_variable = null; lbag.AppendTo (yyVal, GetLocation (yyVals[0+yyTop])); } void case_741() #line 4945 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.Constant, lt.Location); current_block.AddLocalName (li); current_variable = new BlockConstantDeclaration ((FullNamedExpression) yyVals[-1+yyTop], li); } void case_742() #line 4952 "cs-parser.jay" { if (current_variable.Initializer != null) { lbag.AddLocation (current_variable, GetLocation (yyVals[-6+yyTop]), savedLocation, GetLocation (yyVals[0+yyTop])); } else { lbag.AddLocation (current_variable, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); } yyVal = current_variable;; current_variable = null; } void case_744() #line 4966 "cs-parser.jay" { current_variable.Initializer = (Expression) yyVals[0+yyTop]; lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); } void case_745() #line 4971 "cs-parser.jay" { if (yyToken == Token.OPEN_BRACKET_EXPR) { report.Error (650, lexer.Location, "Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier. To declare a fixed size buffer field, use the fixed keyword before the field type"); } else { Error_SyntaxError (yyToken); } } void case_749() #line 4989 "cs-parser.jay" { foreach (var d in current_variable.Declarators) { if (d.Initializer == null) Error_MissingInitializer (d.Variable.Location); } } void case_752() #line 5004 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_variable.Variable, lt.Value, lt.Location); var d = new BlockVariableDeclaration.Declarator (li, null); current_variable.AddDeclarator (d); current_block.AddLocalName (li); lbag.AddLocation (d, GetLocation (yyVals[-1+yyTop])); } void case_753() #line 5013 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var li = new LocalVariable (current_variable.Variable, lt.Value, lt.Location); var d = new BlockVariableDeclaration.Declarator (li, (Expression) yyVals[0+yyTop]); current_variable.AddDeclarator (d); current_block.AddLocalName (li); lbag.AddLocation (d, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_755() #line 5029 "cs-parser.jay" { savedLocation = GetLocation (yyVals[-1+yyTop]); current_variable.Initializer = (Expression) yyVals[0+yyTop]; } void case_760() #line 5047 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.Constant, lt.Location); var d = new BlockVariableDeclaration.Declarator (li, (Expression) yyVals[0+yyTop]); current_variable.AddDeclarator (d); current_block.AddLocalName (li); lbag.AddLocation (d, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_762() #line 5060 "cs-parser.jay" { yyVal = new StackAlloc ((Expression) yyVals[-3+yyTop], (Expression) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_763() #line 5065 "cs-parser.jay" { report.Error (1575, GetLocation (yyVals[-1+yyTop]), "A stackalloc expression requires [] after type"); yyVal = new StackAlloc ((Expression) yyVals[0+yyTop], null, GetLocation (yyVals[-1+yyTop])); } void case_764() #line 5073 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); } void case_768() #line 5091 "cs-parser.jay" { ExpressionStatement s = yyVals[0+yyTop] as ExpressionStatement; if (s == null) { Expression.Error_InvalidExpressionStatement (report, GetLocation (yyVals[0+yyTop])); yyVal = new InvalidExpressionStatement (yyVals[0+yyTop] as Expression); } else { yyVal = new StatementExpression (s); } } void case_769() #line 5104 "cs-parser.jay" { Expression expr = (Expression) yyVals[0+yyTop]; ExpressionStatement s; s = new OptionalAssign (new SimpleName ("$retval", lexer.Location), expr, lexer.Location); yyVal = new StatementExpression (s); } void case_770() #line 5112 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); } void case_773() #line 5126 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); yyVal = new If ((BooleanExpression) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_774() #line 5135 "cs-parser.jay" { yyVal = new If ((BooleanExpression) yyVals[-4+yyTop], (Statement) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-6+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); if (yyVals[-2+yyTop] is EmptyStatement) Warning_EmptyStatement (GetLocation (yyVals[-2+yyTop])); if (yyVals[0+yyTop] is EmptyStatement) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); } void case_776() #line 5152 "cs-parser.jay" { yyVal = new Switch ((Expression) yyVals[-5+yyTop], (ExplicitBlock) current_block.Explicit, (List) yyVals[-1+yyTop], GetLocation (yyVals[-7+yyTop])); end_block (GetLocation (yyVals[0+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_777() #line 5161 "cs-parser.jay" { report.Warning (1522, 1, current_block.StartLocation, "Empty switch block"); yyVal = new List (); } void case_779() #line 5170 "cs-parser.jay" { var sections = new List (4); sections.Add ((SwitchSection) yyVals[0+yyTop]); yyVal = sections; } void case_780() #line 5177 "cs-parser.jay" { var sections = (List) yyVals[-1+yyTop]; sections.Add ((SwitchSection) yyVals[0+yyTop]); yyVal = sections; } void case_781() #line 5184 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = new List (); } void case_784() #line 5203 "cs-parser.jay" { var labels = new List (2); labels.Add ((SwitchLabel) yyVals[0+yyTop]); yyVal = labels; } void case_785() #line 5210 "cs-parser.jay" { var labels = (List) (yyVals[-1+yyTop]); labels.Add ((SwitchLabel) yyVals[0+yyTop]); yyVal = labels; } void case_786() #line 5220 "cs-parser.jay" { yyVal = new SwitchLabel ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_792() #line 5239 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); yyVal = new While ((BooleanExpression) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_793() #line 5251 "cs-parser.jay" { yyVal = new Do ((Statement) yyVals[-5+yyTop], (BooleanExpression) yyVals[-2+yyTop], GetLocation (yyVals[-6+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_794() #line 5259 "cs-parser.jay" { start_block (GetLocation (yyVals[0+yyTop])); current_block.IsCompilerGenerated = true; } void case_796() #line 5275 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); For f = new For ((Statement) yyVals[-6+yyTop], (BooleanExpression) yyVals[-4+yyTop], (Statement) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-9+yyTop])); current_block.AddStatement (f); lbag.AddStatement (f, current_block.StartLocation, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); yyVal = end_block (GetLocation (yyVals[-5+yyTop])); } void case_797() #line 5287 "cs-parser.jay" { For f = new For ((Statement) yyVals[-2+yyTop], null, null, null, GetLocation (yyVals[-5+yyTop])); current_block.AddStatement (f); lbag.AddStatement (f, current_block.StartLocation, GetLocation (yyVals[-1+yyTop])); Error_SyntaxError (yyToken); yyVal = end_block (GetLocation (yyVals[-1+yyTop])); } void case_798() #line 5297 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = end_block (current_block.StartLocation); } void case_801() #line 5310 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_block, lt.Value, lt.Location); current_block.AddLocalName (li); current_variable = new BlockVariableDeclaration ((FullNamedExpression) yyVals[-1+yyTop], li); } void case_802() #line 5317 "cs-parser.jay" { yyVal = current_variable; current_variable = null; } void case_810() #line 5341 "cs-parser.jay" { var sl = yyVals[-2+yyTop] as StatementList; if (sl == null) { sl = new StatementList ((Statement) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop]); lbag.AddStatement (sl, GetLocation (yyVals[-1+yyTop])); } else { sl.Add ((Statement) yyVals[0+yyTop]); lbag.AppendTo (sl, GetLocation (yyVals[-1+yyTop])); } yyVal = sl; } void case_811() #line 5357 "cs-parser.jay" { report.Error (230, GetLocation (yyVals[-5+yyTop]), "Type and identifier are both required in a foreach statement"); yyVal = null; } void case_812() #line 5362 "cs-parser.jay" { start_block (GetLocation (yyVals[-5+yyTop])); current_block.IsCompilerGenerated = true; var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.ForeachVariable | LocalVariable.Flags.Used, lt.Location); current_block.AddLocalName (li); yyVal = li; } void case_813() #line 5371 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); Foreach f = new Foreach ((Expression) yyVals[-6+yyTop], (LocalVariable) yyVals[-1+yyTop], (Expression) yyVals[-3+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-8+yyTop])); current_block.AddStatement (f); lbag.AddStatement (f, GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = end_block (GetLocation (yyVals[-2+yyTop])); } void case_820() #line 5394 "cs-parser.jay" { yyVal = new Break (GetLocation (yyVals[-1+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); } void case_821() #line 5402 "cs-parser.jay" { yyVal = new Continue (GetLocation (yyVals[-1+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); } void case_822() #line 5410 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new Goto (lt.Value, GetLocation (yyVals[-2+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_823() #line 5416 "cs-parser.jay" { yyVal = new GotoCase ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_824() #line 5421 "cs-parser.jay" { yyVal = new GotoDefault (GetLocation (yyVals[-2+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_825() #line 5429 "cs-parser.jay" { yyVal = new Return ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); } void case_826() #line 5437 "cs-parser.jay" { yyVal = new Throw ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); } void case_827() #line 5445 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; string s = lt.Value; if (s != "yield"){ report.Error (1003, lt.Location, "; expected"); } else if (yyVals[-1+yyTop] == null) { report.Error (1627, GetLocation (yyVals[0+yyTop]), "Expression expected after yield return"); } else if (lang_version == LanguageVersion.ISO_1){ FeatureIsNotAvailable (lt.Location, "iterators"); } current_block.Explicit.RegisterIteratorYield (); yyVal = new Yield ((Expression) yyVals[-1+yyTop], lt.Location); lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_828() #line 5461 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; string s = lt.Value; if (s != "yield"){ report.Error (1003, lt.Location, "; expected"); } else if (lang_version == LanguageVersion.ISO_1){ FeatureIsNotAvailable (lt.Location, "iterators"); } current_block.Explicit.RegisterIteratorYield (); yyVal = new YieldBreak (lt.Location); lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); } void case_832() #line 5487 "cs-parser.jay" { yyVal = new TryFinally ((Statement) yyVals[-2+yyTop], (Block) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_833() #line 5492 "cs-parser.jay" { yyVal = new TryFinally (new TryCatch ((Block) yyVals[-3+yyTop], (List) yyVals[-2+yyTop], GetLocation (yyVals[-4+yyTop]), true), (Block) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop])); } void case_834() #line 5497 "cs-parser.jay" { report.Error (1524, GetLocation (yyVals[-2+yyTop]), "Expected catch or finally"); yyVal = null; } void case_835() #line 5505 "cs-parser.jay" { var l = new List (2); l.Add ((Catch) yyVals[0+yyTop]); yyVal = l; } void case_836() #line 5512 "cs-parser.jay" { var l = (List) yyVals[-1+yyTop]; Catch c = (Catch) yyVals[0+yyTop]; if (l [0].IsGeneral) { report.Error (1017, c.loc, "Try statement already has an empty catch block"); } else { if (c.IsGeneral) l.Insert (0, c); else l.Add (c); } yyVal = l; } void case_840() #line 5540 "cs-parser.jay" { start_block (GetLocation (yyVals[-3+yyTop])); var c = new Catch (current_block, GetLocation (yyVals[-4+yyTop])); c.TypeExpression = (FullNamedExpression) yyVals[-2+yyTop]; if (yyVals[-1+yyTop] != null) { var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; c.Variable = new LocalVariable (current_block, lt.Value, lt.Location); current_block.AddLocalName (c.Variable); } lbag.AddLocation (c, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); yyVal = c; } void case_842() #line 5559 "cs-parser.jay" { if (yyToken == Token.CLOSE_PARENS) { report.Error (1015, lexer.Location, "A type that derives from `System.Exception', `object', or `string' expected"); } else { Error_SyntaxError (yyToken); } yyVal = new Catch (null, GetLocation (yyVals[-2+yyTop])); } void case_845() #line 5587 "cs-parser.jay" { if (!settings.Unsafe) Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); } void case_847() #line 5597 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); yyVal = new Lock ((Expression) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); } void case_848() #line 5608 "cs-parser.jay" { start_block (GetLocation (yyVals[-2+yyTop])); current_block.IsCompilerGenerated = true; var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.FixedVariable | LocalVariable.Flags.Used, lt.Location); current_block.AddLocalName (li); current_variable = new Fixed.VariableDeclaration ((FullNamedExpression) yyVals[-1+yyTop], li); } void case_849() #line 5618 "cs-parser.jay" { yyVal = current_variable; current_variable = null; } void case_850() #line 5623 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); Fixed f = new Fixed ((Fixed.VariableDeclaration) yyVals[-1+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-9+yyTop])); current_block.AddStatement (f); lbag.AddStatement (f, GetLocation (yyVals[-8+yyTop]), GetLocation (yyVals[-2+yyTop])); yyVal = end_block (GetLocation (yyVals[-2+yyTop])); } void case_851() #line 5636 "cs-parser.jay" { start_block (GetLocation (yyVals[-2+yyTop])); current_block.IsCompilerGenerated = true; var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.UsingVariable | LocalVariable.Flags.Used, lt.Location); current_block.AddLocalName (li); current_variable = new Using.VariableDeclaration ((FullNamedExpression) yyVals[-1+yyTop], li); } void case_852() #line 5646 "cs-parser.jay" { yyVal = current_variable; current_variable = null; } void case_853() #line 5651 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); Using u = new Using ((Using.VariableDeclaration) yyVals[-1+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-8+yyTop])); lbag.AddStatement (u, GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-2+yyTop])); current_block.AddStatement (u); yyVal = end_block (GetLocation (yyVals[-2+yyTop])); } void case_854() #line 5661 "cs-parser.jay" { if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); Using u = new Using ((Expression) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddStatement (u, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop])); yyVal = u; } void case_856() #line 5674 "cs-parser.jay" { /* It has to be here for the parent to safely restore artificial block*/ Error_SyntaxError (yyToken); } void case_858() #line 5686 "cs-parser.jay" { current_variable.Initializer = (Expression) yyVals[0+yyTop]; lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); yyVal = current_variable; } void case_859() #line 5698 "cs-parser.jay" { lexer.query_parsing = false; Linq.AQueryClause from = yyVals[-1+yyTop] as Linq.AQueryClause; from.Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; yyVal = from; current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_860() #line 5710 "cs-parser.jay" { Linq.AQueryClause from = yyVals[-1+yyTop] as Linq.AQueryClause; from.Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; yyVal = from; current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_861() #line 5721 "cs-parser.jay" { lexer.query_parsing = false; yyVal = yyVals[-1+yyTop]; current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_862() #line 5728 "cs-parser.jay" { yyVal = yyVals[-1+yyTop]; current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_863() #line 5737 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var rv = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.QueryExpression (new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-3+yyTop]))); } void case_864() #line 5745 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var rv = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.QueryExpression ( new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-4+yyTop])) { IdentifierType = (FullNamedExpression)yyVals[-3+yyTop] } ); } void case_865() #line 5760 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var rv = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.QueryExpression (new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-3+yyTop]))); } void case_866() #line 5768 "cs-parser.jay" { current_block = new Linq.QueryBlock (current_block, lexer.Location); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var rv = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.QueryExpression ( new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-4+yyTop])) { IdentifierType = (FullNamedExpression)yyVals[-3+yyTop] } ); } void case_868() #line 5787 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var sn = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.SelectMany ((Linq.QueryBlock)current_block, sn, (Expression)yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; ((Linq.QueryBlock)current_block).AddRangeVariable (sn); } void case_870() #line 5802 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var sn = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.SelectMany ((Linq.QueryBlock)current_block, sn, (Expression)yyVals[0+yyTop], GetLocation (yyVals[-5+yyTop])) { IdentifierType = (FullNamedExpression)yyVals[-4+yyTop] }; current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; ((Linq.QueryBlock)current_block).AddRangeVariable (sn); } void case_871() #line 5819 "cs-parser.jay" { Linq.AQueryClause head = (Linq.AQueryClause)yyVals[-1+yyTop]; if (yyVals[0+yyTop] != null) head.Next = (Linq.AQueryClause)yyVals[0+yyTop]; if (yyVals[-2+yyTop] != null) { Linq.AQueryClause clause = (Linq.AQueryClause)yyVals[-2+yyTop]; clause.Tail.Next = head; head = clause; } yyVal = head; } void case_873() #line 5835 "cs-parser.jay" { Error_SyntaxError (yyToken); yyVal = null; } void case_875() #line 5847 "cs-parser.jay" { yyVal = new Linq.Select ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_876() #line 5854 "cs-parser.jay" { if (linq_clause_blocks == null) linq_clause_blocks = new Stack (); current_block = new Linq.QueryBlock (current_block, lexer.Location); linq_clause_blocks.Push ((Linq.QueryBlock)current_block); } void case_877() #line 5862 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); } void case_878() #line 5869 "cs-parser.jay" { yyVal = new Linq.GroupBy ((Linq.QueryBlock)current_block, (Expression)yyVals[-3+yyTop], linq_clause_blocks.Pop (), (Expression)yyVals[0+yyTop], GetLocation (yyVals[-5+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_882() #line 5886 "cs-parser.jay" { ((Linq.AQueryClause)yyVals[-1+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; yyVal = yyVals[-1+yyTop]; } void case_889() #line 5906 "cs-parser.jay" { var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; var sn = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.Let ((Linq.QueryBlock) current_block, sn, (Expression)yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; ((Linq.QueryBlock)current_block).AddRangeVariable (sn); } void case_891() #line 5925 "cs-parser.jay" { yyVal = new Linq.Where ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; } void case_892() #line 5935 "cs-parser.jay" { if (linq_clause_blocks == null) linq_clause_blocks = new Stack (); current_block = new Linq.QueryBlock (current_block, lexer.Location); linq_clause_blocks.Push ((Linq.QueryBlock) current_block); } void case_893() #line 5943 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); linq_clause_blocks.Push ((Linq.QueryBlock) current_block); } void case_894() #line 5951 "cs-parser.jay" { current_block.AddStatement (new ContextualReturn ((Expression) yyVals[-1+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); } void case_895() #line 5959 "cs-parser.jay" { current_block.AddStatement (new ContextualReturn ((Expression) yyVals[-1+yyTop])); current_block.SetEndLocation (lexer.Location); var outer_selector = linq_clause_blocks.Pop (); var block = linq_clause_blocks.Pop (); var lt = (Tokenizer.LocatedToken) yyVals[-10+yyTop]; var sn = new Linq.RangeVariable (lt.Value, lt.Location); Linq.RangeVariable into; if (yyVals[0+yyTop] == null) { into = sn; yyVal = new Linq.Join (block, sn, (Expression)yyVals[-7+yyTop], outer_selector, (Linq.QueryBlock) current_block, GetLocation (yyVals[-11+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-9+yyTop]), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-3+yyTop])); } else { /**/ /* Set equals right side parent to beginning of linq query, it is not accessible therefore cannot cause name collisions*/ /**/ var parent = block.Parent; while (parent is Linq.QueryBlock) { parent = parent.Parent; } current_block.Parent = parent; ((Linq.QueryBlock)current_block).AddRangeVariable (sn); lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; into = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.GroupJoin (block, sn, (Expression)yyVals[-7+yyTop], outer_selector, (Linq.QueryBlock) current_block, into, GetLocation (yyVals[-11+yyTop])); lbag.AddLocation (yyVal, GetLocation (yyVals[-9+yyTop]), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); } current_block = block.Parent; ((Linq.QueryBlock)current_block).AddRangeVariable (into); } void case_896() #line 5997 "cs-parser.jay" { if (linq_clause_blocks == null) linq_clause_blocks = new Stack (); current_block = new Linq.QueryBlock (current_block, lexer.Location); linq_clause_blocks.Push ((Linq.QueryBlock) current_block); } void case_897() #line 6005 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); linq_clause_blocks.Push ((Linq.QueryBlock) current_block); } void case_898() #line 6013 "cs-parser.jay" { current_block.AddStatement (new ContextualReturn ((Expression) yyVals[-1+yyTop])); current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); } void case_899() #line 6021 "cs-parser.jay" { current_block.AddStatement (new ContextualReturn ((Expression) yyVals[-1+yyTop])); current_block.SetEndLocation (lexer.Location); var outer_selector = linq_clause_blocks.Pop (); var block = linq_clause_blocks.Pop (); var lt = (Tokenizer.LocatedToken) yyVals[-10+yyTop]; var sn = new Linq.RangeVariable (lt.Value, lt.Location); Linq.RangeVariable into; if (yyVals[0+yyTop] == null) { into = sn; yyVal = new Linq.Join (block, sn, (Expression)yyVals[-7+yyTop], outer_selector, (Linq.QueryBlock) current_block, GetLocation (yyVals[-12+yyTop])) { IdentifierType = (FullNamedExpression)yyVals[-11+yyTop] }; } else { /**/ /* Set equals right side parent to beginning of linq query, it is not accessible therefore cannot cause name collisions*/ /**/ var parent = block.Parent; while (parent is Linq.QueryBlock) { parent = parent.Parent; } current_block.Parent = parent; ((Linq.QueryBlock)current_block).AddRangeVariable (sn); lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; into = new Linq.RangeVariable (lt.Value, lt.Location); /* TODO:*/ yyVal = new Linq.GroupJoin (block, sn, (Expression)yyVals[-7+yyTop], outer_selector, (Linq.QueryBlock) current_block, into, GetLocation (yyVals[-12+yyTop])) { IdentifierType = (FullNamedExpression)yyVals[-11+yyTop] }; } current_block = block.Parent; ((Linq.QueryBlock)current_block).AddRangeVariable (into); } void case_903() #line 6076 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; yyVal = yyVals[0+yyTop]; } void case_905() #line 6087 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); } void case_906() #line 6094 "cs-parser.jay" { ((Linq.AQueryClause)yyVals[-3+yyTop]).Next = (Linq.AQueryClause)yyVals[0+yyTop]; yyVal = yyVals[-3+yyTop]; } void case_908() #line 6103 "cs-parser.jay" { current_block.SetEndLocation (lexer.Location); current_block = current_block.Parent; current_block = new Linq.QueryBlock ((Linq.QueryBlock) current_block, lexer.Location); } void case_909() #line 6110 "cs-parser.jay" { ((Linq.AQueryClause)yyVals[-3+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; yyVal = yyVals[-3+yyTop]; } void case_911() #line 6122 "cs-parser.jay" { yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_912() #line 6127 "cs-parser.jay" { yyVal = new Linq.OrderByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_914() #line 6139 "cs-parser.jay" { yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_915() #line 6144 "cs-parser.jay" { yyVal = new Linq.ThenByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); } void case_917() #line 6154 "cs-parser.jay" { /* query continuation block is not linked with query block but with block*/ /* before. This means each query can use same range variable names for*/ /* different identifiers.*/ current_block.SetEndLocation (GetLocation (yyVals[-1+yyTop])); current_block = current_block.Parent; current_block = new Linq.QueryBlock (current_block, lexer.Location); if (linq_clause_blocks == null) linq_clause_blocks = new Stack (); linq_clause_blocks.Push ((Linq.QueryBlock) current_block); } void case_918() #line 6170 "cs-parser.jay" { var current_block = linq_clause_blocks.Pop (); var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; var rv = new Linq.RangeVariable (lt.Value, lt.Location); yyVal = new Linq.QueryStartClause ((Linq.QueryBlock)current_block, null, rv, GetLocation (yyVals[-3+yyTop])) { next = (Linq.AQueryClause)yyVals[0+yyTop] }; } void case_921() #line 6197 "cs-parser.jay" { current_container = new Class (current_namespace, current_class, new MemberName (""), Modifiers.PUBLIC, null); current_class = current_container; /* (ref object retval)*/ Parameter [] mpar = new Parameter [1]; mpar [0] = new Parameter (new TypeExpression (compiler.BuiltinTypes.Object, Location.Null), "$retval", Parameter.Modifier.REF, null, Location.Null); ParametersCompiled pars = new ParametersCompiled (mpar); var mods = Modifiers.PUBLIC | Modifiers.STATIC; if (settings.Unsafe) mods |= Modifiers.UNSAFE; current_local_parameters = pars; Method method = new Method ( current_class, null, /* generic*/ new TypeExpression (compiler.BuiltinTypes.Void, Location.Null), mods, new MemberName ("Host"), pars, null /* attributes */); current_container.AddMethod (method); oob_stack.Push (method); ++lexer.parsing_block; start_block (lexer.Location); } void case_922() #line 6227 "cs-parser.jay" { --lexer.parsing_block; Method method = (Method) oob_stack.Pop (); method.Block = (ToplevelBlock) end_block(lexer.Location); InteractiveResult = (Class) pop_current_class (); current_local_parameters = null; } void case_932() #line 6270 "cs-parser.jay" { module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-1+yyTop]; module.DocumentationBuilder.ParsedParameters = (List)yyVals[0+yyTop]; yyVal = null; } void case_933() #line 6276 "cs-parser.jay" { module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-3+yyTop]; module.DocumentationBuilder.ParsedParameters = (List)yyVals[0+yyTop]; var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; yyVal = new MemberName (lt.Value); } void case_936() #line 6291 "cs-parser.jay" { module.DocumentationBuilder.ParsedParameters = (List)yyVals[-1+yyTop]; yyVal = new MemberName ((MemberName) yyVals[-6+yyTop], new MemberName (MemberCache.IndexerNameAlias)); } void case_937() #line 6296 "cs-parser.jay" { var p = (List)yyVals[0+yyTop] ?? new List (1); p.Add (new DocumentationParameter ((FullNamedExpression) yyVals[-1+yyTop])); module.DocumentationBuilder.ParsedParameters = p; module.DocumentationBuilder.ParsedOperator = Operator.OpType.Explicit; yyVal = null; } void case_938() #line 6304 "cs-parser.jay" { var p = (List)yyVals[0+yyTop] ?? new List (1); p.Add (new DocumentationParameter ((FullNamedExpression) yyVals[-1+yyTop])); module.DocumentationBuilder.ParsedParameters = p; module.DocumentationBuilder.ParsedOperator = Operator.OpType.Implicit; yyVal = null; } void case_939() #line 6312 "cs-parser.jay" { var p = (List)yyVals[0+yyTop] ?? new List (1); module.DocumentationBuilder.ParsedParameters = p; module.DocumentationBuilder.ParsedOperator = (Operator.OpType) yyVals[-1+yyTop]; yyVal = null; } void case_947() #line 6350 "cs-parser.jay" { var parameters = new List (); parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); yyVal = parameters; } void case_948() #line 6356 "cs-parser.jay" { var parameters = yyVals[-2+yyTop] as List; parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); yyVal = parameters; } void case_949() #line 6365 "cs-parser.jay" { if (yyVals[-1+yyTop] != null) yyVal = new DocumentationParameter ((Parameter.Modifier) yyVals[-1+yyTop], (FullNamedExpression) yyVals[0+yyTop]); else yyVal = new DocumentationParameter ((FullNamedExpression) yyVals[0+yyTop]); } #line default static readonly short [] yyLhs = { -1, 0, 4, 0, 0, 1, 1, 1, 1, 2, 2, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 21, 22, 19, 20, 20, 20, 24, 24, 25, 25, 18, 7, 7, 6, 6, 23, 23, 8, 8, 26, 26, 27, 27, 27, 27, 27, 9, 9, 10, 10, 35, 33, 38, 34, 34, 36, 36, 36, 36, 37, 37, 42, 39, 40, 41, 41, 43, 43, 43, 43, 43, 44, 44, 48, 45, 47, 50, 50, 50, 51, 51, 52, 52, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 66, 68, 70, 71, 72, 29, 29, 75, 54, 76, 76, 77, 77, 78, 80, 74, 74, 79, 79, 85, 55, 89, 55, 55, 84, 92, 84, 86, 86, 93, 93, 94, 95, 94, 90, 90, 96, 96, 97, 98, 88, 88, 91, 91, 91, 101, 56, 104, 105, 99, 106, 107, 108, 99, 99, 100, 100, 103, 103, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 112, 112, 115, 115, 115, 118, 115, 116, 116, 119, 119, 120, 120, 120, 113, 113, 113, 121, 121, 121, 114, 123, 125, 126, 57, 128, 129, 130, 59, 124, 124, 124, 124, 124, 134, 131, 135, 132, 133, 133, 133, 136, 137, 138, 140, 30, 30, 139, 139, 141, 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, 145, 60, 144, 144, 146, 146, 149, 143, 143, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 151, 150, 152, 150, 150, 150, 61, 155, 157, 153, 154, 154, 156, 156, 161, 159, 162, 159, 159, 163, 62, 165, 58, 168, 169, 58, 164, 171, 164, 166, 166, 172, 172, 173, 174, 173, 175, 170, 167, 167, 167, 167, 167, 179, 176, 180, 177, 178, 178, 181, 183, 185, 186, 31, 182, 182, 182, 184, 184, 184, 187, 187, 188, 189, 188, 190, 191, 192, 32, 193, 193, 17, 17, 194, 194, 197, 196, 196, 196, 198, 198, 200, 65, 122, 102, 102, 127, 127, 201, 201, 201, 199, 199, 202, 202, 203, 203, 205, 205, 83, 73, 73, 87, 87, 117, 117, 147, 147, 206, 206, 206, 206, 206, 210, 210, 211, 211, 209, 209, 209, 209, 209, 209, 209, 212, 212, 212, 212, 212, 212, 212, 212, 212, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 215, 235, 235, 236, 236, 237, 237, 217, 217, 234, 234, 234, 234, 234, 234, 234, 234, 219, 238, 238, 239, 239, 240, 240, 242, 242, 242, 243, 243, 243, 243, 243, 244, 244, 160, 160, 248, 248, 248, 248, 248, 250, 250, 249, 249, 251, 251, 251, 251, 252, 220, 220, 220, 247, 247, 247, 253, 253, 254, 254, 221, 222, 222, 223, 224, 225, 225, 216, 216, 216, 216, 216, 259, 255, 226, 260, 260, 261, 261, 262, 262, 263, 263, 263, 263, 256, 256, 207, 207, 258, 258, 264, 264, 257, 257, 82, 82, 265, 265, 266, 227, 267, 267, 267, 268, 268, 268, 268, 268, 269, 195, 228, 229, 230, 231, 271, 232, 272, 232, 270, 270, 274, 273, 218, 275, 275, 275, 275, 275, 276, 276, 276, 276, 276, 276, 276, 277, 277, 277, 277, 278, 278, 278, 278, 278, 278, 279, 279, 279, 280, 280, 280, 280, 280, 281, 281, 281, 282, 282, 283, 283, 284, 284, 285, 285, 286, 286, 287, 287, 288, 288, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 290, 290, 291, 291, 291, 292, 292, 293, 293, 296, 294, 295, 295, 298, 297, 299, 297, 300, 301, 297, 302, 303, 297, 46, 46, 245, 245, 245, 245, 233, 233, 233, 81, 305, 306, 307, 308, 309, 28, 64, 64, 63, 63, 109, 109, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 67, 67, 69, 69, 69, 311, 311, 312, 313, 313, 314, 314, 314, 314, 204, 204, 315, 315, 317, 110, 318, 318, 319, 158, 316, 316, 320, 320, 321, 321, 321, 321, 325, 325, 326, 326, 326, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 341, 341, 341, 341, 328, 342, 324, 343, 343, 344, 344, 344, 344, 344, 344, 208, 208, 345, 49, 49, 347, 322, 350, 322, 346, 346, 346, 348, 348, 354, 354, 353, 353, 355, 355, 349, 349, 351, 351, 356, 356, 357, 352, 352, 352, 329, 329, 340, 340, 358, 359, 359, 330, 330, 360, 360, 363, 361, 362, 362, 364, 364, 364, 367, 365, 366, 366, 368, 368, 331, 331, 331, 331, 369, 370, 374, 371, 373, 373, 373, 375, 375, 379, 378, 378, 376, 376, 377, 377, 381, 380, 380, 372, 382, 372, 332, 332, 332, 332, 332, 332, 383, 384, 385, 385, 385, 386, 387, 388, 388, 389, 389, 333, 333, 333, 333, 390, 390, 392, 392, 391, 393, 391, 391, 334, 335, 394, 338, 336, 396, 397, 339, 399, 400, 337, 337, 398, 398, 395, 395, 304, 304, 304, 304, 401, 401, 403, 403, 405, 404, 406, 404, 402, 402, 402, 410, 408, 411, 412, 408, 407, 407, 413, 413, 414, 414, 414, 414, 414, 419, 415, 420, 416, 421, 422, 423, 417, 425, 426, 427, 417, 424, 424, 429, 418, 428, 432, 428, 431, 434, 431, 430, 430, 430, 433, 433, 433, 409, 435, 409, 3, 3, 436, 3, 3, 437, 437, 246, 246, 241, 241, 5, 438, 438, 438, 438, 442, 438, 438, 438, 438, 439, 439, 440, 443, 440, 441, 441, 444, 444, 445, }; static readonly short [] yyLen = { 2, 2, 0, 3, 1, 2, 4, 3, 1, 0, 1, 1, 2, 4, 2, 1, 2, 1, 1, 5, 2, 3, 0, 0, 11, 1, 3, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 0, 3, 0, 6, 3, 1, 1, 1, 1, 1, 3, 0, 3, 1, 0, 3, 0, 1, 1, 3, 3, 1, 1, 0, 4, 4, 0, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 16, 5, 0, 9, 0, 1, 1, 2, 3, 0, 3, 1, 1, 1, 0, 8, 0, 9, 6, 0, 0, 3, 0, 1, 1, 2, 2, 0, 5, 0, 1, 1, 2, 3, 0, 4, 2, 1, 1, 1, 0, 3, 0, 0, 10, 0, 0, 0, 12, 8, 1, 1, 0, 1, 1, 3, 3, 3, 5, 3, 5, 1, 1, 1, 1, 3, 4, 6, 4, 0, 7, 0, 1, 1, 2, 1, 1, 1, 4, 6, 4, 1, 2, 2, 1, 0, 0, 0, 10, 0, 0, 0, 13, 1, 2, 1, 2, 1, 0, 5, 0, 5, 1, 1, 1, 0, 0, 0, 0, 15, 5, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 1, 1, 1, 0, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 7, 0, 7, 2, 2, 2, 0, 0, 9, 1, 1, 0, 1, 0, 6, 0, 6, 1, 0, 8, 0, 9, 0, 0, 10, 0, 0, 3, 0, 1, 1, 2, 2, 0, 5, 0, 2, 2, 2, 1, 1, 1, 0, 5, 0, 5, 1, 1, 0, 0, 0, 0, 13, 0, 2, 2, 0, 1, 2, 1, 3, 2, 0, 5, 0, 0, 0, 13, 0, 1, 1, 3, 1, 4, 2, 0, 3, 2, 1, 3, 0, 3, 1, 1, 3, 1, 2, 3, 4, 4, 0, 3, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 4, 4, 4, 3, 3, 4, 3, 4, 4, 0, 1, 3, 4, 0, 1, 1, 3, 2, 3, 1, 2, 3, 2, 1, 1, 0, 1, 1, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 4, 3, 1, 4, 4, 3, 1, 3, 2, 1, 3, 1, 1, 1, 4, 3, 2, 2, 6, 3, 7, 4, 3, 7, 3, 0, 2, 4, 1, 2, 0, 1, 1, 3, 3, 1, 1, 1, 0, 1, 1, 2, 2, 3, 1, 2, 0, 1, 2, 4, 1, 3, 0, 5, 1, 1, 1, 2, 3, 3, 4, 4, 1, 2, 4, 4, 4, 4, 0, 4, 0, 5, 0, 1, 0, 4, 4, 1, 2, 2, 4, 2, 1, 2, 2, 2, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 2, 1, 0, 1, 1, 1, 0, 2, 1, 1, 0, 4, 0, 5, 0, 0, 7, 0, 0, 8, 1, 1, 1, 1, 1, 1, 6, 4, 4, 1, 1, 0, 0, 0, 0, 15, 0, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 0, 1, 1, 1, 2, 4, 1, 3, 1, 3, 1, 1, 0, 1, 1, 1, 0, 4, 1, 1, 0, 4, 0, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 4, 1, 2, 2, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1, 0, 6, 0, 7, 0, 2, 1, 0, 1, 0, 1, 1, 2, 2, 4, 0, 2, 0, 1, 1, 2, 4, 1, 5, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 5, 7, 0, 8, 0, 1, 1, 2, 1, 0, 3, 1, 2, 3, 1, 1, 1, 1, 1, 5, 7, 0, 4, 7, 3, 1, 0, 1, 0, 5, 1, 0, 1, 0, 1, 1, 1, 3, 6, 0, 9, 1, 1, 1, 1, 1, 1, 2, 2, 3, 4, 3, 3, 3, 4, 3, 0, 1, 3, 4, 5, 3, 1, 2, 0, 1, 2, 0, 7, 3, 2, 2, 0, 3, 5, 0, 0, 10, 0, 0, 9, 5, 2, 1, 0, 2, 2, 2, 2, 2, 4, 5, 4, 5, 0, 5, 0, 6, 3, 2, 1, 0, 3, 0, 0, 6, 0, 1, 1, 2, 1, 1, 1, 1, 1, 0, 5, 0, 3, 0, 0, 0, 12, 0, 0, 0, 13, 0, 2, 0, 3, 1, 0, 4, 1, 0, 4, 1, 2, 2, 1, 2, 2, 0, 0, 4, 2, 3, 0, 4, 2, 2, 3, 0, 1, 1, 1, 2, 2, 2, 4, 3, 0, 7, 4, 4, 3, 1, 3, 0, 0, 4, 0, 1, 1, 3, 2, }; static readonly short [] yyDefRed = { 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 11, 14, 0, 919, 0, 0, 923, 0, 0, 15, 17, 18, 375, 381, 388, 376, 378, 0, 377, 0, 384, 386, 373, 0, 380, 382, 374, 385, 387, 383, 337, 940, 0, 379, 930, 0, 10, 1, 0, 0, 0, 12, 0, 770, 0, 0, 0, 0, 0, 0, 0, 0, 416, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 474, 0, 415, 0, 513, 0, 845, 0, 0, 0, 624, 0, 0, 0, 0, 0, 0, 0, 674, 0, 723, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 613, 0, 769, 0, 706, 0, 0, 0, 0, 390, 391, 0, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 411, 412, 620, 543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, 619, 622, 623, 690, 692, 0, 688, 691, 707, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 708, 0, 0, 0, 771, 772, 788, 789, 790, 791, 814, 815, 816, 817, 818, 819, 0, 0, 0, 20, 0, 0, 0, 327, 0, 329, 927, 16, 920, 0, 0, 239, 238, 235, 240, 241, 234, 253, 252, 245, 246, 242, 244, 243, 247, 236, 237, 248, 249, 255, 254, 250, 251, 0, 0, 943, 0, 932, 0, 931, 3, 52, 0, 0, 0, 42, 39, 41, 43, 44, 45, 46, 47, 50, 13, 0, 0, 0, 820, 417, 418, 843, 0, 0, 0, 0, 0, 0, 392, 0, 821, 0, 535, 529, 534, 722, 768, 693, 720, 719, 721, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 0, 0, 0, 794, 0, 0, 0, 738, 737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 830, 0, 389, 0, 0, 0, 0, 0, 0, 844, 0, 0, 0, 736, 732, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 616, 0, 542, 0, 0, 540, 544, 545, 539, 549, 548, 546, 547, 609, 524, 0, 410, 409, 0, 0, 0, 0, 0, 724, 0, 326, 0, 730, 731, 0, 477, 478, 0, 0, 0, 728, 729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 922, 689, 739, 727, 0, 766, 767, 873, 890, 0, 0, 0, 902, 861, 859, 883, 0, 0, 881, 884, 885, 886, 887, 862, 860, 0, 0, 0, 331, 0, 21, 0, 0, 0, 939, 0, 338, 0, 0, 0, 941, 0, 0, 40, 646, 652, 644, 0, 641, 651, 645, 643, 642, 649, 647, 648, 654, 650, 653, 655, 0, 0, 639, 51, 476, 0, 472, 473, 0, 0, 470, 0, 741, 0, 0, 0, 0, 764, 765, 0, 0, 0, 628, 0, 824, 822, 629, 0, 0, 498, 0, 0, 0, 489, 0, 493, 503, 505, 0, 485, 0, 0, 0, 0, 0, 480, 0, 483, 0, 487, 358, 825, 0, 0, 826, 834, 0, 0, 0, 835, 0, 0, 846, 0, 0, 735, 0, 368, 364, 365, 0, 0, 363, 366, 367, 0, 0, 0, 550, 0, 0, 531, 0, 611, 687, 0, 0, 682, 684, 685, 686, 421, 422, 0, 334, 335, 0, 177, 176, 178, 0, 0, 0, 0, 360, 0, 596, 0, 0, 828, 0, 0, 426, 0, 429, 0, 427, 0, 466, 0, 0, 0, 0, 0, 455, 458, 0, 0, 450, 457, 456, 0, 585, 586, 587, 588, 589, 590, 591, 592, 593, 595, 594, 551, 553, 552, 558, 559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 582, 0, 0, 502, 0, 0, 0, 0, 0, 0, 0, 874, 876, 872, 0, 882, 0, 0, 328, 937, 938, 352, 0, 0, 349, 0, 0, 174, 0, 0, 947, 933, 935, 60, 58, 59, 0, 0, 53, 0, 0, 61, 63, 27, 25, 0, 0, 305, 636, 0, 640, 425, 0, 475, 0, 526, 0, 537, 164, 185, 0, 0, 154, 0, 0, 0, 165, 530, 0, 848, 798, 0, 809, 795, 0, 800, 0, 0, 0, 823, 0, 0, 0, 488, 0, 504, 506, 0, 0, 442, 0, 0, 438, 0, 0, 467, 0, 508, 482, 0, 140, 509, 138, 139, 511, 0, 525, 0, 839, 0, 832, 0, 836, 517, 0, 0, 0, 353, 0, 515, 0, 0, 527, 0, 851, 0, 865, 0, 863, 0, 0, 626, 627, 0, 0, 0, 676, 677, 675, 683, 604, 610, 603, 0, 0, 333, 599, 0, 0, 0, 541, 827, 725, 430, 424, 428, 423, 528, 465, 464, 463, 460, 459, 0, 454, 419, 420, 431, 0, 0, 745, 0, 0, 891, 867, 0, 892, 0, 888, 0, 903, 0, 0, 0, 0, 871, 19, 330, 673, 672, 0, 671, 0, 348, 949, 175, 944, 0, 0, 54, 0, 0, 0, 0, 0, 0, 355, 0, 630, 0, 0, 80, 79, 0, 471, 0, 0, 0, 0, 0, 536, 0, 0, 0, 0, 0, 801, 0, 0, 0, 0, 0, 847, 495, 494, 445, 0, 0, 928, 929, 434, 440, 0, 443, 0, 469, 0, 0, 0, 0, 0, 775, 842, 0, 833, 0, 523, 518, 0, 0, 514, 0, 854, 0, 792, 866, 864, 0, 532, 0, 612, 608, 607, 606, 336, 598, 597, 614, 462, 0, 452, 451, 584, 0, 761, 744, 0, 0, 0, 750, 0, 869, 0, 896, 0, 911, 912, 905, 875, 877, 917, 351, 350, 948, 0, 0, 62, 56, 0, 64, 26, 23, 0, 0, 0, 211, 0, 102, 0, 77, 755, 113, 114, 0, 0, 0, 758, 183, 184, 0, 0, 0, 0, 157, 166, 158, 160, 0, 0, 0, 0, 797, 805, 0, 810, 811, 0, 0, 444, 446, 447, 441, 435, 439, 0, 500, 0, 468, 479, 433, 512, 510, 0, 838, 0, 0, 0, 519, 0, 856, 0, 0, 625, 617, 0, 461, 0, 0, 740, 751, 868, 0, 0, 0, 889, 0, 0, 0, 936, 0, 0, 0, 69, 70, 73, 74, 0, 321, 0, 306, 631, 207, 97, 0, 742, 759, 169, 0, 181, 0, 0, 0, 793, 858, 0, 0, 0, 0, 812, 774, 484, 481, 781, 0, 787, 0, 0, 779, 0, 784, 840, 522, 521, 855, 852, 0, 615, 0, 0, 870, 893, 0, 0, 0, 907, 0, 918, 0, 75, 67, 0, 0, 0, 312, 311, 0, 0, 0, 0, 0, 0, 170, 0, 161, 159, 849, 802, 0, 0, 807, 0, 0, 776, 780, 0, 785, 0, 0, 618, 0, 753, 0, 897, 914, 915, 908, 878, 55, 0, 71, 72, 0, 0, 307, 0, 0, 0, 0, 760, 168, 0, 180, 0, 0, 813, 786, 0, 678, 841, 853, 762, 0, 0, 0, 76, 0, 0, 322, 0, 372, 371, 0, 369, 660, 0, 632, 0, 661, 208, 98, 171, 850, 796, 0, 894, 0, 909, 0, 0, 0, 308, 0, 316, 0, 0, 0, 662, 0, 0, 0, 0, 898, 29, 24, 323, 0, 0, 0, 370, 0, 0, 0, 99, 679, 0, 0, 0, 0, 0, 317, 668, 0, 669, 666, 0, 664, 95, 0, 94, 0, 0, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 141, 0, 0, 224, 216, 217, 218, 219, 220, 221, 222, 223, 0, 0, 214, 0, 0, 895, 0, 324, 0, 309, 0, 0, 0, 633, 84, 0, 267, 262, 266, 0, 209, 215, 0, 901, 899, 320, 667, 665, 0, 0, 0, 0, 0, 0, 0, 275, 0, 0, 225, 0, 0, 233, 0, 152, 142, 151, 0, 100, 0, 0, 261, 0, 0, 260, 0, 146, 0, 0, 342, 0, 340, 0, 0, 186, 0, 0, 0, 0, 0, 634, 210, 0, 103, 0, 339, 0, 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 143, 0, 0, 190, 0, 343, 0, 228, 227, 226, 0, 101, 0, 279, 0, 258, 119, 0, 256, 0, 0, 0, 121, 0, 344, 0, 0, 187, 0, 0, 0, 341, 231, 112, 110, 0, 0, 283, 0, 0, 0, 0, 0, 147, 0, 264, 0, 0, 0, 0, 125, 0, 0, 0, 0, 345, 346, 0, 0, 0, 0, 0, 107, 298, 0, 280, 0, 0, 292, 0, 0, 0, 287, 0, 137, 0, 0, 0, 0, 132, 0, 0, 276, 0, 122, 0, 116, 126, 144, 150, 198, 0, 188, 0, 0, 0, 0, 111, 0, 104, 108, 0, 0, 0, 294, 0, 295, 284, 0, 0, 278, 288, 259, 0, 0, 118, 133, 257, 0, 274, 0, 265, 269, 128, 0, 0, 0, 195, 197, 191, 232, 109, 299, 301, 281, 0, 0, 293, 290, 136, 134, 148, 0, 0, 0, 145, 199, 201, 189, 0, 0, 0, 292, 0, 270, 272, 129, 0, 0, 192, 303, 304, 300, 302, 291, 149, 0, 0, 205, 204, 203, 200, 202, 0, 0, 0, 193, 271, 273, }; protected static readonly short [] yyDgoto = { 7, 8, 50, 9, 51, 10, 11, 52, 234, 689, 432, 12, 13, 53, 22, 23, 24, 323, 194, 237, 674, 833, 1025, 1145, 1478, 830, 238, 239, 240, 241, 242, 243, 244, 245, 667, 447, 668, 669, 934, 670, 671, 938, 831, 1020, 1021, 1022, 268, 591, 1117, 111, 842, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 466, 678, 1292, 947, 1124, 1087, 1154, 1177, 1235, 1303, 1149, 1353, 1330, 1378, 1379, 1380, 949, 1376, 950, 732, 1269, 1341, 1316, 1366, 515, 1359, 1335, 1395, 913, 1364, 1367, 1368, 1462, 1396, 1397, 1393, 1220, 1276, 1247, 1293, 690, 1343, 1442, 1313, 1399, 1471, 467, 269, 691, 692, 693, 694, 695, 654, 568, 1129, 655, 656, 848, 1295, 1320, 1410, 1371, 1444, 1296, 1346, 1467, 1491, 1411, 1412, 1489, 1475, 1476, 945, 1086, 1176, 1232, 1278, 1233, 1234, 1270, 1327, 1299, 1271, 326, 225, 1375, 1273, 1360, 1357, 1221, 1249, 1289, 1439, 1401, 1137, 1440, 592, 1484, 1485, 1288, 1356, 1332, 1388, 1383, 1354, 1420, 1425, 1386, 1389, 1390, 1470, 1426, 1384, 1385, 1480, 1468, 1469, 836, 1028, 1084, 1169, 1147, 1185, 1170, 1171, 1196, 1081, 1167, 1195, 534, 195, 113, 352, 197, 562, 442, 226, 1308, 652, 653, 819, 835, 327, 409, 533, 305, 1150, 1151, 46, 115, 306, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 254, 796, 987, 511, 719, 869, 720, 721, 980, 138, 200, 725, 593, 594, 595, 596, 790, 475, 476, 299, 985, 727, 410, 301, 498, 499, 500, 501, 504, 734, 312, 749, 750, 886, 265, 481, 762, 266, 480, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 571, 572, 573, 770, 771, 902, 772, 154, 559, 764, 353, 1003, 548, 1064, 155, 493, 943, 1085, 1174, 1274, 468, 1155, 1156, 1203, 1204, 820, 551, 338, 767, 1162, 552, 553, 270, 271, 272, 158, 159, 160, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 172, 285, 577, 173, 174, 319, 801, 631, 916, 845, 685, 953, 914, 917, 1044, 918, 954, 955, 286, 175, 176, 177, 1054, 991, 1055, 1056, 1057, 1103, 1058, 178, 179, 180, 181, 702, 486, 703, 972, 1096, 704, 969, 705, 1098, 1099, 182, 183, 184, 185, 186, 187, 307, 524, 525, 993, 1105, 315, 968, 854, 1131, 1000, 892, 1106, 188, 420, 189, 421, 919, 1010, 422, 643, 814, 811, 812, 1015, 423, 424, 425, 426, 427, 428, 923, 633, 921, 1110, 1179, 1237, 1012, 1141, 1194, 809, 639, 810, 1072, 1014, 1073, 1142, 1016, 17, 19, 47, 48, 229, 657, 827, 443, 658, 659, }; protected static readonly short [] yySindex = { -10, 0, -184, -141, -197, -115,11915, 0, 167, 0, 0, -115, -197, 0, 0, 38, 0, 6590, -115, 0, -176, -244, 0, 0, 0, 0, 0, 0, 0, 0, 185, 0, 282, 0, 0, 0,11976, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 575, 0, 0, 167, 244, -115, 0, 252, 0, 241, 300, 191,11415, 336, 117, 250, 6747, 0, 117, 117, 117, -206, 117, 117, 549, 0,10518, 117, 117, 0,10518, 0, 287, 0, 191, 0, 117, 342, 117, 0,11934,11934, 481, 117, 117, -214,11198, 0,10518, 0,11198,11198,11198, 11198,11198,11198,11198,11198, 0, 101, 0, 7844, 0, 79, 0, 440, 381, 687, 260, 0, 0, 495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 761, 697, 48, 637, 590, 657, 484, 507, 526, 553, -72, 573, 0, 0, 0, 0, 0, 0, 3353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 608, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 228, 244, 0, 355, 612, 615, 0, 581, 0, 0, 0, 0, 7844, 7844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 638, 588, 0, 620, 0, -162, 0, 0, 0, 244, 2662, 244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 786, 634,10654, 0, 0, 0, 0,10518, 117, 117, 784, 356, 687, 0, -251, 0, 7844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 724, 46,11415, 0, 7844,10518, 710, 0, 0, 719,10518,10518, 8907, 6, -138, 735, 8139,11198, 101, 0, 742, 0, 747, 7844,10518, 758, 534, 117, 0,10518, 287, 9974, 0, 0, 342,10518, 342, 141, 450, 844, -251, 0, 608, 260, 849, -251, 10518,10518,10518, 250, 0, 808, 0, 6904, -261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3759, 0, 0,11844, 141, 748, 779,10518, 0, 746, 0, 278, 0, 0, 314, 0, 0, 768, 8279, 9702, 0, 0,11198,10518,10518,10518,10518,10518,10518,10518,10518, 10518,10518,10518,11198,11198,11198, 7844, 7844,11198,11198, 11198,11198,11198,11198,11198,11198,11198,11198,11198,11198, 11198,11198,11198,11198,10518, 0, 0, 0, 0, 608, 0, 0, 0, 0,11934,11934, -251, 0, 0, 0, 0, -32, 701, 0, 0, 0, 0, 0, 0, 0, 244, 244, 781, 0, 788, 0, 746, 638, 638, 0, -129, 0, 472, 638, 812, 0, -190, 2662, 0, 0, 0, 0, -167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44,12473, 0, 0, 0, 746, 0, 0, 842, 432, 0, 863, 0, 865, 27, 287, 117, 0, 0, -251, 7827, -212, 0, 867, 0, 0, 0, 869, 877, 0, 359, 0, 885, 0, 881, 0, 0, 0, 461, 0, 7963, 594,10518, 735, 9702, 0, 7375, 0, 342, 0, 0, 0, 886, 887, 0, 0, 191, 287, 174, 0, 977, 889, 0, 890, -251, 0, 891, 0, 0, 0,10518, 963, 0, 0, 0, 10518, 970, 893, 0, 898, 908, 0,11844, 0, 0, -264, 6904, 0, 0, 0, 0, 0, 0, 287, 0, 0, -286, 0, 0, 0, 342, 141, -251, 8296, 0, 900, 0, 912,11198, 0, 909, 6904, 0, 234, 0, 256, 0, 746, 0, -172,10518,10518, 916, 1033, 0, 0, -246, 918, 0, 0, 0, 697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 697, 697, 48, 48, 637, 637, 637, 637, 590, 590, 657, 484, 507, 526, 553, 0, 919, -185, 0,10518, 1002, -251, 1003, -251, 921,10518, 0, 0, 0, 944, 0, 317, 746, 0, 0, 0, 0, 458, -62, 0, 8296, 472, 0, 933, 932, 0, 0, 0, 0, 0, 0, 141, 612, 0, 934, 936, 0, 0, 0, 0, 939, 8453, 0, 0, 386, 0, 0, 587, 0,10654, 0, 935, 0, 0, 0, 629, 941, 0, 945, 946, 949, 0, 0,10518, 0, 0, -251, 0, 0, 942, 0, 950,10518, 1021, 0, 6747, 6747, 8122, 0, 8907, 0, 0,10110, 154, 0, -263, -127, 0, 896, 913, 0, -131, 0, 0, 967, 0, 0, 0, 0, 0, 968, 0, 974, 0, 4077, 0, 287, 0, 0, 342, 467, 922, 0, -226, 0, 972, 973, 0, 6747, 0, 6747, 0,10518, 0,10518, 7844, 0, 0, 287, 978, 287, 0, 0, 0, 0, 0, 0, 0, 8436, 7844, 0, 0, -251,11844, 1008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9566, 0, 0, 0, 0, 9838,10518, 0, 7532, 971, 0, 0, 1058, 0, 1059, 0, 672, 0, 980, 10518,10518, -251, 0, 0, 0, 0, 0, 937, 0, -129, 0, 0, 0, 0, 472, 472, 0, 781, 987, 989, 940, 996, 947, 0, 947, 0, 1108, 1111, 0, 0,10518, 0,10246, 994, 629, 8296, 7844, 0, 249, 1113, 1114, 1000, 992, 0, 8593,10518, 1005,10518, 1094, 0, 0, 0, 0, 55,10382, 0, 0, 0, 0, 7668, 0, 1119, 0, 608,10518, 1011, 8122, 1013, 0, 0, -251, 0, -19, 0, 0, 746, 922, 0, -251, 0, -166, 0, 0, 0, 1014, 0, 1040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566, 0, 0, 0, 8139, 0, 0, -251, 1009, 971, 0,10518, 0, 10518, 0,10518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1018, 781, 0, 0,10790, 0, 0, 0, 1019, 1016, 947, 0, 947, 0, 947, 0, 0, 0, 0, -251, 1024, 994, 0, 0, 0, -160, -147, 1028, 1029, 0, 0, 0, 0, 1030, 8122, 971, -185, 0, 0, 1031, 0, 0, 1020, 6747, 0, 0, 0, 0, 0, 0, 1043, 0, 735, 0, 0, 0, 0, 0, -204, 0, 1044, 746, 922, 0, 922, 0, 971, 1047, 0, 0, 287, 0, 999, 1034, 0, 0, 0,10518, 1077,10518, 0,10518, 1075, 240, 0, 936, 245, 584, 0, 0, 0, 0, -197, 0, 4236, 0, 0, 0, 0, 1046, 0, 0, 0, 430, 0, 1048, 1172, 1174, 0, 0, 971, 1060, 971,10518, 0, 0, 0, 0, 0,10518, 0, 1063, -208, 0, -208, 0, 0, 0, 0, 0, 0, 287, 0,10518, 7532, 0, 0, 1086, 737, 1061, 0,10518, 0, 1064, 0, 0,10790, -115, 27, 0, 0, 1069, 1062, 1062, 1062,10246, 1068, 0, 10518, 0, 0, 0, 0, 1067, 950, 0, 6747, 1066, 0, 0, 6904, 0, 1076, 6747, 0, 1072, 0,10518, 0, 0, 0, 0, 0, 0,10518, 0, 0, 244, 1081, 0, 4395, -169, -169, -169, 0, 0,10518, 0, 6747, 6747, 0, 0, 6904, 0, 0, 0, 0, 1096, 10518,10518, 0, 244, 1080, 0, 244, 0, 0, 1083, 0, 0, 1036, 0, 1120, 0, 0, 0, 0, 0, 0, 6904, 0, 1110, 0, 1084, -169, 1051, 0, 1090, 0, 4395, 1091, 1098, 0, 1103, 1104, 1093,10518, 0, 0, 0, 0, 0, 1105, 244, 0,11494, -108, 244, 0, 0, 1116,10518, 1102, 1099, 1084, 0, 0, 1112, 0, 0, 1100, 0, 0,12473, 0, 1117, -108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253,12473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1118, 244, 0, -108, -251, 0, 1116, 0,10518, 0, 1107,11494,11660, 0, 0, 471, 0, 0, 0, 11692, 0, 0, 1121, 0, 0, 0, 0, 0, 7844, 7844, 284, 8139, 322, 342, 1145, 0, 141, 820, 0, 1179, 0, 0, 1084, 0, 0, 0, 1084, 0, 1070, 1073, 0, 7844, -146, 0, 7844, 0, 1074, 1125, 0, 141, 0, 1126, 8943, 0, 1147, 1101, -41, 489,11976, 0, 0, 1084, 0, 141, 0, 1123, 1106, 1143, 1142, 0, 1149, 1073, 1151, 27, 1146, 1150, 0, 1155, 1161, 0, 746, 0, 760, 0, 0, 0, 1158, 0, -118, 0, 1152, 0, 0, 1165, 0, 1164, 1115, 1166, 0, 1162, 0, 27, 27, 0, 27, 1169, 1170, 0, 0, 0, 0, 1171, -94, 0, 1173, 27, 1283, 1177, 27, 0, 471, 0, 8122, 1130, 1178, 1162, 0, 1181, 1183, -74, 1188, 0, 0, 27,10246, 1141, 1184, 1171, 0, 0,12473, 0, 244, 244, 0, 1148, 1187, 1173, 0, 1192, 0,10518, 1156, 1189, 1177, 0, 1196, 27, 0, -181, 0, 1194, 0, 0, 0, 0, 0,12473, 0, -74, -74, 1206, 1204, 0, -118, 0, 0, 208, 1210, 12473, 0,12473, 0, 0, 8122, 1198, 0, 0, 0, 1212, 1165, 0, 0, 0, 1208, 0, -114, 0, 0, 0, -169, 831, 1217, 0, 0, 0, 0, 0, 0, 0, 0, 1271, 1324, 0, 0, 0, 0, 0, 1218, 1219, 8122, 0, 0, 0, 0, -74, 523, 523, 0, -169, 0, 0, 0, 52, 52, 0, 0, 0, 0, 0, 0, 0, 9702, 9702, 0, 0, 0, 0, 0, 1223, 1220, 1222, 0, 0, 0, }; protected static readonly short [] yyRindex = { 2925, 0, 0, 7061, 2925, 0, 0, 0, 1595, 0, 0, 3074, 2882, 0, 0, 0, 0, 0, 3074, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1597, 0, 0, 1597, 0, 0, 1595, 1260, 2968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1232, 0, 0, 0, 0, 0, 0, 0, 0, 8610, 0, 1225, 0, 0, 0, 1225, 0, 0, 0, 0, 0, 0, 197, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4616, 0, 0, 0, 0, 0, 0, 243, 4553, 3829, 0, 0, 4394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4709, 4813, 5121, 5325, 5665, 5869, 6005, 6141, 6277, 1394, 6469, 533, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 872, 872, 3121, 0, 487, 1227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1597, 131, 0, 0, 0, 0, 0, 0, 0, 3168, 391, 3231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1237, 0, 0, 0, 0, 0, 3440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2236, 0, 2638, 338, 2366, 0, 0, 0, 2513, 2366, 0, 0, 0, 0, 0, 1232, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1234, 1290, 0, 0, 1225, 0, 3440, 0, 0, 0, 0, 0, 0, 0, 0, 0, -240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 3274, 1531, 0, 0, 0, 0, 2083, 1597, 1597, 0, -71, 0, 7392, 1597, 1607, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402,11347, 0, 0, 0, 3440, 0, 0, 0, 0, 0, 0, 0, 0,11736, 0, 0, 0, 0, 0, 1233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502, 559, 0, 0, 1240, 0, 0, 0, 0, 0, 10, 0, 0, 3917, 1238, 0, 0, 0, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1234, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 8750, 0, 0, 0, 0, 0, 0, 35, 419, 0, 0, 0, 1239, 0, 0, 0, 0, 0, 0, 0, 3440, 0, 3440, 0, 4076, 0, 0, 0, 0, 142, 0, 0, 0, 0, -239, 0, 0, 0, 4881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4985, 5053, 5189, 5257, 5393, 5461, 5529, 5597, 5733, 5801, 5937, 6073, 6209, 6345, 6413, 0, 0, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -175, 0, 0, 2083, 0, 0, 0, 0, 1202, 0, 0, 0, 8767, 0, 0, 649, 0, 0, 0, 0, 0, 0, 845, 618, 0, 0, 1246, 0, 0, 0, 0, 1254, 0, 0, 0, 0, 0, 0, 10926, 0, 0, 0, 665, 0, 0, 0,11988, 0, 0, 676, 726, 739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1247, 0, 0, 0, 0, 0, 0, 0, 1256, 0, 0, 0, 3506, 0, 0, 40, 0, 93, 3599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257, 0, 0, 0, 0, 0, 0, 0, 0, 76, 541, 0, 0, 0, 0, 0, 1255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 0, 0, 0, 1250, 0, 0, 0, 0, 0, 0, 291, 0, 469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -71, 0, 0, 0, 0,11988, 7549, 0, 1258, 0, 600, 0, 0, 0, 0, 0, 0, 1213, 1214, 0, 0, 0, 0, 0, 1259,12005, 0, 0, 0,11812, 0, 0, 0, 744, 0, 1272, 0, 0, 0, 1954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3758, 0, 4235, 1262, 0, 0, 0, 1261, 0, 0, 0, 0, 388, 0, 0, 0, 0, 744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 754, 0, 0, 0, 0, 1284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1276, 0, 0, 0, 0, 0, 763, 777, 0, 0, 0, 0, 0, 0, 1282, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3917, 0, 0, 0, 0, 0, 1288, 0, 0, 388, 0, 0, 852, 0, 1282, 0, 0, 0, 8750, 0, 552, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 0, 1246, 8944, 0, 0, 0, 0, 0,12115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 648, 0, 731, 0, 0, 0, 0, 1295, 0, 1250, 1298, 0, 0, 0, 0, 0, 0, 0, 0, 1303, 0, 7218, 0, 0, 0, 0, 0, 0, 8750, 0, 0, 0, 0, 0, 0, 369, 661, 0, 0, 0, 0, 0, 0, 0,12158, 11736, 0, 0, 0, -148, -148, -148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12244, 0, 0, 0, 1311, 1311, 1311, 0, 0, 0, 0, 0, 0, 0, 0, -209, 0, 0, 0, 0, 0, 0, 0, 0,12287, 0, 0, -29, 0, 0, 64, 0, 0, 0, 0, 545, 0, 0, 0, 0, 0, 0, 1313, 0, 0, 0, 3011, 1306, 0, 0, 1325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436, 0, 81, 0, 0, 9098, 9296, 0, 0, 684, 0, 0, 0, 2796, 0, 0, 0, 0, 0, 396, 0, 0,11518, 0, 0, 9197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9390, 0, 9098, 0, 0, 684, 0, 0, 0, 0, 0, 402, 0, 0, 0, 0, 0, 0, 402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4550, 407, 0, 9432, 0, 0, 0, 9502, 0, 2796, 0, 0, 0, 2796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 817, 0, 1327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2796, 0, 902, 0, 490, 0, 0, 0, 0, 0, 0, 0,11736, 776, 0, 0, 0, 0, 0, 1319, 0, 692, 0, 0, 0, 0, 0, 0, 0, 813, 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0,11736,11736, 0,11768, 0, 0, 0, 0, 0, 0, 1321,12443, 0, 1322,11736,11062, 1323,11736, 0, 0, 0, 0, 0, 0, 1326, 0, 0, 0, 1087, 0, 0, 0,11736, 0, 0, 0, 1328, 0, 0, 211, 0,12367,12405, 0, 0, 0, 1329, 0, 0, 0, 0, 0, 0, 1331, 0, 0,11736, 0, 567, 0, 818, 0, 0, 0, 0, 0, 862, 0, 9464,12329, 0, 0, 0, 0, 0, 0, 0, 0, 1380, 0, 1437, 0, 0, 0, 826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1087,11234,12201, 0, 593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1238, 1238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; protected static readonly short [] yyGindex = { 0, 0, 1650, 0, 0, 0, 4, -8, -179, -50, 1657, 0, 1699, 1707, 135, 0, 0, 5, 0, 0, 0, 0, 0, 0, -795, -687, -221, -504, 0, 0, 0, 0, 0, -182, 0, 0, 0, 780, 0, 888, 0, 0, 0, 0, 636, 639, -17, -233, 0, 65, 0, 485, 0, 512, -820, -639, -614, -591, -583, -582, -552, -507, 0,-1157, 0, 14, 0, 144, 0,-1089, 0, 0, 0, -82, 306, 0, 0, 0, 337,-1049, 0, -275, -288, 1049, 0, 0, 0, -878, 293, 0, 0, -495, 0, 0, 361, 0, 0, 327, 0, 0, 364, 0, -764, -857, 0, 0, 0, 0, 0, 460, -13, 0, 0, 880, 882, 903, 1050, -511, 0, 0, -318, 906, 455, 0, -991, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 0, 0, 0, 504, 0, 0, 0, 0, -250, 456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536, 0, -501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 0, 0, 365, 0, 0, 373, 377, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 585, 0, 0, 0, 0, -61, 0, -15, 88, 0, 0, 443, 0, 503, 0, 952, 0, 1248, -287, -271, -66, 628, 0, 603, 0, -38, 315, 0, 0, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -267, 0, 31, 0, 0, -98, 0, 0, 0, 905, 0, -298, -137, 1065, 985, 0, 981, 0, 1193, 1411, 1122, 0, 0, 797, 1711, 0, 0, 0, 0, 1078, 0, 0, 0, 0, 0, -628, 1451, 0, 0, 0, 0, 0, 1109, 454, 848, 682, 853, 1387, 1389, 1392, 1395, 1396, 0, 1405, 0, 0, 0, 1045, 1263, -722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -291, 0, 0, 0, 0, -449, 0, 662, 0, 577, 0, 659, 0, 0, 0, 727, -526, -16, -307, -14, 0, 1671, 0, 51, 0, 59, 69, 78, 83, 97, 111, 119, 130, 138, 143, 0, -669, 0, -22, 0, 0, 876, 0, 789, 0, 0, 0, 769, -847, 851, -840, 0, 897, -463, 0, 0, 0, 0, 0, 0, 800, 0, 0, 801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 811, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, 1335, 0, 0, 0, 982, 0, 0, 0, 0, 0, 0, -165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 640, 0, 0, 0, 0, 0, 0, 0, 0, 718, 0, 0, 0, 0, 0, 0, -3, 1039, 0, 0, 0, 1056, }; protected static readonly short [] yyTable = { 110, 156, 235, 157, 112, 196, 325, 330, 18, 728, 190, 431, 513, 449, 516, 489, 473, 733, 679, 318, 44, 406, 259, 701, 430, 193, 768, 355, 509, 532, 497, 555, 6, 543, 1005, 569, 1157, 1158, 261, 1127, 860, 861, 899, 926, 310, 231, 253, 879, 363, 1244, 371, 781, 1051, 362, 469, 370, 538, 304, 776, 783, 1052, 304, 290, 334, 1052, 1251, 662, 311, 161, 313, 291, 799, 14, 196, 196, 1437, 162, 1008, 1183, 339, 191, 916, 706, 891, 787, 893, 163, 1152, 773, 672, 998, 20, 663, 263, 196, 164, 1035, 287, 288, 289, 165, 295, 296, 570, 765, 867, 308, 309, 656, 1037, 1310, 557, 292, 314, 166, 316, 16, 320, 505, 438, 439, 1043, 332, 333, 664, 874, 794, 650, 167, 870, 774, 347, 448, 449, 294, 473, 168, 292, 1351, 632, 235, 110, 156, 823, 157, 112, 369, 169, 1205, 292, 1460, 292, 1043, 324, 329, 170, 199, 292, 336, 783, 171, 2, 1381, 445, 916, 766, 868, 293, 558, 916, 1153, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 479, 1408, 795, 448, 198, 196, 196, 199, 448, 449, 656, 887, 916, 1438, 916, 800, 916, 788, 916, 916, 916, 683, 1008, 293, 335, 293, 487, 722, 161, 449, 1461, 293, 783, 1053, 967, 862, 162, 1053, 656, 20, 726, 440, 48, 1121, 1419, 518, 163, 665, 506, 569, 507, 472, 251, 15, 48, 164, 477, 408, 875, 233, 165, 192, 876, 446, 555, 1, 871, 196, 259, 469, 673, 1443, 531, 916, 166, 43, 535, 1036, 259, 996, 233, 540, 1352, 1453, 485, 1454, 539, 561, 167, 555, 1038, 1311, 488, 196, 233, 746, 168, 492, 494, 434, 1065, 252, 687, 1323, 508, 196, 314, 169, 6, 369, 361, 519, 196, 530, 233, 170, 527, 570, 529, 926, 171, 528, 492, 637, 612, 613, 1048, 1486, 637, 387, 874, 821, 637, 474, 545, 546, 640, 641, 570, 657, 675, 554, 576, 556, 676, 478, 1415, 637, 403, 510, 1076, 116, 635, 637, 196, 958, 824, 196, 313, 304, 404, 1107, 526, 292, 356, 388, 48, 2, 926, 680, 472, 590, 1463, 822, 637, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 1060, 688, 1061, 1224, 1182, 196, 196, 637, 116, 502, 1324, 436, 116, 503, 235, 1483, 989, 681, 1284, 677, 347, 630, 48, 537, 651, 738, 357, 973, 542, 233, 642, 361, 994, 196, 196, 1241, 657, 570, 361, 853, 361, 437, 361, 434, 680, 411, 1224, 3, 4, 5, 6, 196, 95, 1445, 1446, 483, 977, 49, 746, 389, 390, 1487, 876, 1133, 657, 196, 474, 474, 648, 649, 1138, 645, 436, 738, 660, 434, 522, 348, 681, 497, 578, 354, 315, 473, 413, 666, 361, 358, 227, 55, 228, 1339, 569, 740, 926, 1160, 1161, 700, 412, 726, 926, 696, 437, 347, 1450, 1042, 116, 637, 484, 1477, 880, 880, 1301, 634, 636, 638, 1302, 413, 359, 1369, 1370, 251, 1372, 201, 724, 349, 590, 354, 731, 413, 348, 347, 48, 1391, 738, 347, 1398, 347, 347, 347, 347, 1329, 737, 739, 747, 347, 697, 624, 350, 624, 1306, 1414, 755, 453, 726, 453, 1451, 757, 647, 637, 570, 956, 351, 1319, 744, 349, 196, 414, 866, 554, 252, 556, 415, 1282, 416, 1436, 879, 879, 349, 769, 417, 418, 1337, 698, 1225, 707, 738, 196, 350, 951, 880, 95, 680, 733, 554, 251, 556, 909, 971, 733, 414, 350, 789, 789, 624, 415, 722, 416, 474, 1226, 453, 1285, 414, 417, 418, 351, 701, 415, 872, 416, 202, 348, 1283, 960, 745, 417, 418, 1225, 753, 359, 570, 359, 1227, 359, 359, 116, 359, 984, 359, 325, 1228, 1229, 768, 247, 252, 325, 233, 248, 733, 802, 360, 233, 1226, 1136, 264, 808, 879, 419, 516, 1077, 1286, 246, 1248, 910, 116, 737, 775, 45, 910, 349, 910, 1230, 196, 910, 910, 1227, 910, 910, 114, 317, 359, 350, 359, 1228, 1229, 359, 116, 95, 434, 882, 429, 837, 350, 196, 325, 782, 637, 249, 910, 472, 783, 637, 785, 350, 786, 637, 351, 635, 259, 250, 896, 535, 636, 492, 1230, 838, 1231, 784, 1207, 1223, 637, 114, 858, 435, 903, 114, 815, 731, 332, 579, 726, 635, 724, 804, 332, 806, 636, 1024, 1207, 580, 332, 913, 839, 332, 332, 262, 913, 637, 913, 328, 328, 913, 913, 910, 913, 913, 196, 332, 635, 1231, 883, 317, 1223, 636, 1207, 581, 637, 816, 663, 433, 328, 360, 894, 711, 895, 582, 913, 196, 332, 349, 349, 474, 897, 349, 769, 817, 434, 361, 901, 332, 332, 196, 737, 332, 332, 196, 663, 818, 855, 959, 317, 979, 350, 350, 651, 663, 350, 332, 590, 332, 1100, 563, 988, 590, 911, 332, 731, 351, 564, 114, 351, 332, 583, 521, 600, 332, 600, 927, 928, 555, 565, 913, 1089, 951, 116, 682, 522, 318, 332, 683, 360, 904, 737, 318, 1090, 888, 904, 196, 904, 1130, 319, 904, 904, 523, 904, 904, 435, 360, 948, 597, 488, 555, 328, 328, 714, 196, 196, 666, 715, 317, 332, 95, 492, 884, 904, 975, 614, 615, 679, 1024, 1275, 941, 978, 942, 1075, 331, 317, 1159, 555, 95, 474, 359, 986, 332, 731, 474, 332, 277, 1325, 277, 116, 399, 1402, 496, 277, 583, 332, 372, 332, 496, 583, 929, 583, 583, 583, 583, 583, 583, 583, 583, 583, 583, 583, 95, 328, 116, 840, 332, 332, 400, 196, 904, 1181, 841, 583, 1009, 583, 1011, 583, 1013, 583, 583, 583, 325, 401, 659, 325, 332, 114, 297, 328, 298, 196, 1023, 659, 332, 449, 763, 332, 763, 497, 763, 328, 411, 1455, 411, 497, 268, 563, 328, 846, 1004, 666, 797, 1144, 564, 268, 114, 1083, 227, 992, 230, 995, 731, 411, 411, 402, 565, 997, 1078, 1029, 1079, 1030, 658, 1031, 583, 405, 723, 1257, 114, 1474, 503, 658, 66, 411, 393, 394, 66, 647, 516, 298, 328, 411, 1006, 328, 411, 1492, 1493, 435, 395, 396, 65, 65, 769, 436, 65, 1068, 1272, 1070, 743, 1071, 743, 437, 906, 1272, 474, 441, 752, 906, 752, 906, 752, 227, 906, 906, 196, 906, 906, 328, 328, 1032, 167, 946, 167, 946, 167, 900, 116, 116, 924, 925, 900, 1080, 900, 391, 392, 900, 900, 488, 900, 900, 444, 754, 414, 754, 470, 328, 328, 415, 155, 416, 155, 1108, 731, 769, 471, 417, 418, 397, 398, 1115, 251, 347, 364, 334, 1023, 347, 482, 332, 347, 116, 347, 116, 235, 488, 1120, 347, 488, 618, 619, 620, 621, 365, 366, 450, 816, 384, 385, 386, 490, 554, 951, 556, 906, 1112, 1113, 1140, 235, 491, 162, 1168, 162, 367, 1143, 179, 512, 179, 451, 179, 1202, 252, 196, 163, 368, 163, 488, 900, 114, 361, 857, 452, 857, 554, 574, 556, 454, 517, 1164, 1071, 68, 455, 68, 456, 457, 458, 459, 185, 520, 185, 1168, 460, 536, 1206, 1222, 461, 373, 541, 474, 1290, 554, 156, 556, 156, 120, 549, 120, 462, 328, 575, 463, 196, 464, 1206, 350, 1202, 1193, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 196, 350, 441, 328, 1238, 1280, 1281, 114, 661, 465, 1222, 337, 1206, 583, 282, 337, 282, 332, 115, 127, 115, 127, 1464, 1465, 328, 115, 354, 289, 1309, 289, 337, 1312, 114, 646, 340, 341, 342, 343, 344, 345, 346, 347, 332, 332, 681, 332, 332, 57, 879, 879, 488, 520, 520, 637, 637, 196, 196, 1125, 1126, 337, 742, 1277, 684, 196, 686, 1291, 616, 617, 709, 25, 708, 26, 196, 196, 27, 196, 710, 622, 623, 28, 712, 1297, 713, 29, 756, 735, 736, 5, 751, 752, 754, 758, 31, 1297, 759, 196, 337, 760, 196, 33, 337, 777, 332, 337, 34, 337, 1297, 761, 35, 328, 337, 778, 780, 1326, 792, 260, 793, 332, 116, 797, 37, 798, 38, 803, 805, 1297, 39, 813, 1255, 807, 328, 1382, 825, 826, 40, 41, 828, 829, 42, 832, 849, 743, 859, 844, 337, 856, 850, 851, 1409, 260, 852, 857, 198, 260, 260, 260, 260, 260, 260, 260, 260, 1421, 1423, 873, 114, 114, 877, 292, 880, 878, 885, 889, 915, 890, 731, 48, 1277, 898, 906, 920, 922, 926, 930, 434, 936, 939, 488, 937, 1409, 1409, 940, 944, 43, 328, 946, 952, 964, 965, 48, 966, 967, 976, 983, 1431, 974, 506, 1317, 114, 990, 114, 1002, 48, 1007, 1001, 328, 1017, 48, 1026, 1027, 1047, 1317, 48, 322, 48, 48, 48, 48, 1033, 328, 1039, 1040, 48, 328, 1041, 1046, 48, 731, 1347, 337, 1348, 1049, 116, 1067, 1059, 1409, 116, 1063, 48, 116, 1066, 48, 1069, 48, 1074, 1088, 1092, 1091, 1093, 1101, 1094, 1111, 1116, 1114, 1122, 1123, 1128, 1132, 544, 1134, 1139, 1136, 1163, 731, 116, 116, 1166, 48, 116, 48, 48, 1146, 1173, 1479, 1479, 1172, 1180, 1153, 1181, 1192, 1488, 1488, 1186, 1189, 1188, 590, 590, 1184, 1190, 1191, 1236, 1197, 1243, 328, 328, 116, 1239, 1258, 1240, 544, 1287, 1242, 1300, 1245, 1252, 1362, 1304, 1279, 1331, 1305, 1314, 609, 610, 611, 1315, 1318, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 1333, 260, 1321, 5, 1334, 1322, 1336, 48, 1338, 1342, 1324, 260, 1344, 1340, 1345, 1350, 260, 49, 48, 1355, 1358, 1361, 1365, 48, 1363, 1392, 328, 48, 1373, 1374, 48, 1377, 332, 1387, 1403, 474, 474, 1394, 332, 1406, 1404, 1407, 48, 48, 1413, 1416, 1417, 48, 48, 1428, 1430, 1433, 1427, 48, 1435, 48, 48, 48, 48, 1447, 1432, 1441, 1448, 48, 1452, 1456, 1459, 48, 1457, 48, 332, 1466, 1451, 1450, 332, 1472, 1473, 1494, 1495, 48, 1496, 9, 48, 942, 48, 533, 260, 829, 48, 32, 114, 491, 601, 934, 492, 799, 448, 602, 260, 260, 260, 544, 30, 260, 260, 501, 670, 22, 48, 803, 490, 30, 746, 516, 31, 332, 31, 206, 96, 837, 332, 756, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 804, 747, 579, 310, 757, 332, 748, 328, 777, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 749, 332, 332, 806, 778, 332, 332, 332, 332, 332, 808, 658, 332, 332, 680, 658, 779, 332, 332, 332, 332, 332, 332, 332, 332, 332, 314, 339, 637, 123, 105, 285, 130, 637, 232, 124, 332, 106, 286, 332, 131, 332, 236, 332, 54, 21, 332, 1018, 1118, 1418, 935, 1119, 332, 1254, 1246, 1449, 1434, 834, 1458, 1400, 114, 1405, 1294, 961, 114, 962, 579, 114, 1490, 1307, 1253, 579, 847, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 328, 957, 963, 1429, 1482, 1328, 1250, 1424, 114, 114, 1422, 579, 114, 579, 1481, 579, 1349, 579, 579, 579, 1198, 1298, 931, 748, 1187, 982, 908, 910, 585, 791, 865, 1050, 300, 579, 547, 624, 831, 49, 625, 114, 863, 49, 626, 49, 579, 49, 627, 49, 628, 328, 49, 260, 49, 49, 843, 49, 579, 49, 629, 49, 763, 49, 49, 49, 49, 328, 1175, 49, 49, 1259, 1178, 905, 579, 49, 49, 49, 49, 49, 407, 1135, 49, 49, 49, 1095, 49, 1109, 49, 49, 49, 49, 49, 49, 49, 49, 1045, 49, 49, 49, 49, 1062, 1034, 49, 49, 49, 1102, 49, 1097, 1104, 741, 1165, 49, 49, 644, 49, 49, 933, 49, 49, 49, 0, 328, 328, 49, 999, 501, 0, 0, 1256, 328, 501, 501, 932, 0, 0, 0, 0, 0, 328, 328, 0, 328, 0, 49, 0, 49, 49, 0, 0, 0, 0, 0, 0, 501, 0, 0, 0, 0, 49, 0, 0, 328, 0, 501, 328, 0, 501, 501, 0, 0, 0, 501, 0, 0, 501, 0, 501, 0, 501, 501, 501, 501, 0, 0, 0, 0, 501, 0, 0, 0, 501, 260, 0, 0, 501, 0, 0, 0, 0, 49, 0, 0, 501, 0, 773, 501, 0, 501, 501, 0, 0, 0, 0, 501, 0, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 0, 0, 0, 0, 544, 501, 501, 0, 0, 0, 501, 501, 0, 501, 501, 501, 501, 501, 501, 501, 0, 501, 501, 0, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 0, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 0, 0, 501, 0, 501, 0, 501, 0, 0, 501, 831, 831, 0, 0, 0, 501, 0, 0, 831, 831, 831, 831, 831, 0, 831, 831, 0, 831, 831, 831, 831, 831, 831, 831, 831, 0, 0, 0, 0, 831, 0, 831, 831, 831, 831, 831, 831, 0, 0, 831, 332, 0, 0, 831, 831, 0, 831, 831, 831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, 0, 831, 0, 831, 831, 0, 0, 831, 0, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 0, 831, 0, 0, 831, 831, 0, 0, 831, 831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, 831, 831, 831, 831, 0, 0, 0, 831, 831, 0, 0, 831, 0, 0, 0, 0, 831, 831, 831, 831, 831, 0, 0, 0, 831, 0, 831, 0, 0, 0, 0, 0, 831, 831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, 831, 831, 831, 0, 831, 773, 773, 0, 0, 0, 0, 831, 0, 773, 773, 773, 773, 773, 0, 773, 773, 0, 773, 773, 773, 773, 773, 773, 773, 0, 0, 734, 0, 0, 773, 0, 773, 773, 773, 773, 773, 773, 0, 0, 773, 0, 0, 0, 773, 773, 0, 773, 773, 773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 773, 0, 773, 0, 773, 773, 0, 0, 773, 0, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 0, 773, 0, 0, 773, 773, 0, 0, 773, 773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 773, 773, 773, 773, 773, 0, 0, 0, 773, 773, 0, 0, 773, 0, 0, 0, 0, 773, 773, 773, 773, 773, 0, 0, 0, 773, 332, 773, 0, 0, 0, 332, 332, 773, 773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 332, 0, 0, 0, 773, 773, 773, 773, 0, 773, 332, 0, 0, 332, 332, 0, 773, 0, 332, 0, 0, 332, 0, 332, 0, 332, 332, 332, 332, 0, 0, 0, 0, 332, 0, 0, 0, 332, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 332, 0, 0, 332, 0, 332, 332, 0, 0, 0, 0, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 332, 332, 0, 0, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 0, 0, 332, 332, 332, 332, 332, 0, 0, 332, 332, 0, 0, 0, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 0, 0, 0, 734, 0, 0, 0, 332, 734, 734, 332, 0, 332, 0, 332, 0, 0, 332, 0, 0, 0, 0, 0, 332, 362, 0, 0, 0, 0, 0, 0, 734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734, 0, 0, 734, 734, 0, 0, 0, 734, 0, 0, 734, 0, 734, 0, 734, 734, 734, 734, 0, 0, 0, 0, 734, 0, 0, 0, 734, 0, 0, 0, 734, 0, 0, 0, 0, 0, 0, 0, 734, 0, 0, 734, 0, 734, 734, 0, 0, 0, 0, 734, 0, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 0, 0, 0, 0, 0, 734, 734, 0, 0, 0, 734, 734, 734, 734, 734, 734, 0, 734, 734, 734, 0, 734, 734, 0, 0, 734, 734, 734, 734, 325, 0, 0, 734, 734, 325, 325, 0, 734, 734, 734, 734, 734, 734, 734, 734, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734, 325, 0, 734, 0, 734, 0, 734, 0, 0, 734, 325, 0, 0, 325, 325, 734, 0, 0, 325, 0, 0, 325, 0, 325, 0, 325, 325, 325, 325, 0, 0, 0, 0, 325, 0, 0, 0, 325, 0, 0, 0, 325, 0, 0, 0, 0, 0, 0, 0, 325, 0, 0, 325, 0, 325, 325, 0, 0, 0, 0, 325, 0, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 0, 0, 0, 0, 0, 325, 325, 0, 0, 0, 325, 325, 325, 325, 325, 325, 0, 325, 325, 325, 0, 325, 325, 0, 0, 325, 325, 325, 325, 0, 0, 0, 325, 325, 0, 0, 0, 325, 325, 325, 325, 325, 325, 325, 325, 0, 362, 0, 0, 0, 0, 362, 362, 0, 0, 0, 325, 0, 0, 325, 0, 325, 0, 325, 0, 0, 325, 0, 0, 0, 0, 0, 325, 28, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 362, 362, 0, 0, 0, 362, 0, 0, 362, 0, 362, 0, 362, 362, 362, 362, 0, 0, 0, 0, 362, 0, 0, 0, 362, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 362, 0, 362, 362, 0, 0, 0, 0, 362, 0, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 362, 362, 36, 362, 362, 362, 0, 362, 362, 362, 0, 362, 362, 0, 357, 362, 362, 362, 362, 0, 357, 0, 362, 362, 0, 0, 0, 362, 362, 362, 362, 362, 362, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 450, 0, 35, 362, 0, 0, 362, 0, 362, 357, 0, 0, 0, 357, 0, 0, 0, 0, 0, 362, 0, 0, 0, 451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452, 0, 0, 0, 453, 454, 0, 0, 0, 34, 455, 0, 456, 457, 458, 459, 0, 0, 357, 0, 460, 0, 0, 357, 461, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 462, 0, 0, 463, 0, 464, 357, 0, 0, 0, 357, 357, 0, 357, 357, 357, 28, 357, 357, 357, 0, 357, 357, 0, 0, 357, 357, 357, 357, 465, 0, 0, 357, 357, 0, 0, 0, 357, 357, 357, 357, 357, 357, 357, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 28, 28, 357, 0, 357, 28, 0, 0, 0, 28, 0, 28, 0, 0, 28, 357, 28, 28, 0, 28, 0, 28, 33, 28, 0, 28, 28, 28, 28, 0, 0, 28, 28, 0, 0, 0, 0, 28, 0, 28, 28, 28, 0, 0, 28, 28, 28, 0, 28, 0, 0, 28, 0, 28, 28, 28, 28, 0, 0, 0, 28, 28, 28, 0, 0, 28, 28, 28, 0, 924, 0, 0, 0, 0, 28, 28, 0, 28, 28, 0, 28, 28, 28, 0, 0, 0, 28, 36, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 28, 36, 0, 0, 0, 36, 28, 28, 36, 0, 48, 0, 0, 0, 0, 28, 0, 0, 0, 0, 36, 36, 0, 0, 35, 36, 36, 0, 35, 0, 0, 36, 0, 36, 36, 36, 36, 0, 0, 35, 0, 36, 0, 0, 35, 36, 0, 36, 35, 0, 0, 35, 0, 0, 0, 0, 28, 36, 0, 36, 36, 0, 36, 35, 35, 0, 36, 34, 35, 35, 0, 34, 0, 7, 35, 0, 35, 35, 35, 35, 0, 0, 34, 0, 35, 0, 36, 34, 35, 0, 35, 34, 36, 36, 34, 0, 0, 0, 0, 0, 35, 0, 35, 35, 0, 35, 34, 34, 0, 35, 28, 34, 34, 0, 28, 0, 925, 34, 0, 34, 34, 34, 34, 0, 0, 28, 0, 34, 0, 35, 28, 34, 0, 34, 28, 0, 35, 28, 0, 0, 0, 0, 0, 34, 0, 0, 34, 0, 34, 28, 28, 0, 34, 0, 28, 28, 0, 0, 0, 0, 28, 0, 28, 28, 28, 28, 0, 0, 0, 0, 28, 0, 34, 33, 28, 0, 28, 33, 34, 34, 0, 0, 0, 0, 0, 0, 28, 0, 33, 28, 0, 28, 0, 33, 0, 28, 0, 33, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 33, 0, 28, 0, 33, 33, 0, 924, 28, 28, 33, 48, 33, 33, 33, 33, 0, 0, 0, 0, 33, 0, 48, 0, 33, 0, 33, 48, 0, 0, 0, 48, 0, 0, 48, 0, 33, 0, 0, 33, 0, 33, 0, 0, 0, 33, 48, 48, 0, 0, 0, 48, 48, 0, 48, 0, 0, 48, 48, 48, 48, 48, 48, 0, 0, 33, 0, 48, 0, 48, 0, 48, 33, 48, 48, 0, 0, 0, 48, 0, 0, 48, 0, 48, 0, 0, 48, 0, 48, 0, 0, 0, 48, 48, 48, 0, 0, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 48, 0, 48, 0, 0, 7, 48, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 49, 48, 0, 48, 0, 49, 0, 48, 0, 49, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 0, 48, 925, 49, 49, 0, 48, 0, 0, 49, 0, 49, 49, 49, 49, 0, 0, 48, 0, 49, 0, 0, 48, 49, 0, 49, 48, 0, 0, 48, 0, 0, 0, 0, 0, 49, 0, 0, 49, 0, 49, 48, 48, 0, 49, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 49, 0, 48, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 56, 48, 0, 48, 0, 0, 0, 48, 57, 25, 58, 26, 0, 0, 27, 59, 0, 60, 61, 28, 62, 63, 64, 29, 0, 0, 0, 48, 0, 65, 0, 66, 31, 67, 68, 69, 70, 0, 0, 33, 0, 0, 0, 71, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 0, 37, 0, 38, 75, 0, 0, 39, 0, 76, 77, 78, 79, 80, 81, 40, 41, 82, 83, 42, 84, 0, 85, 0, 0, 86, 87, 0, 332, 88, 89, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 0, 97, 98, 99, 100, 101, 0, 0, 0, 102, 332, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 332, 0, 106, 107, 108, 109, 0, 0, 0, 0, 0, 332, 0, 0, 198, 0, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 0, 332, 332, 0, 0, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 503, 0, 0, 332, 0, 332, 503, 0, 332, 0, 0, 0, 0, 0, 332, 0, 0, 0, 0, 332, 0, 0, 332, 0, 332, 332, 0, 0, 0, 332, 332, 0, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 503, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 332, 0, 0, 0, 0, 0, 0, 332, 0, 0, 332, 0, 0, 0, 0, 0, 332, 0, 0, 503, 0, 0, 0, 0, 503, 0, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 0, 503, 503, 0, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 0, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 0, 499, 560, 0, 0, 0, 503, 499, 0, 0, 0, 25, 0, 26, 0, 503, 27, 0, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 499, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 40, 41, 389, 0, 42, 0, 0, 321, 499, 0, 0, 0, 0, 499, 0, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499, 499, 389, 499, 499, 499, 499, 499, 499, 499, 0, 499, 499, 0, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 0, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 0, 507, 0, 0, 0, 354, 499, 507, 0, 499, 0, 0, 0, 0, 0, 499, 0, 0, 0, 0, 325, 0, 0, 0, 0, 0, 325, 0, 389, 389, 389, 389, 0, 389, 0, 389, 389, 0, 389, 389, 389, 389, 389, 507, 389, 389, 389, 389, 0, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 0, 0, 0, 0, 325, 0, 389, 0, 0, 389, 0, 0, 0, 507, 0, 389, 0, 0, 507, 0, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507, 0, 507, 507, 507, 507, 507, 507, 507, 0, 507, 507, 0, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 0, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 0, 332, 881, 0, 0, 0, 507, 332, 0, 507, 0, 25, 0, 26, 0, 507, 27, 0, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 332, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 42, 0, 0, 321, 332, 0, 0, 0, 0, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 0, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 432, 1082, 0, 0, 354, 332, 432, 0, 332, 0, 25, 0, 26, 0, 332, 27, 0, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 432, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 42, 0, 0, 321, 432, 0, 0, 0, 0, 432, 0, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 0, 432, 432, 432, 432, 432, 432, 432, 0, 432, 432, 0, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 0, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 0, 392, 1148, 0, 0, 354, 432, 392, 0, 432, 0, 25, 0, 26, 0, 432, 27, 0, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 392, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 42, 0, 0, 321, 392, 0, 0, 0, 0, 392, 0, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392, 0, 392, 392, 392, 392, 392, 392, 392, 0, 392, 0, 0, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 0, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 0, 538, 0, 354, 0, 354, 392, 538, 0, 392, 0, 0, 0, 0, 0, 392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 538, 354, 0, 0, 230, 0, 354, 0, 354, 354, 354, 354, 0, 0, 0, 0, 354, 0, 0, 0, 354, 332, 0, 0, 354, 0, 0, 332, 0, 0, 0, 737, 354, 0, 0, 354, 0, 354, 0, 0, 0, 538, 0, 0, 0, 0, 538, 0, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 0, 0, 354, 0, 332, 0, 0, 0, 0, 0, 0, 538, 0, 538, 0, 538, 0, 538, 538, 538, 737, 538, 538, 0, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 0, 0, 0, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 550, 538, 0, 354, 0, 0, 550, 0, 332, 0, 0, 0, 0, 0, 332, 0, 0, 538, 0, 0, 332, 332, 332, 332, 332, 332, 737, 332, 0, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 550, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 0, 0, 0, 332, 0, 332, 0, 0, 332, 0, 0, 0, 0, 0, 332, 0, 0, 550, 0, 0, 0, 0, 550, 0, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 0, 0, 0, 554, 0, 0, 0, 0, 0, 554, 0, 550, 0, 550, 0, 550, 0, 550, 550, 550, 0, 550, 550, 0, 0, 550, 550, 550, 550, 550, 550, 550, 550, 550, 0, 0, 0, 550, 550, 550, 550, 550, 550, 550, 550, 554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 550, 0, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 554, 0, 0, 0, 0, 554, 0, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 0, 554, 0, 554, 0, 554, 0, 554, 554, 554, 0, 554, 554, 0, 0, 554, 554, 554, 554, 0, 0, 0, 554, 554, 0, 0, 0, 554, 554, 554, 554, 554, 554, 554, 554, 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 557, 554, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 0, 0, 0, 555, 554, 0, 0, 0, 0, 555, 0, 557, 0, 557, 0, 557, 0, 557, 557, 557, 0, 557, 557, 0, 0, 557, 557, 557, 557, 0, 0, 0, 557, 557, 0, 0, 0, 557, 557, 557, 557, 557, 557, 557, 557, 555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556, 557, 0, 0, 0, 0, 556, 0, 0, 0, 0, 0, 0, 0, 0, 555, 0, 0, 0, 0, 555, 0, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556, 0, 555, 0, 555, 0, 555, 0, 555, 555, 555, 0, 555, 555, 0, 0, 555, 555, 555, 555, 0, 0, 0, 555, 555, 0, 560, 0, 555, 555, 555, 555, 555, 555, 555, 555, 0, 0, 0, 0, 0, 556, 0, 0, 0, 0, 556, 555, 556, 556, 556, 556, 556, 556, 556, 556, 556, 556, 556, 0, 0, 0, 0, 555, 0, 0, 0, 0, 0, 0, 556, 0, 556, 0, 556, 0, 556, 556, 556, 0, 556, 556, 0, 0, 556, 556, 556, 556, 0, 0, 0, 556, 556, 0, 561, 0, 556, 556, 556, 556, 556, 556, 556, 556, 0, 0, 0, 0, 0, 560, 0, 0, 0, 0, 560, 556, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 0, 0, 0, 0, 556, 0, 0, 0, 0, 0, 0, 560, 0, 560, 0, 560, 0, 560, 560, 560, 0, 0, 0, 0, 0, 560, 560, 560, 560, 0, 0, 0, 560, 560, 0, 562, 0, 560, 560, 560, 560, 560, 560, 560, 560, 0, 0, 0, 0, 0, 561, 0, 0, 0, 0, 561, 560, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 560, 0, 0, 0, 0, 0, 0, 561, 0, 561, 0, 561, 0, 561, 561, 561, 0, 0, 0, 0, 0, 561, 561, 561, 561, 0, 0, 0, 561, 561, 0, 563, 0, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 0, 562, 0, 0, 0, 0, 562, 561, 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, 0, 0, 0, 0, 561, 0, 0, 0, 0, 0, 0, 562, 0, 562, 0, 562, 0, 562, 562, 562, 0, 0, 0, 0, 0, 562, 562, 562, 562, 0, 0, 0, 562, 562, 0, 564, 0, 562, 562, 562, 562, 562, 562, 562, 562, 0, 0, 0, 0, 0, 563, 0, 0, 0, 0, 563, 562, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, 0, 0, 0, 0, 562, 0, 0, 0, 0, 0, 0, 563, 0, 563, 0, 563, 0, 563, 563, 563, 0, 0, 0, 0, 0, 563, 563, 563, 563, 0, 0, 0, 563, 563, 0, 565, 0, 0, 0, 563, 563, 563, 563, 563, 563, 0, 0, 0, 0, 0, 564, 0, 0, 0, 0, 564, 563, 564, 564, 564, 564, 564, 564, 564, 564, 564, 564, 564, 0, 0, 0, 0, 563, 0, 0, 0, 0, 0, 0, 564, 0, 564, 0, 564, 0, 564, 564, 564, 0, 0, 0, 0, 0, 564, 564, 564, 564, 0, 0, 0, 564, 564, 0, 566, 0, 0, 0, 564, 564, 564, 564, 564, 564, 0, 0, 0, 0, 0, 565, 0, 0, 0, 0, 565, 564, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 0, 0, 0, 0, 564, 0, 0, 0, 0, 0, 0, 565, 0, 565, 0, 565, 0, 565, 565, 565, 0, 0, 0, 0, 0, 565, 565, 565, 565, 0, 0, 0, 565, 565, 0, 567, 0, 0, 0, 565, 565, 565, 565, 565, 565, 0, 0, 0, 0, 0, 566, 0, 0, 0, 0, 566, 565, 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, 0, 0, 0, 0, 565, 0, 0, 0, 0, 0, 0, 566, 0, 566, 0, 566, 0, 566, 566, 566, 0, 0, 0, 0, 0, 566, 566, 566, 566, 0, 0, 0, 566, 566, 0, 568, 0, 0, 0, 566, 566, 566, 566, 566, 566, 0, 0, 0, 0, 0, 567, 0, 0, 0, 0, 567, 566, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 0, 0, 0, 0, 566, 0, 0, 0, 0, 0, 0, 567, 0, 567, 0, 567, 0, 567, 567, 567, 0, 0, 0, 0, 0, 567, 567, 567, 567, 0, 0, 0, 567, 567, 0, 569, 0, 0, 0, 567, 567, 567, 567, 567, 567, 0, 0, 0, 0, 0, 568, 0, 0, 0, 0, 568, 567, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 0, 0, 0, 0, 567, 0, 0, 0, 0, 0, 0, 568, 0, 568, 0, 568, 0, 568, 568, 568, 0, 0, 0, 0, 0, 0, 0, 568, 568, 0, 0, 0, 568, 568, 0, 570, 0, 0, 0, 0, 0, 568, 568, 568, 568, 0, 0, 0, 0, 0, 569, 0, 0, 0, 0, 569, 568, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 0, 0, 0, 0, 568, 0, 0, 0, 0, 0, 0, 569, 0, 569, 0, 569, 0, 569, 569, 569, 0, 0, 0, 0, 0, 0, 0, 569, 569, 0, 0, 0, 569, 569, 0, 571, 0, 0, 0, 0, 0, 569, 569, 569, 569, 0, 0, 0, 0, 0, 570, 0, 0, 0, 0, 570, 569, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 570, 0, 0, 0, 0, 569, 0, 0, 0, 0, 0, 0, 570, 0, 570, 0, 570, 0, 570, 570, 570, 0, 0, 0, 0, 0, 0, 0, 570, 570, 0, 0, 0, 570, 570, 0, 572, 0, 0, 0, 0, 0, 570, 570, 570, 570, 0, 0, 0, 0, 0, 571, 0, 0, 0, 0, 571, 570, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 0, 0, 0, 0, 570, 0, 0, 0, 0, 0, 0, 571, 0, 571, 0, 571, 0, 571, 571, 571, 0, 0, 0, 0, 0, 0, 0, 571, 571, 0, 0, 0, 571, 571, 0, 573, 0, 0, 0, 0, 0, 0, 0, 571, 571, 0, 0, 0, 0, 0, 572, 0, 0, 0, 0, 572, 571, 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, 0, 0, 0, 0, 571, 0, 0, 0, 0, 0, 0, 572, 0, 572, 0, 572, 0, 572, 572, 572, 0, 0, 0, 0, 0, 0, 0, 572, 572, 0, 0, 0, 572, 572, 0, 574, 0, 0, 0, 0, 0, 0, 0, 572, 572, 0, 0, 0, 0, 0, 573, 0, 0, 0, 0, 573, 572, 573, 573, 573, 573, 573, 573, 573, 573, 573, 573, 573, 0, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 573, 0, 573, 0, 573, 0, 573, 573, 573, 0, 0, 0, 0, 0, 0, 0, 0, 573, 0, 0, 0, 573, 573, 0, 575, 0, 0, 0, 0, 0, 0, 0, 573, 573, 0, 0, 0, 0, 0, 574, 0, 0, 0, 0, 574, 573, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 0, 0, 0, 0, 573, 0, 0, 0, 0, 0, 0, 574, 0, 574, 0, 574, 0, 574, 574, 574, 0, 0, 0, 0, 0, 0, 0, 0, 574, 0, 0, 0, 574, 574, 0, 576, 0, 0, 0, 0, 0, 0, 0, 574, 574, 0, 0, 0, 0, 0, 575, 0, 0, 0, 0, 575, 574, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 0, 0, 0, 0, 574, 0, 0, 0, 0, 0, 0, 575, 0, 575, 0, 575, 0, 575, 575, 575, 0, 0, 0, 0, 0, 0, 0, 0, 575, 0, 0, 0, 0, 575, 0, 577, 0, 0, 0, 0, 0, 0, 0, 575, 575, 0, 0, 0, 0, 0, 576, 0, 0, 0, 0, 576, 575, 576, 576, 576, 576, 576, 576, 576, 576, 576, 576, 576, 0, 0, 0, 0, 575, 0, 0, 0, 0, 0, 0, 576, 0, 576, 0, 576, 0, 576, 576, 576, 0, 0, 0, 0, 0, 0, 0, 0, 576, 0, 0, 0, 0, 576, 0, 578, 0, 0, 0, 0, 0, 0, 0, 576, 576, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0, 577, 576, 577, 577, 577, 577, 577, 577, 577, 577, 577, 577, 577, 0, 0, 0, 0, 576, 0, 0, 0, 0, 0, 0, 577, 0, 577, 0, 577, 0, 577, 577, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 580, 0, 0, 0, 0, 0, 0, 0, 577, 577, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 578, 577, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 578, 0, 578, 0, 578, 0, 578, 578, 578, 0, 0, 0, 581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 578, 578, 0, 0, 0, 0, 0, 580, 0, 0, 0, 0, 580, 578, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 580, 0, 580, 0, 580, 0, 580, 580, 580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580, 0, 0, 0, 0, 581, 0, 0, 0, 0, 581, 580, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 0, 581, 0, 581, 580, 581, 581, 581, 56, 0, 0, 0, 0, 0, 0, 0, 57, 25, 58, 26, 0, 581, 27, 59, 0, 60, 61, 28, 62, 63, 64, 29, 0, 0, 0, 0, 0, 65, 0, 66, 31, 67, 68, 69, 70, 0, 0, 33, 0, 0, 0, 71, 34, 0, 72, 73, 35, 0, 0, 0, 581, 0, 0, 0, 0, 0, 74, 0, 37, 0, 38, 75, 0, 0, 39, 0, 76, 77, 78, 79, 80, 81, 40, 41, 82, 83, 42, 84, 0, 85, 0, 0, 86, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 0, 97, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 106, 107, 108, 109, 57, 25, 58, 26, 0, 0, 27, 59, 0, 60, 61, 28, 62, 63, 64, 29, 0, 0, 0, 0, 0, 65, 0, 66, 31, 67, 68, 69, 70, 0, 0, 33, 0, 0, 0, 71, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 0, 37, 0, 38, 75, 0, 0, 39, 0, 76, 77, 78, 79, 80, 81, 40, 41, 82, 83, 42, 84, 0, 85, 0, 0, 86, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 0, 97, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550, 0, 0, 0, 106, 107, 108, 109, 57, 25, 58, 26, 0, 0, 27, 59, 0, 60, 61, 28, 62, 63, 64, 29, 0, 0, 0, 0, 0, 65, 0, 66, 31, 67, 68, 69, 70, 0, 0, 33, 0, 0, 0, 71, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 0, 37, 0, 38, 75, 0, 0, 39, 0, 76, 77, 78, 79, 80, 81, 40, 41, 82, 83, 42, 84, 0, 85, 0, 0, 86, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 0, 97, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 921, 0, 0, 0, 106, 107, 108, 109, 921, 921, 921, 921, 0, 0, 921, 921, 0, 921, 921, 921, 921, 921, 921, 921, 0, 0, 0, 0, 0, 921, 0, 921, 921, 921, 921, 921, 921, 0, 0, 921, 0, 0, 0, 921, 921, 0, 921, 921, 921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 921, 0, 921, 0, 921, 921, 0, 0, 921, 0, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 0, 921, 0, 0, 921, 921, 0, 0, 921, 921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 921, 921, 921, 921, 921, 0, 0, 0, 921, 0, 0, 0, 921, 0, 0, 0, 0, 921, 921, 921, 921, 921, 0, 0, 0, 921, 0, 921, 0, 0, 0, 0, 0, 921, 921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 782, 0, 0, 0, 921, 921, 921, 921, 782, 782, 782, 782, 0, 0, 782, 782, 0, 782, 782, 782, 782, 782, 782, 782, 0, 0, 0, 0, 0, 782, 0, 782, 782, 782, 782, 782, 782, 0, 0, 782, 0, 0, 0, 782, 782, 0, 782, 782, 782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 782, 0, 782, 0, 782, 782, 0, 0, 782, 0, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 0, 782, 0, 0, 782, 782, 0, 0, 782, 782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 782, 782, 782, 782, 782, 0, 0, 0, 782, 0, 0, 0, 782, 0, 0, 0, 0, 782, 782, 782, 782, 782, 0, 0, 0, 782, 0, 782, 0, 0, 0, 0, 0, 782, 782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 729, 0, 0, 0, 782, 782, 782, 782, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 0, 172, 0, 172, 65, 0, 172, 31, 0, 0, 0, 172, 0, 0, 33, 172, 0, 0, 0, 34, 0, 72, 73, 35, 172, 0, 0, 0, 0, 0, 0, 172, 0, 0, 0, 37, 172, 38, 75, 0, 172, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 172, 42, 172, 0, 0, 0, 172, 0, 87, 0, 0, 88, 89, 0, 172, 172, 0, 0, 172, 0, 0, 172, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 512, 730, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 945, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 729, 0, 0, 0, 106, 303, 108, 109, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 172, 29, 0, 0, 172, 0, 172, 65, 0, 172, 31, 0, 0, 0, 172, 0, 0, 33, 172, 0, 0, 0, 34, 0, 72, 73, 35, 172, 0, 0, 0, 0, 0, 0, 172, 0, 0, 0, 37, 172, 38, 75, 912, 172, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 172, 42, 172, 0, 0, 0, 172, 0, 87, 0, 0, 88, 89, 0, 172, 172, 0, 0, 172, 0, 0, 172, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 512, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 945, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 172, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 716, 981, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 699, 0, 106, 717, 108, 109, 0, 0, 57, 25, 0, 26, 0, 718, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 0, 25, 0, 26, 65, 0, 27, 31, 0, 0, 0, 28, 0, 0, 33, 29, 0, 0, 0, 34, 0, 72, 73, 35, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 37, 34, 38, 75, 0, 35, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 37, 42, 38, 0, 85, 0, 39, 0, 87, 0, 0, 88, 89, 0, 40, 41, 0, 0, 42, 0, 0, 321, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 354, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 716, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 729, 0, 106, 717, 108, 109, 0, 0, 57, 25, 0, 26, 0, 718, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 0, 25, 0, 26, 65, 0, 27, 31, 0, 0, 0, 28, 0, 0, 33, 29, 0, 0, 0, 34, 0, 72, 73, 35, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 37, 34, 38, 75, 0, 35, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 37, 42, 38, 0, 0, 0, 39, 0, 87, 0, 0, 88, 89, 0, 40, 41, 0, 0, 42, 0, 0, 514, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 512, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 584, 0, 0, 0, 106, 303, 108, 109, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 354, 29, 0, 0, 25, 0, 26, 65, 0, 27, 31, 0, 0, 0, 28, 0, 0, 33, 29, 0, 0, 0, 34, 0, 72, 73, 35, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 37, 34, 38, 75, 0, 35, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 37, 42, 38, 0, 0, 0, 39, 0, 87, 0, 0, 88, 89, 0, 40, 41, 0, 0, 42, 0, 0, 566, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 900, 0, 0, 0, 106, 107, 108, 109, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 354, 29, 0, 0, 25, 0, 26, 65, 0, 27, 31, 0, 0, 0, 28, 0, 0, 33, 29, 0, 0, 0, 34, 0, 72, 73, 35, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 37, 34, 38, 75, 0, 35, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 37, 42, 38, 0, 0, 0, 39, 0, 87, 0, 0, 88, 89, 0, 40, 41, 0, 0, 42, 0, 0, 743, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 970, 0, 0, 0, 106, 303, 108, 109, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 354, 29, 0, 0, 486, 0, 486, 65, 0, 486, 31, 0, 0, 0, 486, 0, 0, 33, 486, 0, 0, 0, 34, 0, 72, 73, 35, 486, 0, 0, 0, 0, 0, 0, 486, 0, 0, 0, 37, 486, 38, 75, 0, 486, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 486, 42, 486, 0, 0, 0, 486, 0, 87, 0, 0, 88, 89, 0, 486, 486, 0, 0, 486, 0, 0, 486, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 106, 303, 108, 109, 605, 605, 0, 605, 0, 0, 605, 605, 0, 0, 0, 605, 605, 605, 486, 605, 0, 0, 173, 0, 173, 605, 0, 173, 605, 0, 0, 0, 173, 0, 0, 605, 173, 0, 0, 0, 605, 0, 605, 605, 605, 173, 0, 0, 0, 0, 0, 0, 173, 0, 0, 0, 605, 173, 605, 605, 0, 173, 605, 0, 0, 605, 0, 605, 0, 605, 605, 605, 605, 173, 605, 173, 0, 0, 0, 173, 0, 605, 0, 0, 605, 605, 0, 173, 173, 0, 0, 173, 0, 0, 173, 0, 0, 0, 0, 605, 605, 605, 605, 605, 0, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 605, 605, 605, 605, 0, 0, 0, 605, 0, 605, 0, 0, 0, 0, 0, 605, 605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495, 0, 0, 0, 605, 605, 605, 605, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 173, 29, 0, 0, 0, 0, 0, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 450, 0, 332, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 451, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 452, 42, 332, 0, 0, 454, 0, 0, 0, 0, 455, 0, 456, 457, 458, 459, 0, 0, 0, 0, 460, 0, 0, 0, 461, 0, 90, 91, 92, 257, 0, 0, 0, 0, 0, 0, 462, 0, 96, 463, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 332, 332, 332, 737, 0, 0, 332, 332, 106, 496, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 0, 48, 0, 1305, 0, 48, 332, 48, 0, 332, 48, 0, 48, 48, 0, 48, 0, 48, 0, 48, 0, 48, 48, 48, 48, 0, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 0, 0, 48, 0, 48, 0, 48, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 48, 48, 48, 0, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 48, 48, 0, 48, 48, 0, 48, 48, 48, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 48, 0, 48, 0, 48, 0, 81, 48, 0, 48, 48, 0, 48, 0, 48, 48, 48, 0, 48, 48, 48, 48, 0, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 0, 0, 48, 0, 48, 0, 48, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 48, 48, 48, 48, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 48, 48, 0, 48, 48, 0, 48, 48, 48, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 48, 0, 48, 0, 48, 0, 82, 48, 0, 48, 48, 0, 48, 0, 48, 48, 48, 0, 48, 48, 48, 48, 0, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 0, 0, 48, 0, 48, 0, 48, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 48, 48, 48, 48, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 48, 48, 0, 48, 48, 0, 48, 48, 48, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 48, 0, 48, 48, 0, 48, 0, 48, 48, 212, 48, 0, 48, 0, 48, 0, 48, 48, 48, 48, 0, 0, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 0, 0, 48, 0, 48, 332, 48, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 48, 48, 48, 0, 0, 48, 48, 48, 48, 0, 332, 0, 0, 0, 48, 48, 0, 48, 48, 48, 48, 48, 48, 332, 0, 0, 48, 0, 332, 0, 0, 332, 0, 332, 0, 332, 332, 332, 332, 0, 0, 0, 48, 332, 0, 0, 48, 332, 0, 0, 0, 332, 213, 0, 0, 48, 0, 353, 0, 332, 48, 0, 332, 0, 332, 48, 0, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 0, 0, 48, 353, 0, 0, 332, 0, 0, 0, 0, 332, 0, 0, 48, 0, 353, 48, 332, 48, 263, 353, 332, 0, 229, 48, 353, 0, 353, 353, 353, 353, 0, 0, 0, 332, 353, 0, 0, 0, 353, 0, 0, 48, 353, 48, 48, 57, 25, 194, 26, 0, 353, 27, 255, 353, 0, 353, 28, 62, 63, 0, 29, 0, 0, 0, 0, 332, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 353, 0, 34, 0, 72, 73, 35, 0, 586, 0, 0, 0, 0, 0, 0, 587, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 588, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 907, 0, 589, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 107, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 586, 0, 0, 0, 0, 0, 0, 587, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 588, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 589, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 107, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 586, 0, 0, 0, 0, 0, 0, 587, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 588, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 107, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 85, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 864, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 512, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 506, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 302, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 303, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 106, 107, 108, 109, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 0, 0, 0, 0, 87, 0, 0, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 0, 0, 78, 78, 0, 78, 0, 0, 78, 78, 0, 0, 0, 78, 78, 78, 0, 78, 0, 106, 1019, 108, 109, 78, 0, 0, 78, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 78, 0, 78, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 78, 78, 0, 0, 78, 0, 0, 78, 0, 78, 0, 78, 78, 78, 78, 0, 78, 0, 0, 0, 0, 0, 0, 78, 0, 0, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 78, 78, 78, 78, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 78, 78, 78, 78, 0, 0, 0, 78, 0, 78, 0, 0, 0, 0, 0, 78, 78, 0, 0, 0, 0, 0, 0, 135, 135, 0, 135, 0, 0, 135, 135, 0, 0, 0, 135, 135, 135, 0, 135, 0, 78, 78, 78, 78, 135, 0, 0, 135, 0, 0, 0, 0, 0, 0, 135, 0, 0, 0, 0, 135, 0, 135, 135, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, 135, 135, 0, 0, 135, 0, 0, 135, 0, 135, 0, 135, 135, 135, 135, 0, 135, 0, 0, 0, 0, 0, 0, 135, 0, 0, 135, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 135, 135, 135, 135, 0, 0, 0, 0, 0, 0, 0, 135, 0, 0, 0, 0, 0, 135, 135, 135, 135, 0, 0, 0, 135, 0, 135, 0, 0, 0, 0, 0, 135, 135, 0, 0, 0, 0, 0, 0, 57, 25, 0, 26, 0, 0, 27, 255, 0, 0, 0, 28, 62, 63, 0, 29, 0, 135, 135, 135, 135, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 0, 28, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 28, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 28, 42, 0, 0, 0, 28, 0, 0, 0, 0, 28, 0, 28, 28, 28, 28, 0, 0, 28, 0, 28, 0, 0, 0, 28, 0, 90, 91, 92, 257, 302, 0, 0, 0, 0, 0, 28, 0, 96, 28, 0, 28, 0, 0, 98, 99, 100, 101, 0, 0, 0, 102, 0, 103, 0, 0, 0, 0, 0, 104, 105, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 28, 28, 0, 0, 0, 0, 0, 0, 638, 0, 638, 0, 638, 106, 258, 638, 109, 638, 638, 0, 638, 0, 638, 0, 638, 0, 638, 638, 638, 0, 0, 0, 638, 638, 0, 0, 0, 0, 638, 0, 638, 638, 0, 0, 0, 638, 0, 0, 0, 638, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 638, 638, 0, 638, 0, 0, 0, 638, 638, 0, 0, 0, 0, 0, 0, 638, 638, 57, 25, 638, 26, 0, 638, 27, 255, 0, 0, 638, 28, 62, 63, 0, 29, 0, 0, 0, 0, 0, 65, 0, 0, 31, 0, 0, 0, 0, 0, 0, 33, 638, 638, 0, 0, 34, 0, 72, 73, 35, 0, 0, 0, 0, 638, 0, 0, 0, 0, 0, 0, 37, 0, 38, 75, 0, 0, 39, 0, 0, 77, 0, 79, 0, 81, 40, 41, 256, 0, 42, 0, 0, 85, 0, 0, 0, 0, 0, 0, 25, 0, 26, 0, 0, 27, 638, 1199, 0, 0, 28, 0, 0, 0, 29, 90, 91, 92, 257, 0, 0, 0, 0, 31, 637, 0, 637, 96, 0, 637, 33, 637, 637, 0, 637, 34, 637, 1200, 637, 35, 637, 637, 637, 0, 0, 0, 637, 637, 0, 0, 0, 37, 637, 38, 637, 637, 0, 39, 1201, 637, 0, 0, 0, 637, 0, 40, 41, 0, 0, 42, 0, 0, 321, 106, 258, 637, 0, 637, 0, 0, 0, 637, 637, 0, 0, 0, 0, 0, 0, 637, 637, 0, 637, 637, 637, 0, 637, 637, 0, 637, 637, 637, 637, 0, 637, 0, 637, 0, 637, 637, 637, 0, 0, 0, 637, 637, 0, 0, 0, 0, 637, 0, 637, 637, 0, 0, 0, 637, 0, 0, 0, 637, 0, 0, 0, 0, 637, 0, 0, 0, 0, 0, 0, 637, 0, 637, 0, 0, 0, 637, 637, 0, 0, 354, 0, 0, 0, 637, 637, 0, 0, 637, 0, 0, 637, 0, 25, 0, 26, 637, 0, 27, 0, 0, 1260, 0, 28, 637, 675, 0, 29, 0, 676, 1261, 1262, 0, 0, 0, 1263, 31, 0, 0, 0, 0, 1264, 0, 33, 0, 25, 0, 26, 34, 0, 27, 0, 35, 1260, 0, 28, 0, 675, 0, 29, 0, 676, 1261, 1262, 37, 0, 38, 1263, 31, 0, 39, 0, 0, 1264, 0, 33, 0, 0, 40, 41, 34, 0, 42, 0, 35, 1265, 0, 0, 0, 48, 1266, 48, 637, 0, 48, 0, 37, 0, 38, 48, 0, 0, 39, 48, 0, 0, 0, 0, 0, 0, 40, 41, 48, 0, 42, 0, 0, 1265, 0, 48, 0, 48, 1266, 48, 48, 1267, 48, 0, 48, 0, 48, 48, 48, 0, 0, 48, 0, 48, 0, 0, 48, 0, 48, 0, 48, 0, 48, 0, 0, 48, 0, 48, 0, 0, 48, 48, 48, 0, 48, 0, 48, 48, 48, 0, 48, 48, 1268, 48, 0, 48, 48, 0, 48, 0, 48, 48, 0, 0, 48, 48, 0, 48, 0, 0, 0, 0, 48, 48, 48, 0, 48, 0, 0, 48, 0, 48, 153, 25, 1268, 26, 48, 0, 27, 0, 48, 0, 48, 28, 48, 0, 0, 29, 0, 48, 0, 0, 48, 0, 48, 0, 31, 0, 48, 0, 0, 48, 153, 33, 0, 0, 48, 48, 34, 0, 48, 0, 35, 48, 563, 0, 0, 0, 48, 0, 0, 564, 0, 0, 37, 0, 38, 0, 0, 0, 39, 0, 0, 565, 0, 0, 0, 0, 40, 41, 0, 0, 42, 0, 25, 566, 26, 0, 0, 27, 48, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 25, 0, 26, 0, 31, 27, 0, 0, 0, 32, 28, 33, 0, 0, 29, 0, 34, 0, 0, 0, 35, 36, 0, 31, 0, 0, 0, 0, 0, 0, 33, 48, 37, 0, 38, 34, 0, 0, 39, 35, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 42, 37, 0, 38, 172, 0, 172, 39, 0, 172, 0, 0, 203, 567, 172, 40, 41, 0, 172, 42, 0, 182, 321, 182, 0, 0, 182, 172, 0, 0, 0, 182, 0, 0, 172, 182, 0, 0, 0, 172, 0, 0, 0, 172, 182, 0, 0, 0, 292, 0, 0, 182, 0, 0, 204, 172, 182, 172, 0, 0, 182, 172, 0, 0, 0, 0, 0, 0, 0, 172, 172, 0, 182, 172, 182, 0, 172, 0, 182, 0, 0, 0, 0, 0, 43, 0, 182, 182, 0, 0, 182, 0, 0, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322, 205, 206, 207, 208, 0, 209, 210, 211, 212, 213, 214, 215, 216, 0, 0, 217, 218, 219, 220, 221, 222, 223, 224, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 35, 0, 0, 0, 0, 0, 0, 172, 0, 0, 0, 0, 35, 35, 0, 0, 0, 35, 35, 0, 33, 0, 0, 35, 182, 35, 35, 35, 35, 0, 0, 33, 0, 35, 0, 0, 33, 35, 0, 35, 33, 0, 0, 33, 0, 0, 0, 0, 0, 35, 0, 35, 35, 0, 35, 33, 33, 0, 35, 0, 33, 33, 0, 28, 0, 28, 33, 0, 33, 33, 33, 33, 0, 0, 0, 0, 33, 0, 35, 0, 33, 0, 33, 0, 35, 35, 28, 0, 0, 0, 0, 0, 33, 0, 0, 33, 0, 33, 0, 28, 0, 33, 0, 0, 28, 0, 48, 0, 0, 28, 0, 28, 28, 28, 28, 0, 0, 48, 0, 28, 0, 33, 48, 28, 0, 0, 48, 33, 33, 48, 0, 0, 0, 0, 0, 28, 0, 0, 28, 0, 28, 48, 48, 0, 0, 0, 48, 48, 0, 48, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 48, 0, 48, 0, 28, 48, 48, 0, 48, 48, 28, 28, 48, 0, 0, 0, 0, 0, 48, 0, 0, 48, 0, 48, 48, 48, 0, 48, 0, 48, 48, 48, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 48, 0, 48, 0, 48, 0, 37, 48, 0, 0, 0, 0, 0, 0, 48, 0, 0, 48, 0, 48, 48, 0, 48, 48, 0, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 0, 48, 48, 48, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 48, 0, 48, 0, 0, 0, 48, 48, 0, 48, 0, 48, 48, 0, 0, 196, 0, 0, 48, 0, 48, 48, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 0, 0, 0, 48, 0, 0, 0, 48, 48, 0, 48, 0, 0, 0, 0, 450, 296, 0, 0, 48, 0, 48, 48, 0, 48, 0, 48, 0, 0, 0, 0, 48, 0, 48, 48, 48, 48, 0, 451, 48, 0, 48, 0, 0, 0, 48, 0, 0, 48, 0, 0, 452, 0, 0, 297, 0, 454, 48, 0, 0, 48, 455, 48, 456, 457, 458, 459, 0, 0, 0, 0, 460, 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 462, 0, 0, 463, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465, }; protected static readonly short [] yyCheck = { 17, 17, 52, 17, 17, 20, 88, 89, 4, 510, 18, 190, 300, 234, 301, 290, 249, 512, 467, 85, 6, 158, 60, 486, 189, 20, 552, 109, 299, 320, 297, 338, 0, 331, 912, 353, 1125, 1126, 60, 1088, 709, 710, 764, 0, 78, 48, 59, 734, 114, 1206, 116, 577, 256, 114, 236, 116, 327, 74, 569, 268, 268, 78, 268, 277, 268, 1222, 256, 80, 17, 82, 276, 256, 256, 88, 89, 256, 17, 917, 1167, 96, 256, 256, 294, 752, 256, 754, 17, 256, 374, 256, 256, 335, 282, 62, 109, 17, 256, 66, 67, 68, 17, 70, 71, 353, 368, 368, 75, 76, 256, 256, 256, 372, 363, 82, 17, 84, 257, 86, 256, 201, 202, 968, 91, 92, 314, 256, 372, 256, 17, 256, 416, 0, 372, 372, 69, 368, 17, 363, 256, 410, 190, 158, 158, 654, 158, 158, 115, 17, 256, 363, 264, 363, 999, 88, 89, 17, 21, 363, 93, 368, 17, 358, 256, 325, 339, 429, 429, 418, 429, 344, 339, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 263, 256, 429, 234, 429, 201, 202, 53, 429, 429, 339, 418, 368, 375, 370, 381, 372, 370, 374, 375, 376, 374, 1043, 418, 419, 418, 289, 506, 158, 431, 325, 418, 422, 422, 381, 711, 158, 422, 367, 335, 509, 225, 294, 1081, 1382, 308, 158, 418, 367, 548, 369, 249, 371, 418, 306, 158, 254, 173, 370, 369, 158, 418, 374, 230, 552, 256, 374, 263, 287, 432, 418, 1409, 319, 429, 158, 418, 323, 418, 297, 888, 369, 328, 381, 1421, 287, 1423, 328, 350, 158, 577, 418, 418, 290, 289, 369, 526, 158, 295, 296, 192, 1003, 420, 256, 325, 423, 301, 256, 158, 257, 259, 256, 309, 308, 316, 369, 158, 314, 548, 316, 257, 158, 315, 320, 272, 387, 388, 976, 256, 277, 262, 256, 374, 281, 249, 332, 333, 349, 350, 569, 256, 277, 338, 357, 338, 281, 261, 1376, 296, 401, 299, 1018, 17, 415, 416, 350, 847, 655, 353, 368, 357, 413, 1064, 312, 363, 266, 298, 418, 358, 256, 368, 368, 369, 1442, 416, 323, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 995, 341, 997, 1190, 1166, 387, 388, 342, 60, 370, 418, 368, 64, 374, 431, 1471, 878, 368, 1263, 342, 256, 405, 418, 325, 441, 266, 314, 857, 330, 369, 429, 363, 418, 415, 416, 1197, 339, 654, 370, 697, 372, 368, 374, 322, 429, 376, 1233, 424, 425, 426, 427, 433, 367, 1411, 1412, 376, 368, 257, 675, 378, 379, 376, 374, 1099, 367, 447, 368, 369, 438, 439, 1106, 433, 429, 314, 444, 354, 269, 343, 429, 713, 359, 372, 368, 683, 256, 447, 418, 375, 371, 418, 373, 1315, 777, 286, 368, 1131, 1132, 486, 429, 363, 374, 481, 429, 339, 263, 967, 158, 263, 429, 1467, 349, 350, 1274, 415, 416, 417, 1278, 256, 256, 1343, 1344, 371, 1346, 305, 508, 391, 510, 418, 512, 256, 343, 367, 418, 1357, 375, 371, 1360, 373, 374, 375, 376, 1303, 522, 523, 526, 381, 482, 372, 414, 374, 1281, 1375, 536, 372, 418, 374, 315, 541, 437, 315, 777, 846, 428, 1294, 526, 391, 548, 339, 381, 552, 420, 552, 344, 256, 346, 1399, 349, 350, 391, 559, 352, 353, 1313, 485, 1190, 487, 522, 569, 414, 844, 429, 367, 471, 363, 577, 371, 577, 797, 856, 369, 339, 414, 586, 587, 429, 344, 871, 346, 510, 1190, 429, 256, 339, 352, 353, 428, 1046, 344, 722, 346, 305, 343, 305, 341, 526, 352, 353, 1233, 530, 367, 847, 369, 1190, 371, 372, 287, 374, 875, 376, 363, 1190, 1190, 1135, 369, 420, 369, 369, 373, 418, 633, 357, 369, 1233, 367, 371, 639, 429, 429, 912, 381, 305, 376, 376, 339, 316, 294, 568, 6, 344, 391, 346, 1190, 654, 349, 350, 1233, 352, 353, 17, 386, 418, 414, 420, 1233, 1233, 423, 338, 367, 567, 738, 429, 272, 414, 675, 418, 428, 272, 423, 374, 683, 579, 277, 581, 414, 583, 281, 428, 272, 713, 376, 759, 744, 272, 697, 1233, 296, 1190, 428, 1189, 1190, 296, 60, 706, 373, 773, 64, 376, 711, 357, 418, 985, 296, 716, 635, 363, 637, 296, 937, 1209, 428, 369, 339, 323, 372, 373, 376, 344, 323, 346, 88, 89, 349, 350, 429, 352, 353, 738, 386, 323, 1233, 740, 386, 1233, 323, 1235, 418, 342, 646, 339, 381, 109, 357, 756, 381, 758, 428, 374, 759, 357, 391, 391, 683, 762, 391, 764, 294, 665, 373, 772, 418, 369, 773, 421, 372, 373, 777, 367, 306, 700, 848, 386, 866, 414, 414, 821, 376, 414, 386, 792, 357, 1052, 306, 877, 797, 798, 363, 800, 428, 313, 158, 428, 369, 256, 256, 372, 373, 374, 811, 812, 1103, 325, 429, 369, 1088, 486, 370, 269, 368, 386, 374, 357, 339, 421, 374, 381, 747, 344, 829, 346, 1091, 381, 349, 350, 286, 352, 353, 373, 357, 842, 372, 844, 1135, 201, 202, 370, 847, 848, 829, 374, 386, 418, 367, 856, 373, 776, 859, 389, 390, 1294, 1079, 376, 834, 866, 836, 1016, 371, 386, 1129, 1162, 367, 792, 418, 876, 373, 878, 797, 376, 374, 376, 376, 552, 384, 1364, 368, 381, 339, 371, 379, 373, 374, 344, 813, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 367, 263, 577, 306, 392, 393, 389, 912, 429, 376, 313, 368, 919, 370, 921, 372, 923, 374, 375, 376, 369, 385, 367, 372, 412, 287, 367, 289, 369, 934, 937, 376, 420, 1144, 372, 423, 374, 368, 376, 301, 371, 1426, 373, 374, 367, 306, 308, 308, 372, 934, 374, 1120, 313, 376, 316, 1027, 371, 882, 373, 884, 967, 392, 393, 400, 325, 890, 372, 943, 374, 945, 367, 947, 429, 390, 370, 1240, 338, 1462, 374, 376, 370, 412, 382, 383, 374, 887, 1263, 369, 350, 420, 915, 353, 423, 1484, 1485, 373, 396, 397, 370, 371, 1003, 376, 374, 1010, 1244, 1012, 374, 1014, 376, 418, 339, 1251, 937, 415, 372, 344, 374, 346, 376, 371, 349, 350, 1027, 352, 353, 387, 388, 952, 370, 370, 372, 372, 374, 339, 709, 710, 354, 355, 344, 1025, 346, 394, 395, 349, 350, 1052, 352, 353, 418, 374, 339, 376, 256, 415, 416, 344, 370, 346, 372, 1066, 1067, 1064, 418, 352, 353, 398, 399, 1074, 371, 367, 373, 277, 1079, 371, 340, 373, 374, 752, 376, 754, 1120, 1088, 1080, 381, 1091, 393, 394, 395, 396, 392, 393, 261, 994, 386, 387, 388, 376, 1103, 1376, 1103, 429, 354, 355, 1110, 1144, 376, 370, 1147, 372, 412, 1117, 370, 367, 372, 284, 374, 1188, 420, 1123, 370, 423, 372, 1129, 429, 486, 373, 372, 297, 374, 1135, 372, 1135, 302, 376, 1141, 1142, 372, 307, 374, 309, 310, 311, 312, 370, 376, 372, 1186, 317, 294, 1189, 1190, 321, 381, 294, 1079, 325, 1162, 370, 1162, 372, 374, 343, 376, 333, 526, 376, 336, 1172, 338, 1209, 414, 1243, 1179, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 1188, 414, 415, 548, 1194, 1260, 1261, 552, 369, 362, 1233, 367, 1235, 418, 374, 371, 376, 373, 374, 374, 376, 376, 364, 365, 569, 381, 418, 374, 1283, 376, 94, 1286, 577, 418, 98, 99, 100, 101, 102, 103, 104, 105, 370, 371, 375, 373, 374, 375, 349, 350, 1240, 372, 373, 364, 365, 1243, 1244, 1086, 1087, 415, 256, 1247, 372, 1251, 372, 418, 391, 392, 372, 265, 376, 267, 1260, 1261, 270, 1263, 372, 397, 398, 275, 368, 1269, 374, 279, 294, 372, 372, 0, 372, 372, 372, 294, 288, 1281, 374, 1283, 367, 372, 1286, 295, 371, 374, 373, 374, 300, 376, 1294, 372, 304, 654, 381, 372, 376, 1299, 371, 60, 256, 0, 976, 374, 316, 375, 318, 294, 294, 1313, 322, 356, 1236, 381, 675, 1354, 372, 374, 330, 331, 375, 374, 334, 373, 372, 337, 294, 381, 415, 376, 374, 374, 1371, 94, 374, 374, 429, 98, 99, 100, 101, 102, 103, 104, 105, 1384, 1385, 423, 709, 710, 372, 363, 367, 374, 421, 372, 374, 373, 1364, 261, 1362, 372, 343, 294, 294, 374, 418, 1268, 370, 418, 1376, 371, 1411, 1412, 367, 256, 418, 738, 256, 374, 256, 256, 284, 372, 381, 280, 256, 1393, 372, 367, 1291, 752, 368, 754, 343, 297, 376, 372, 759, 370, 302, 371, 375, 372, 1305, 307, 418, 309, 310, 311, 312, 376, 773, 374, 374, 317, 777, 376, 376, 321, 1426, 1322, 302, 1324, 370, 1099, 381, 372, 1467, 1103, 372, 333, 1106, 423, 336, 347, 338, 351, 381, 256, 381, 256, 368, 372, 347, 370, 374, 367, 375, 370, 372, 331, 375, 370, 367, 348, 1462, 1131, 1132, 368, 362, 1135, 364, 365, 372, 418, 1468, 1469, 374, 348, 339, 376, 368, 1475, 1476, 374, 367, 375, 1484, 1485, 418, 367, 367, 356, 368, 374, 847, 848, 1162, 376, 372, 381, 372, 337, 371, 305, 368, 368, 372, 418, 368, 367, 418, 418, 384, 385, 386, 371, 371, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 371, 287, 369, 257, 376, 418, 371, 261, 371, 373, 418, 297, 371, 381, 367, 371, 302, 0, 272, 381, 369, 371, 374, 277, 372, 256, 912, 281, 373, 373, 284, 374, 256, 374, 418, 1484, 1485, 374, 262, 372, 376, 372, 296, 297, 370, 418, 376, 301, 302, 376, 372, 376, 418, 307, 372, 309, 310, 311, 312, 367, 418, 381, 372, 317, 368, 381, 372, 321, 370, 323, 294, 368, 315, 263, 298, 371, 371, 368, 372, 333, 372, 0, 336, 0, 338, 367, 372, 376, 342, 376, 976, 368, 372, 0, 368, 376, 372, 372, 384, 385, 386, 506, 370, 389, 390, 0, 418, 367, 362, 376, 368, 368, 376, 372, 370, 339, 368, 418, 418, 372, 344, 376, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 376, 376, 256, 367, 376, 363, 372, 1027, 368, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 372, 378, 379, 372, 368, 382, 383, 384, 385, 386, 372, 367, 389, 390, 368, 376, 574, 394, 395, 396, 397, 398, 399, 400, 401, 373, 368, 367, 315, 376, 376, 376, 376, 263, 51, 376, 413, 376, 376, 416, 376, 418, 52, 420, 12, 5, 423, 934, 1079, 1379, 829, 1079, 429, 1235, 1209, 1416, 1396, 675, 1432, 1362, 1099, 1367, 1269, 850, 1103, 850, 339, 1106, 1476, 1281, 1233, 344, 689, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 1123, 846, 850, 1389, 1470, 1300, 1221, 1385, 1131, 1132, 1384, 368, 1135, 370, 1469, 372, 1324, 374, 375, 376, 1186, 1269, 821, 526, 1172, 871, 792, 797, 368, 587, 716, 985, 72, 390, 334, 399, 0, 257, 400, 1162, 713, 261, 401, 263, 401, 265, 402, 267, 403, 1172, 270, 574, 272, 273, 683, 275, 413, 277, 404, 279, 548, 281, 282, 283, 284, 1188, 1155, 287, 288, 1243, 1162, 777, 429, 293, 294, 295, 296, 297, 158, 1103, 300, 301, 302, 1045, 304, 1067, 306, 307, 308, 309, 310, 311, 312, 313, 969, 315, 316, 317, 318, 999, 954, 321, 322, 323, 1055, 325, 1046, 1057, 524, 1142, 330, 331, 423, 333, 334, 827, 336, 337, 338, -1, 1243, 1244, 342, 892, 256, -1, -1, 1238, 1251, 261, 262, 826, -1, -1, -1, -1, -1, 1260, 1261, -1, 1263, -1, 362, -1, 364, 365, -1, -1, -1, -1, -1, -1, 284, -1, -1, -1, -1, 377, -1, -1, 1283, -1, 294, 1286, -1, 297, 298, -1, -1, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, 713, -1, -1, 325, -1, -1, -1, -1, 418, -1, -1, 333, -1, 0, 336, -1, 338, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 871, 362, 363, -1, -1, -1, 367, 368, -1, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, -1, 416, -1, 418, -1, 420, -1, -1, 423, 256, 257, -1, -1, -1, 429, -1, -1, 264, 265, 266, 267, 268, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, 280, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, 0, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, 368, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 417, 418, 419, 420, -1, 422, 256, 257, -1, -1, -1, -1, 429, -1, 264, 265, 266, 267, 268, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, 0, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, 368, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, 256, 386, -1, -1, -1, 261, 262, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 284, -1, -1, -1, 417, 418, 419, 420, -1, 422, 294, -1, -1, 297, 298, -1, 429, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, -1, -1, 325, -1, -1, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, -1, -1, -1, -1, 362, 363, -1, -1, -1, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, 386, -1, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 413, 261, 262, 416, -1, 418, -1, 420, -1, -1, 423, -1, -1, -1, -1, -1, 429, 0, -1, -1, -1, -1, -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, 294, -1, -1, 297, 298, -1, -1, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, -1, -1, 325, -1, -1, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, 362, 363, -1, -1, -1, 367, 368, 369, 370, 371, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, 256, -1, -1, 389, 390, 261, 262, -1, 394, 395, 396, 397, 398, 399, 400, 401, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 413, 284, -1, 416, -1, 418, -1, 420, -1, -1, 423, 294, -1, -1, 297, 298, 429, -1, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, -1, -1, 325, -1, -1, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, 362, 363, -1, -1, -1, 367, 368, 369, 370, 371, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, 256, -1, -1, -1, -1, 261, 262, -1, -1, -1, 413, -1, -1, 416, -1, 418, -1, 420, -1, -1, 423, -1, -1, -1, -1, -1, 429, 0, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, 294, -1, -1, 297, 298, -1, -1, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, -1, -1, 325, -1, -1, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, 362, 363, -1, -1, -1, 367, 368, 0, 370, 371, 372, -1, 374, 375, 376, -1, 378, 379, -1, 256, 382, 383, 384, 385, -1, 262, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, -1, -1, -1, 261, -1, 0, 413, -1, -1, 416, -1, 418, 294, -1, -1, -1, 298, -1, -1, -1, -1, -1, 429, -1, -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 297, -1, -1, -1, 301, 302, -1, -1, -1, 0, 307, -1, 309, 310, 311, 312, -1, -1, 339, -1, 317, -1, -1, 344, 321, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 333, -1, -1, 336, -1, 338, 363, -1, -1, -1, 367, 368, -1, 370, 371, 372, 0, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, 362, -1, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 413, 256, 257, 416, -1, 418, 261, -1, -1, -1, 265, -1, 267, -1, -1, 270, 429, 272, 273, -1, 275, -1, 277, 0, 279, -1, 281, 282, 283, 284, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, 297, -1, -1, 300, 301, 302, -1, 304, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 316, 317, 318, -1, -1, 321, 322, 323, -1, 0, -1, -1, -1, -1, 330, 331, -1, 333, 334, -1, 336, 337, 338, -1, -1, -1, 342, 257, -1, -1, -1, 261, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 272, -1, -1, -1, 362, 277, -1, -1, -1, 281, 368, 369, 284, -1, 0, -1, -1, -1, -1, 377, -1, -1, -1, -1, 296, 297, -1, -1, 257, 301, 302, -1, 261, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, -1, 277, 321, -1, 323, 281, -1, -1, 284, -1, -1, -1, -1, 418, 333, -1, 335, 336, -1, 338, 296, 297, -1, 342, 257, 301, 302, -1, 261, -1, 0, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, 362, 277, 321, -1, 323, 281, 368, 369, 284, -1, -1, -1, -1, -1, 333, -1, 335, 336, -1, 338, 296, 297, -1, 342, 257, 301, 302, -1, 261, -1, 0, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, 362, 277, 321, -1, 323, 281, -1, 369, 284, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 296, 297, -1, 342, -1, 301, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, 362, 257, 321, -1, 323, 261, 368, 369, -1, -1, -1, -1, -1, -1, 333, -1, 272, 336, -1, 338, -1, 277, -1, 342, -1, 281, -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 296, 297, -1, 362, -1, 301, 302, -1, 257, 368, 369, 307, 261, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, 272, -1, 321, -1, 323, 277, -1, -1, -1, 281, -1, -1, 284, -1, 333, -1, -1, 336, -1, 338, -1, -1, -1, 342, 296, 297, -1, -1, -1, 301, 302, -1, 257, -1, -1, 307, 261, 309, 310, 311, 312, -1, -1, 362, -1, 317, -1, 272, -1, 321, 369, 323, 277, -1, -1, -1, 281, -1, -1, 284, -1, 333, -1, -1, 336, -1, 338, -1, -1, -1, 342, 296, 297, -1, -1, -1, 301, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 362, -1, 317, -1, -1, 257, 321, -1, 323, 261, -1, -1, -1, -1, -1, -1, -1, -1, 333, -1, 272, 336, -1, 338, -1, 277, -1, 342, -1, 281, -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 296, 297, -1, 362, 257, 301, 302, -1, 261, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, -1, 277, 321, -1, 323, 281, -1, -1, 284, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 296, 297, -1, 342, -1, 301, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, 362, -1, 321, -1, 323, -1, -1, -1, -1, -1, -1, -1, -1, -1, 333, -1, 256, 336, -1, 338, -1, -1, -1, 342, 264, 265, 266, 267, -1, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, 362, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, 256, 344, 345, -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, 298, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, -1, -1, 262, -1, 417, 418, 419, 420, -1, -1, -1, -1, -1, 339, -1, -1, 429, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, -1, -1, -1, -1, -1, 363, 298, -1, -1, -1, 368, 369, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, -1, -1, 418, -1, 420, 262, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, 368, -1, -1, 371, -1, 373, 374, -1, -1, -1, 378, 379, -1, -1, 382, 383, 384, 385, 386, 387, 388, 389, 390, 298, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 412, 413, -1, -1, -1, -1, -1, -1, 420, -1, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, 256, -1, -1, -1, 420, 262, -1, -1, -1, 265, -1, 267, -1, 429, 270, -1, -1, -1, -1, 275, -1, -1, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 298, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, -1, -1, -1, 322, -1, -1, -1, -1, -1, -1, -1, 330, 331, 262, -1, 334, -1, -1, 337, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 367, 368, 298, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, -1, -1, -1, 418, 420, 262, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, 363, -1, -1, -1, -1, -1, 369, -1, 371, 372, 373, 374, -1, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 298, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, -1, -1, -1, 418, -1, 420, -1, -1, 423, -1, -1, -1, 339, -1, 429, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, 256, -1, -1, -1, 420, 262, -1, 423, -1, 265, -1, 267, -1, 429, 270, -1, -1, -1, -1, 275, -1, -1, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 298, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, -1, -1, -1, 322, -1, -1, -1, -1, -1, -1, -1, 330, 331, -1, -1, 334, -1, -1, 337, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, 256, -1, -1, 418, 420, 262, -1, 423, -1, 265, -1, 267, -1, 429, 270, -1, -1, -1, -1, 275, -1, -1, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 298, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, -1, -1, -1, 322, -1, -1, -1, -1, -1, -1, -1, 330, 331, -1, -1, 334, -1, -1, 337, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, 256, -1, -1, 418, 420, 262, -1, 423, -1, 265, -1, 267, -1, 429, 270, -1, -1, -1, -1, 275, -1, -1, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 298, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, -1, -1, -1, 322, -1, -1, -1, -1, -1, -1, -1, 330, 331, -1, -1, 334, -1, -1, 337, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 370, 371, 372, 373, 374, 375, 376, -1, 378, -1, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 256, -1, 261, -1, 418, 420, 262, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 297, -1, -1, -1, 298, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, 256, -1, -1, 325, -1, -1, 262, -1, -1, -1, 266, 333, -1, -1, 336, -1, 338, -1, -1, -1, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, 362, -1, 298, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, 314, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 256, 413, -1, 418, -1, -1, 262, -1, 357, -1, -1, -1, -1, -1, 363, -1, -1, 429, -1, -1, 369, 370, 371, 372, 373, 374, 375, 376, -1, 378, 379, -1, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 298, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, -1, -1, -1, 418, -1, 420, -1, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, 256, -1, -1, -1, -1, -1, 262, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, 298, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 413, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, 429, -1, -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, 298, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, 256, 429, -1, -1, -1, -1, 262, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, -1, -1, 394, 395, 396, 397, 398, 399, 400, 401, 298, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 413, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, 429, -1, -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, -1, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, -1, -1, -1, -1, -1, 298, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, 378, 379, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, 394, 395, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, 382, 383, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, 396, 397, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, 398, 399, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, 384, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, 385, -1, -1, -1, 389, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, 385, -1, -1, -1, -1, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, 385, -1, -1, -1, -1, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 390, -1, 256, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, 256, -1, -1, -1, -1, -1, -1, -1, -1, -1, 390, -1, -1, -1, -1, -1, -1, -1, -1, -1, 400, 401, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 413, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, -1, 374, 375, 376, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 390, -1, -1, -1, -1, 339, -1, -1, -1, -1, 344, 401, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 413, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 370, -1, 372, 429, 374, 375, 376, 256, -1, -1, -1, -1, -1, -1, -1, 264, 265, 266, 267, -1, 390, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, 429, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, 266, 267, -1, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, 266, 267, -1, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, 266, 267, -1, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, 266, 267, -1, -1, 270, 271, -1, 273, 274, 275, 276, 277, 278, 279, -1, -1, -1, -1, -1, 285, -1, 287, 288, 289, 290, 291, 292, -1, -1, 295, -1, -1, -1, 299, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, -1, 316, -1, 318, 319, -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, -1, 337, -1, -1, 340, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, 376, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, 368, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, 372, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, 320, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, 370, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 418, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, 368, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, 417, 418, 419, 420, -1, -1, 264, 265, -1, 267, -1, 428, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, 337, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 418, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, 417, 418, 419, 420, -1, -1, 264, 265, -1, 267, -1, 428, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, 265, -1, 267, 285, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, 302, 303, 304, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, 316, 300, 318, 319, -1, 304, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 316, 334, 318, -1, -1, -1, 322, -1, 341, -1, -1, 344, 345, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, -1, -1, -1, 417, 418, 419, 420, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, 418, 279, -1, -1, -1, -1, -1, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 261, -1, 262, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, 284, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 297, 334, 298, -1, -1, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, 359, 360, 361, 362, -1, -1, -1, -1, -1, -1, 333, -1, 371, 336, -1, 338, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 362, -1, -1, -1, -1, -1, -1, -1, -1, -1, 371, 372, 373, 374, 375, -1, -1, 378, 379, 417, 418, 382, 383, 384, 385, 386, 387, 388, 389, 390, -1, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, -1, 261, -1, 418, -1, 265, 420, 267, -1, 423, 270, -1, 272, 273, -1, 275, -1, 277, -1, 279, -1, 281, 282, 283, 284, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, 297, -1, -1, 300, -1, 302, -1, 304, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 316, 317, 318, -1, -1, 321, 322, 323, -1, -1, -1, -1, -1, -1, 330, 331, -1, 333, 334, -1, 336, 337, 338, -1, -1, -1, 342, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 261, -1, 362, -1, 265, -1, 267, -1, 368, 270, -1, 272, 273, -1, 275, -1, 277, 377, 279, -1, 281, 282, 283, 284, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, 297, -1, -1, 300, -1, 302, -1, 304, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 316, 317, 318, 418, -1, 321, 322, 323, -1, -1, -1, -1, -1, -1, 330, 331, -1, 333, 334, -1, 336, 337, 338, -1, -1, -1, 342, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 261, -1, 362, -1, 265, -1, 267, -1, 368, 270, -1, 272, 273, -1, 275, -1, 277, 377, 279, -1, 281, 282, 283, 284, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, 297, -1, -1, 300, -1, 302, -1, 304, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 316, 317, 318, 418, -1, 321, 322, 323, -1, -1, -1, -1, -1, -1, 330, 331, -1, 333, 334, -1, 336, 337, 338, -1, -1, -1, 342, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 261, -1, -1, -1, 265, -1, 267, 362, -1, 270, -1, 272, 273, 368, 275, -1, 277, -1, 279, -1, 281, 282, 283, 284, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, 297, -1, -1, 300, -1, 302, 261, 304, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 316, 317, 318, -1, -1, 321, 322, 323, 418, -1, 284, -1, -1, -1, 330, 331, -1, 333, 334, 261, 336, 337, 338, 297, -1, -1, 342, -1, 302, -1, -1, 305, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, 284, 317, -1, -1, 362, 321, -1, -1, -1, 325, 368, -1, -1, 297, -1, 261, -1, 333, 302, -1, 336, -1, 338, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, 284, -1, -1, 357, -1, -1, -1, -1, 362, -1, -1, 333, -1, 297, 336, 369, 338, 371, 302, 373, -1, 305, 418, 307, -1, 309, 310, 311, 312, -1, -1, -1, 386, 317, -1, -1, -1, 321, -1, -1, 362, 325, 364, 365, 264, 265, 368, 267, -1, 333, 270, 271, 336, -1, 338, 275, 276, 277, -1, 279, -1, -1, -1, -1, 418, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, 362, -1, 300, -1, 302, 303, 304, -1, 306, -1, -1, -1, -1, -1, -1, 313, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, 418, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, 372, -1, 374, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, 306, -1, -1, -1, -1, -1, -1, 313, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, 374, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, 306, -1, -1, -1, -1, -1, -1, 313, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, 337, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, 368, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, 367, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, -1, -1, -1, -1, 341, -1, -1, 344, 345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, -1, -1, 264, 265, -1, 267, -1, -1, 270, 271, -1, -1, -1, 275, 276, 277, -1, 279, -1, 417, 418, 419, 420, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, -1, 261, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, 284, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, 297, 334, -1, -1, -1, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 315, -1, 317, -1, -1, -1, 321, -1, 359, 360, 361, 362, 363, -1, -1, -1, -1, -1, 333, -1, 371, 336, -1, 338, -1, -1, 377, 378, 379, 380, -1, -1, -1, 384, -1, 386, -1, -1, -1, -1, -1, 392, 393, -1, -1, -1, -1, 362, -1, -1, -1, -1, -1, 368, 369, -1, -1, -1, -1, -1, -1, 263, -1, 265, -1, 267, 417, 418, 270, 420, 272, 273, -1, 275, -1, 277, -1, 279, -1, 281, 282, 283, -1, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, -1, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 315, 316, -1, 318, -1, -1, -1, 322, 323, -1, -1, -1, -1, -1, -1, 330, 331, 264, 265, 334, 267, -1, 337, 270, 271, -1, -1, 342, 275, 276, 277, -1, 279, -1, -1, -1, -1, -1, 285, -1, -1, 288, -1, -1, -1, -1, -1, -1, 295, 364, 365, -1, -1, 300, -1, 302, 303, 304, -1, -1, -1, -1, 377, -1, -1, -1, -1, -1, -1, 316, -1, 318, 319, -1, -1, 322, -1, -1, 325, -1, 327, -1, 329, 330, 331, 332, -1, 334, -1, -1, 337, -1, -1, -1, -1, -1, -1, 265, -1, 267, -1, -1, 270, 418, 272, -1, -1, 275, -1, -1, -1, 279, 359, 360, 361, 362, -1, -1, -1, -1, 288, 265, -1, 267, 371, -1, 270, 295, 272, 273, -1, 275, 300, 277, 302, 279, 304, 281, 282, 283, -1, -1, -1, 287, 288, -1, -1, -1, 316, 293, 318, 295, 296, -1, 322, 323, 300, -1, -1, -1, 304, -1, 330, 331, -1, -1, 334, -1, -1, 337, 417, 418, 316, -1, 318, -1, -1, -1, 322, 323, -1, -1, -1, -1, -1, -1, 330, 331, -1, 265, 334, 267, -1, 337, 270, -1, 272, 273, 342, 275, -1, 277, -1, 279, -1, 281, 282, 283, -1, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, 296, -1, -1, -1, 300, -1, -1, -1, 304, -1, -1, -1, -1, 377, -1, -1, -1, -1, -1, -1, 316, -1, 318, -1, -1, -1, 322, 323, -1, -1, 418, -1, -1, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, 265, -1, 267, 342, -1, 270, -1, -1, 273, -1, 275, 418, 277, -1, 279, -1, 281, 282, 283, -1, -1, -1, 287, 288, -1, -1, -1, -1, 293, -1, 295, -1, 265, -1, 267, 300, -1, 270, -1, 304, 273, -1, 275, -1, 277, -1, 279, -1, 281, 282, 283, 316, -1, 318, 287, 288, -1, 322, -1, -1, 293, -1, 295, -1, -1, 330, 331, 300, -1, 334, -1, 304, 337, -1, -1, -1, 265, 342, 267, 418, -1, 270, -1, 316, -1, 318, 275, -1, -1, 322, 279, -1, -1, -1, -1, -1, -1, 330, 331, 288, -1, 334, -1, -1, 337, -1, 295, -1, 265, 342, 267, 300, 377, 270, -1, 304, -1, 306, 275, 308, -1, -1, 279, -1, 313, -1, -1, 316, -1, 318, -1, 288, -1, 322, -1, -1, 325, -1, 295, -1, -1, 330, 331, 300, -1, 334, -1, 304, 337, 306, -1, 308, 265, 418, 267, -1, 313, 270, -1, 316, -1, 318, 275, -1, -1, 322, 279, -1, 325, -1, -1, -1, -1, 330, 331, 288, -1, 334, -1, -1, 337, -1, 295, 372, 265, 418, 267, 300, -1, 270, -1, 304, -1, 306, 275, 308, -1, -1, 279, -1, 313, -1, -1, 316, -1, 318, -1, 288, -1, 322, -1, -1, 325, 370, 295, -1, -1, 330, 331, 300, -1, 334, -1, 304, 337, 306, -1, -1, -1, 418, -1, -1, 313, -1, -1, 316, -1, 318, -1, -1, -1, 322, -1, -1, 325, -1, -1, -1, -1, 330, 331, -1, -1, 334, -1, 265, 337, 267, -1, -1, 270, 418, -1, -1, -1, 275, -1, -1, -1, 279, -1, -1, -1, 283, 265, -1, 267, -1, 288, 270, -1, -1, -1, 293, 275, 295, -1, -1, 279, -1, 300, -1, -1, -1, 304, 305, -1, 288, -1, -1, -1, -1, -1, -1, 295, 418, 316, -1, 318, 300, -1, -1, 322, 304, -1, -1, -1, -1, -1, -1, 330, 331, -1, -1, 334, 316, -1, 318, 265, -1, 267, 322, -1, 270, -1, -1, 285, 418, 275, 330, 331, -1, 279, 334, -1, 265, 337, 267, -1, -1, 270, 288, -1, -1, -1, 275, -1, -1, 295, 279, -1, -1, -1, 300, -1, -1, -1, 304, 288, -1, -1, -1, 363, -1, -1, 295, -1, -1, 327, 316, 300, 318, -1, -1, 304, 322, -1, -1, -1, -1, -1, -1, -1, 330, 331, -1, 316, 334, 318, -1, 337, -1, 322, -1, -1, -1, -1, -1, 418, -1, 330, 331, -1, -1, 334, -1, -1, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, 418, 377, 378, 379, 380, -1, 382, 383, 384, 385, 386, 387, 388, 389, -1, -1, 392, 393, 394, 395, 396, 397, 398, 399, 261, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 272, -1, -1, -1, -1, 277, -1, -1, -1, 281, -1, -1, 284, -1, -1, -1, -1, -1, -1, 418, -1, -1, -1, -1, 296, 297, -1, -1, -1, 301, 302, -1, 261, -1, -1, 307, 418, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, -1, 277, 321, -1, 323, 281, -1, -1, 284, -1, -1, -1, -1, -1, 333, -1, 335, 336, -1, 338, 296, 297, -1, 342, -1, 301, 302, -1, 261, -1, 263, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, 362, -1, 321, -1, 323, -1, 368, 369, 284, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, -1, 297, -1, 342, -1, -1, 302, -1, 261, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, 362, 277, 321, -1, -1, 281, 368, 369, 284, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 296, 297, -1, -1, -1, 301, 302, -1, 261, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 272, -1, 317, -1, 362, 277, 321, -1, 323, 281, 368, 369, 284, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 296, 297, -1, 342, -1, 301, 302, 261, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, 362, -1, 321, -1, 323, -1, 368, 284, -1, -1, -1, -1, -1, -1, 333, -1, -1, 336, -1, 338, 297, -1, 261, 342, -1, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, 362, 321, 284, -1, -1, -1, 368, -1, -1, -1, -1, -1, -1, 333, -1, 297, 336, 261, 338, 263, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, 315, -1, 317, -1, -1, -1, 321, 284, -1, 362, -1, 364, 365, -1, -1, 368, -1, -1, 333, -1, 297, 336, 261, 338, 263, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, 284, -1, 362, -1, -1, -1, -1, 261, 368, -1, -1, 333, -1, 297, 336, -1, 338, -1, 302, -1, -1, -1, -1, 307, -1, 309, 310, 311, 312, -1, 284, 315, -1, 317, -1, -1, -1, 321, -1, -1, 362, -1, -1, 297, -1, -1, 368, -1, 302, 333, -1, -1, 336, 307, 338, 309, 310, 311, 312, -1, -1, -1, -1, 317, -1, -1, -1, 321, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 362, 333, -1, -1, 336, -1, 338, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 362, }; #line 6374 "cs-parser.jay" // // A class used to hold info about an operator declarator // class OperatorDeclaration { public readonly Operator.OpType optype; public readonly FullNamedExpression ret_type; public readonly Location location; public OperatorDeclaration (Operator.OpType op, FullNamedExpression ret_type, Location location) { optype = op; this.ret_type = ret_type; this.location = location; } } void Error_ExpectingTypeName (Expression expr) { if (expr is Invocation){ report.Error (1002, expr.Location, "Expecting `;'"); } else { Expression.Error_InvalidExpressionStatement (report, expr.Location); } } void Error_ParameterModifierNotValid (string modifier, Location loc) { report.Error (631, loc, "The parameter modifier `{0}' is not valid in this context", modifier); } void Error_DuplicateParameterModifier (Location loc, Parameter.Modifier mod) { report.Error (1107, loc, "Duplicate parameter modifier `{0}'", Parameter.GetModifierSignature (mod)); } void Error_TypeExpected (Location loc) { report.Error (1031, loc, "Type expected"); } void Error_UnsafeCodeNotAllowed (Location loc) { report.Error (227, loc, "Unsafe code requires the `unsafe' command line option to be specified"); } void Warning_EmptyStatement (Location loc) { report.Warning (642, 3, loc, "Possible mistaken empty statement"); } void Error_NamedArgumentExpected (NamedArgument a) { report.Error (1738, a.Location, "Named arguments must appear after the positional arguments"); } void Error_MissingInitializer (Location loc) { report.Error (210, loc, "You must provide an initializer in a fixed or using statement declaration"); } void push_current_class (TypeContainer tc, object partial_token) { if (module.Evaluator != null && current_container is ModuleContainer){ tc.Definition.Modifiers = tc.ModFlags = (tc.ModFlags & ~Modifiers.AccessibilityMask) | Modifiers.PUBLIC; if (undo == null) undo = new Undo (); undo.AddTypeContainer (current_container, tc); } if (partial_token != null) current_container = current_container.AddPartial (tc); else current_container = current_container.AddTypeContainer (tc); ++lexer.parsing_declaration; current_class = tc; ubag.PushTypeDeclaration (tc); } DeclSpace pop_current_class () { DeclSpace retval = current_class; current_class = current_class.Parent; current_container = current_class.PartialContainer; ubag.PopTypeDeclaration (); return retval; } // // Given the @class_name name, it creates a fully qualified name // based on the containing declaration space // MemberName MakeName (MemberName class_name) { Namespace ns = current_namespace.NS; if (current_container == module) { if (ns.Name.Length != 0) return new MemberName (ns.MemberName, class_name); else return class_name; } else { return new MemberName (current_container.MemberName, class_name); } } [System.Diagnostics.Conditional ("FULL_AST")] void StoreModifierLocation (object token, Location loc) { if (lbag == null) return; if (mod_locations == null) mod_locations = new List> (); mod_locations.Add (Tuple.Create ((Modifiers) token, loc)); } List> GetModifierLocations () { var result = mod_locations; mod_locations = null; return result; } string CheckAttributeTarget (string a, Location l) { switch (a) { case "assembly" : case "module" : case "field" : case "method" : case "param" : case "property" : case "type" : return a; } report.Warning (658, 1, l, "`{0}' is invalid attribute target. All attributes in this attribute section will be ignored", a); return string.Empty; } static bool IsUnaryOperator (Operator.OpType op) { switch (op) { case Operator.OpType.LogicalNot: case Operator.OpType.OnesComplement: case Operator.OpType.Increment: case Operator.OpType.Decrement: case Operator.OpType.True: case Operator.OpType.False: case Operator.OpType.UnaryPlus: case Operator.OpType.UnaryNegation: return true; } return false; } void syntax_error (Location l, string msg) { report.Error (1003, l, "Syntax error, " + msg); } Tokenizer lexer; public Tokenizer Lexer { get { return lexer; } } static CSharpParser () { oob_stack = new Stack (); } public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file) : this (reader, file, file.NamespaceContainer.Module.Compiler.Report) { } public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file, Report report) { this.file = file; current_namespace = file.NamespaceContainer; this.module = current_namespace.Module; this.compiler = module.Compiler; this.settings = compiler.Settings; this.report = report; lang_version = settings.Version; doc_support = settings.DocumentationFile != null; current_class = current_namespace.SlaveDeclSpace; current_container = current_class.PartialContainer; // == RootContest.ToplevelTypes oob_stack.Clear (); lexer = new Tokenizer (reader, file, compiler); use_global_stacks = true; } public void parse () { eof_token = Token.EOF; Tokenizer.LocatedToken.Initialize (); try { if (yacc_verbose_flag > 1) yyparse (lexer, new yydebug.yyDebugSimple ()); else yyparse (lexer); Tokenizer tokenizer = lexer as Tokenizer; tokenizer.cleanup (); } catch (Exception e){ if (e is yyParser.yyUnexpectedEof) { Error_SyntaxError (yyToken); UnexpectedEOF = true; return; } if (e is yyParser.yyException) { report.Error (-25, lexer.Location, "Parsing error"); } else { // Used by compiler-tester to test internal errors if (yacc_verbose_flag > 0) throw; report.Error (589, lexer.Location, "Internal compiler error during parsing"); } } } void CheckToken (int error, int yyToken, string msg, Location loc) { if (yyToken >= Token.FIRST_KEYWORD && yyToken <= Token.LAST_KEYWORD) report.Error (error, loc, "{0}: `{1}' is a keyword", msg, GetTokenName (yyToken)); else report.Error (error, loc, msg); } string ConsumeStoredComment () { string s = tmpComment; tmpComment = null; Lexer.doc_state = XmlCommentState.Allowed; return s; } void FeatureIsNotAvailable (Location loc, string feature) { report.FeatureIsNotAvailable (compiler, loc, feature); } Location GetLocation (object obj) { var lt = obj as Tokenizer.LocatedToken; if (lt != null) return lt.Location; var mn = obj as MemberName; if (mn != null) return mn.Location; var expr = obj as Expression; if (expr != null) return expr.Location; return lexer.Location; } public LocationsBag LocationsBag { get { return lbag; } set { lbag = value; } } public UsingsBag UsingsBag { get { return ubag; } set { ubag = value; } } void start_block (Location loc) { if (current_block == null) { current_block = new ToplevelBlock (compiler, current_local_parameters, loc); parsing_anonymous_method = false; } else if (parsing_anonymous_method) { current_block = new ParametersBlock (current_block, current_local_parameters, loc); parsing_anonymous_method = false; } else { current_block = new ExplicitBlock (current_block, loc, Location.Null); } } Block end_block (Location loc) { Block retval = current_block.Explicit; retval.SetEndLocation (loc); current_block = retval.Parent; return retval; } void start_anonymous (bool isLambda, ParametersCompiled parameters, bool isAsync, Location loc) { oob_stack.Push (current_anonymous_method); oob_stack.Push (current_local_parameters); oob_stack.Push (current_variable); oob_stack.Push (async_block); current_local_parameters = parameters; if (isLambda) { if (lang_version <= LanguageVersion.ISO_2) FeatureIsNotAvailable (loc, "lambda expressions"); current_anonymous_method = new LambdaExpression (isAsync, loc); } else { if (lang_version == LanguageVersion.ISO_1) FeatureIsNotAvailable (loc, "anonymous methods"); current_anonymous_method = new AnonymousMethodExpression (isAsync, loc); } async_block = isAsync; // Force the next block to be created as a ToplevelBlock parsing_anonymous_method = true; } /* * Completes the anonymous method processing, if lambda_expr is null, this * means that we have a Statement instead of an Expression embedded */ AnonymousMethodExpression end_anonymous (ParametersBlock anon_block) { AnonymousMethodExpression retval; if (async_block) anon_block.IsAsync = true; current_anonymous_method.Block = anon_block; retval = current_anonymous_method; async_block = (bool) oob_stack.Pop (); current_variable = (BlockVariableDeclaration) oob_stack.Pop (); current_local_parameters = (ParametersCompiled) oob_stack.Pop (); current_anonymous_method = (AnonymousMethodExpression) oob_stack.Pop (); return retval; } void Error_SyntaxError (int token) { Error_SyntaxError (0, token, "Unexpected symbol"); } void Error_SyntaxError (int error_code, int token, string msg) { Lexer.CompleteOnEOF = false; // An error message has been reported by tokenizer if (token == Token.ERROR) return; string symbol = GetSymbolName (token); string expecting = GetExpecting (); var loc = lexer.Location - symbol.Length; if (error_code == 0) { if (expecting == "`identifier'") { if (token > Token.FIRST_KEYWORD && token < Token.LAST_KEYWORD) { report.Error (1041, loc, "Identifier expected, `{0}' is a keyword", symbol); return; } error_code = 1001; expecting = "identifier"; } else if (expecting == "`)'") { error_code = 1026; } else { error_code = 1525; } } if (string.IsNullOrEmpty (expecting)) report.Error (error_code, loc, "{1} `{0}'", symbol, msg); else report.Error (error_code, loc, "{2} `{0}', expecting {1}", symbol, expecting, msg); } string GetExpecting () { int [] tokens = yyExpectingTokens (yyExpectingState); var names = new List (tokens.Length); bool has_type = false; bool has_identifier = false; for (int i = 0; i < tokens.Length; i++){ int token = tokens [i]; has_identifier |= token == Token.IDENTIFIER; string name = GetTokenName (token); if (name == "") continue; has_type |= name == "type"; if (names.Contains (name)) continue; names.Add (name); } // // Too many tokens to enumerate // if (names.Count > 8) return null; if (has_type && has_identifier) names.Remove ("identifier"); if (names.Count == 1) return "`" + GetTokenName (tokens [0]) + "'"; StringBuilder sb = new StringBuilder (); names.Sort (); int count = names.Count; for (int i = 0; i < count; i++){ bool last = i + 1 == count; if (last) sb.Append ("or "); sb.Append ('`'); sb.Append (names [i]); sb.Append (last ? "'" : count < 3 ? "' " : "', "); } return sb.ToString (); } string GetSymbolName (int token) { switch (token){ case Token.LITERAL: return ((Constant)lexer.Value).GetValue ().ToString (); case Token.IDENTIFIER: return ((Tokenizer.LocatedToken)lexer.Value).Value; case Token.BOOL: return "bool"; case Token.BYTE: return "byte"; case Token.CHAR: return "char"; case Token.VOID: return "void"; case Token.DECIMAL: return "decimal"; case Token.DOUBLE: return "double"; case Token.FLOAT: return "float"; case Token.INT: return "int"; case Token.LONG: return "long"; case Token.SBYTE: return "sbyte"; case Token.SHORT: return "short"; case Token.STRING: return "string"; case Token.UINT: return "uint"; case Token.ULONG: return "ulong"; case Token.USHORT: return "ushort"; case Token.OBJECT: return "object"; case Token.PLUS: return "+"; case Token.UMINUS: case Token.MINUS: return "-"; case Token.BANG: return "!"; case Token.BITWISE_AND: return "&"; case Token.BITWISE_OR: return "|"; case Token.STAR: return "*"; case Token.PERCENT: return "%"; case Token.DIV: return "/"; case Token.CARRET: return "^"; case Token.OP_INC: return "++"; case Token.OP_DEC: return "--"; case Token.OP_SHIFT_LEFT: return "<<"; case Token.OP_SHIFT_RIGHT: return ">>"; case Token.OP_LT: return "<"; case Token.OP_GT: return ">"; case Token.OP_LE: return "<="; case Token.OP_GE: return ">="; case Token.OP_EQ: return "=="; case Token.OP_NE: return "!="; case Token.OP_AND: return "&&"; case Token.OP_OR: return "||"; case Token.OP_PTR: return "->"; case Token.OP_COALESCING: return "??"; case Token.OP_MULT_ASSIGN: return "*="; case Token.OP_DIV_ASSIGN: return "/="; case Token.OP_MOD_ASSIGN: return "%="; case Token.OP_ADD_ASSIGN: return "+="; case Token.OP_SUB_ASSIGN: return "-="; case Token.OP_SHIFT_LEFT_ASSIGN: return "<<="; case Token.OP_SHIFT_RIGHT_ASSIGN: return ">>="; case Token.OP_AND_ASSIGN: return "&="; case Token.OP_XOR_ASSIGN: return "^="; case Token.OP_OR_ASSIGN: return "|="; } return GetTokenName (token); } static string GetTokenName (int token) { switch (token){ case Token.ABSTRACT: return "abstract"; case Token.AS: return "as"; case Token.ADD: return "add"; case Token.ASYNC: return "async"; case Token.BASE: return "base"; case Token.BREAK: return "break"; case Token.CASE: return "case"; case Token.CATCH: return "catch"; case Token.CHECKED: return "checked"; case Token.CLASS: return "class"; case Token.CONST: return "const"; case Token.CONTINUE: return "continue"; case Token.DEFAULT: return "default"; case Token.DELEGATE: return "delegate"; case Token.DO: return "do"; case Token.ELSE: return "else"; case Token.ENUM: return "enum"; case Token.EVENT: return "event"; case Token.EXPLICIT: return "explicit"; case Token.EXTERN: case Token.EXTERN_ALIAS: return "extern"; case Token.FALSE: return "false"; case Token.FINALLY: return "finally"; case Token.FIXED: return "fixed"; case Token.FOR: return "for"; case Token.FOREACH: return "foreach"; case Token.GOTO: return "goto"; case Token.IF: return "if"; case Token.IMPLICIT: return "implicit"; case Token.IN: return "in"; case Token.INTERFACE: return "interface"; case Token.INTERNAL: return "internal"; case Token.IS: return "is"; case Token.LOCK: return "lock"; case Token.NAMESPACE: return "namespace"; case Token.NEW: return "new"; case Token.NULL: return "null"; case Token.OPERATOR: return "operator"; case Token.OUT: return "out"; case Token.OVERRIDE: return "override"; case Token.PARAMS: return "params"; case Token.PRIVATE: return "private"; case Token.PROTECTED: return "protected"; case Token.PUBLIC: return "public"; case Token.READONLY: return "readonly"; case Token.REF: return "ref"; case Token.RETURN: return "return"; case Token.REMOVE: return "remove"; case Token.SEALED: return "sealed"; case Token.SIZEOF: return "sizeof"; case Token.STACKALLOC: return "stackalloc"; case Token.STATIC: return "static"; case Token.STRUCT: return "struct"; case Token.SWITCH: return "switch"; case Token.THIS: return "this"; case Token.THROW: return "throw"; case Token.TRUE: return "true"; case Token.TRY: return "try"; case Token.TYPEOF: return "typeof"; case Token.UNCHECKED: return "unchecked"; case Token.UNSAFE: return "unsafe"; case Token.USING: return "using"; case Token.VIRTUAL: return "virtual"; case Token.VOLATILE: return "volatile"; case Token.WHERE: return "where"; case Token.WHILE: return "while"; case Token.ARGLIST: return "__arglist"; case Token.REFVALUE: return "__refvalue"; case Token.REFTYPE: return "__reftype"; case Token.MAKEREF: return "__makeref"; case Token.PARTIAL: return "partial"; case Token.ARROW: return "=>"; case Token.FROM: case Token.FROM_FIRST: return "from"; case Token.JOIN: return "join"; case Token.ON: return "on"; case Token.EQUALS: return "equals"; case Token.SELECT: return "select"; case Token.GROUP: return "group"; case Token.BY: return "by"; case Token.LET: return "let"; case Token.ORDERBY: return "orderby"; case Token.ASCENDING: return "ascending"; case Token.DESCENDING: return "descending"; case Token.INTO: return "into"; case Token.GET: return "get"; case Token.SET: return "set"; case Token.OPEN_BRACE: return "{"; case Token.CLOSE_BRACE: return "}"; case Token.OPEN_BRACKET: case Token.OPEN_BRACKET_EXPR: return "["; case Token.CLOSE_BRACKET: return "]"; case Token.OPEN_PARENS_CAST: case Token.OPEN_PARENS_LAMBDA: case Token.OPEN_PARENS: return "("; case Token.CLOSE_PARENS: return ")"; case Token.DOT: return "."; case Token.COMMA: return ","; case Token.DEFAULT_COLON: return "default:"; case Token.COLON: return ":"; case Token.SEMICOLON: return ";"; case Token.TILDE: return "~"; case Token.PLUS: case Token.UMINUS: case Token.MINUS: case Token.BANG: case Token.OP_LT: case Token.OP_GT: case Token.BITWISE_AND: case Token.BITWISE_OR: case Token.STAR: case Token.PERCENT: case Token.DIV: case Token.CARRET: case Token.OP_INC: case Token.OP_DEC: case Token.OP_SHIFT_LEFT: case Token.OP_SHIFT_RIGHT: case Token.OP_LE: case Token.OP_GE: case Token.OP_EQ: case Token.OP_NE: case Token.OP_AND: case Token.OP_OR: case Token.OP_PTR: case Token.OP_COALESCING: case Token.OP_MULT_ASSIGN: case Token.OP_DIV_ASSIGN: case Token.OP_MOD_ASSIGN: case Token.OP_ADD_ASSIGN: case Token.OP_SUB_ASSIGN: case Token.OP_SHIFT_LEFT_ASSIGN: case Token.OP_SHIFT_RIGHT_ASSIGN: case Token.OP_AND_ASSIGN: case Token.OP_XOR_ASSIGN: case Token.OP_OR_ASSIGN: return ""; case Token.BOOL: case Token.BYTE: case Token.CHAR: case Token.VOID: case Token.DECIMAL: case Token.DOUBLE: case Token.FLOAT: case Token.INT: case Token.LONG: case Token.SBYTE: case Token.SHORT: case Token.STRING: case Token.UINT: case Token.ULONG: case Token.USHORT: case Token.OBJECT: return "type"; case Token.ASSIGN: return "="; case Token.OP_GENERICS_LT: case Token.GENERIC_DIMENSION: return "<"; case Token.OP_GENERICS_GT: return ">"; case Token.INTERR: case Token.INTERR_NULLABLE: return "?"; case Token.DOUBLE_COLON: return "::"; case Token.LITERAL: return "value"; case Token.IDENTIFIER: case Token.AWAIT: return "identifier"; case Token.EOF: return "end-of-file"; // All of these are internal. case Token.NONE: case Token.ERROR: case Token.FIRST_KEYWORD: case Token.EVAL_COMPILATION_UNIT_PARSER: case Token.EVAL_USING_DECLARATIONS_UNIT_PARSER: case Token.EVAL_STATEMENT_PARSER: case Token.LAST_KEYWORD: case Token.GENERATE_COMPLETION: case Token.COMPLETE_COMPLETION: return ""; // A bit more robust. default: return yyNames [token]; } } /* end end end */ } #line default namespace yydebug { using System; internal interface yyDebug { void push (int state, Object value); void lex (int state, int token, string name, Object value); void shift (int from, int to, int errorFlag); void pop (int state); void discard (int state, int token, string name, Object value); void reduce (int from, int to, int rule, string text, int len); void shift (int from, int to); void accept (Object value); void error (string message); void reject (); } class yyDebugSimple : yyDebug { void println (string s){ Console.Error.WriteLine (s); } public void push (int state, Object value) { println ("push\tstate "+state+"\tvalue "+value); } public void lex (int state, int token, string name, Object value) { println("lex\tstate "+state+"\treading "+name+"\tvalue "+value); } public void shift (int from, int to, int errorFlag) { switch (errorFlag) { default: // normally println("shift\tfrom state "+from+" to "+to); break; case 0: case 1: case 2: // in error recovery println("shift\tfrom state "+from+" to "+to +"\t"+errorFlag+" left to recover"); break; case 3: // normally println("shift\tfrom state "+from+" to "+to+"\ton error"); break; } } public void pop (int state) { println("pop\tstate "+state+"\ton error"); } public void discard (int state, int token, string name, Object value) { println("discard\tstate "+state+"\ttoken "+name+"\tvalue "+value); } public void reduce (int from, int to, int rule, string text, int len) { println("reduce\tstate "+from+"\tuncover "+to +"\trule ("+rule+") "+text); } public void shift (int from, int to) { println("goto\tfrom state "+from+" to "+to); } public void accept (Object value) { println("accept\tvalue "+value); } public void error (string message) { println("error\t"+message); } public void reject () { println("reject"); } } } // %token constants class Token { public const int EOF = 257; public const int NONE = 258; public const int ERROR = 259; public const int FIRST_KEYWORD = 260; public const int ABSTRACT = 261; public const int AS = 262; public const int ADD = 263; public const int BASE = 264; public const int BOOL = 265; public const int BREAK = 266; public const int BYTE = 267; public const int CASE = 268; public const int CATCH = 269; public const int CHAR = 270; public const int CHECKED = 271; public const int CLASS = 272; public const int CONST = 273; public const int CONTINUE = 274; public const int DECIMAL = 275; public const int DEFAULT = 276; public const int DELEGATE = 277; public const int DO = 278; public const int DOUBLE = 279; public const int ELSE = 280; public const int ENUM = 281; public const int EVENT = 282; public const int EXPLICIT = 283; public const int EXTERN = 284; public const int FALSE = 285; public const int FINALLY = 286; public const int FIXED = 287; public const int FLOAT = 288; public const int FOR = 289; public const int FOREACH = 290; public const int GOTO = 291; public const int IF = 292; public const int IMPLICIT = 293; public const int IN = 294; public const int INT = 295; public const int INTERFACE = 296; public const int INTERNAL = 297; public const int IS = 298; public const int LOCK = 299; public const int LONG = 300; public const int NAMESPACE = 301; public const int NEW = 302; public const int NULL = 303; public const int OBJECT = 304; public const int OPERATOR = 305; public const int OUT = 306; public const int OVERRIDE = 307; public const int PARAMS = 308; public const int PRIVATE = 309; public const int PROTECTED = 310; public const int PUBLIC = 311; public const int READONLY = 312; public const int REF = 313; public const int RETURN = 314; public const int REMOVE = 315; public const int SBYTE = 316; public const int SEALED = 317; public const int SHORT = 318; public const int SIZEOF = 319; public const int STACKALLOC = 320; public const int STATIC = 321; public const int STRING = 322; public const int STRUCT = 323; public const int SWITCH = 324; public const int THIS = 325; public const int THROW = 326; public const int TRUE = 327; public const int TRY = 328; public const int TYPEOF = 329; public const int UINT = 330; public const int ULONG = 331; public const int UNCHECKED = 332; public const int UNSAFE = 333; public const int USHORT = 334; public const int USING = 335; public const int VIRTUAL = 336; public const int VOID = 337; public const int VOLATILE = 338; public const int WHERE = 339; public const int WHILE = 340; public const int ARGLIST = 341; public const int PARTIAL = 342; public const int ARROW = 343; public const int FROM = 344; public const int FROM_FIRST = 345; public const int JOIN = 346; public const int ON = 347; public const int EQUALS = 348; public const int SELECT = 349; public const int GROUP = 350; public const int BY = 351; public const int LET = 352; public const int ORDERBY = 353; public const int ASCENDING = 354; public const int DESCENDING = 355; public const int INTO = 356; public const int INTERR_NULLABLE = 357; public const int EXTERN_ALIAS = 358; public const int REFVALUE = 359; public const int REFTYPE = 360; public const int MAKEREF = 361; public const int ASYNC = 362; public const int AWAIT = 363; public const int GET = 364; public const int SET = 365; public const int LAST_KEYWORD = 366; public const int OPEN_BRACE = 367; public const int CLOSE_BRACE = 368; public const int OPEN_BRACKET = 369; public const int CLOSE_BRACKET = 370; public const int OPEN_PARENS = 371; public const int CLOSE_PARENS = 372; public const int DOT = 373; public const int COMMA = 374; public const int COLON = 375; public const int SEMICOLON = 376; public const int TILDE = 377; public const int PLUS = 378; public const int MINUS = 379; public const int BANG = 380; public const int ASSIGN = 381; public const int OP_LT = 382; public const int OP_GT = 383; public const int BITWISE_AND = 384; public const int BITWISE_OR = 385; public const int STAR = 386; public const int PERCENT = 387; public const int DIV = 388; public const int CARRET = 389; public const int INTERR = 390; public const int DOUBLE_COLON = 391; public const int OP_INC = 392; public const int OP_DEC = 393; public const int OP_SHIFT_LEFT = 394; public const int OP_SHIFT_RIGHT = 395; public const int OP_LE = 396; public const int OP_GE = 397; public const int OP_EQ = 398; public const int OP_NE = 399; public const int OP_AND = 400; public const int OP_OR = 401; public const int OP_MULT_ASSIGN = 402; public const int OP_DIV_ASSIGN = 403; public const int OP_MOD_ASSIGN = 404; public const int OP_ADD_ASSIGN = 405; public const int OP_SUB_ASSIGN = 406; public const int OP_SHIFT_LEFT_ASSIGN = 407; public const int OP_SHIFT_RIGHT_ASSIGN = 408; public const int OP_AND_ASSIGN = 409; public const int OP_XOR_ASSIGN = 410; public const int OP_OR_ASSIGN = 411; public const int OP_PTR = 412; public const int OP_COALESCING = 413; public const int OP_GENERICS_LT = 414; public const int OP_GENERICS_LT_DECL = 415; public const int OP_GENERICS_GT = 416; public const int LITERAL = 417; public const int IDENTIFIER = 418; public const int OPEN_PARENS_LAMBDA = 419; public const int OPEN_PARENS_CAST = 420; public const int GENERIC_DIMENSION = 421; public const int DEFAULT_COLON = 422; public const int OPEN_BRACKET_EXPR = 423; public const int EVAL_STATEMENT_PARSER = 424; public const int EVAL_COMPILATION_UNIT_PARSER = 425; public const int EVAL_USING_DECLARATIONS_UNIT_PARSER = 426; public const int DOC_SEE = 427; public const int GENERATE_COMPLETION = 428; public const int COMPLETE_COMPLETION = 429; public const int UMINUS = 430; public const int yyErrorCode = 256; } namespace yyParser { using System; /** thrown for irrecoverable syntax errors and stack overflow. */ internal class yyException : System.Exception { public yyException (string message) : base (message) { } } internal class yyUnexpectedEof : yyException { public yyUnexpectedEof (string message) : base (message) { } public yyUnexpectedEof () : base ("") { } } /** must be implemented by a scanner object to supply input to the parser. */ internal interface yyInput { /** move on to next token. @return false if positioned beyond tokens. @throws IOException on input error. */ bool advance (); // throws java.io.IOException; /** classifies current token. Should not be called if advance() returned false. @return current %token or single character. */ int token (); /** associated with current token. Should not be called if advance() returned false. @return value for token(). */ Object value (); } } } // close outermost namespace, that MUST HAVE BEEN opened in the prolog