#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13505 lines
486 KiB

// 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
{
/// <summary>
/// The C# Parser
/// </summary>
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;
TypeContainer current_class;
PropertyBase current_property;
EventProperty current_event;
EventField current_event_field;
FieldBase current_field;
/// <summary>
/// Current block is used to add statements as we find
/// them.
/// </summary>
Block current_block;
BlockVariableDeclaration current_variable;
Delegate current_delegate;
AnonymousMethodExpression current_anonymous_method;
/// <summary>
/// This is used by the unary_expression code to resolve
/// a name against a parameter.
/// </summary>
// 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<object> 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.QueryBlock> 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<Parameter> parameters_bucket = new List<Parameter> (6);
//
// Full AST support members
//
LocationsBag lbag;
UsingsBag ubag;
List<Tuple<Modifiers, Location>> mod_locations;
Location parameterModifierLocation, savedLocation, savedOpenLocation, savedCloseLocation;
Location savedAttrParenOpenLocation, savedAttrParenCloseLocation, savedOperatorLocation;
Stack<List<Location>> locationListStack = new Stack<List<Location>> (); // used for type parameters
List<Location> attributeCommas = new List<Location> ();
List<Location> attributeArgumentCommas = new List<Location> ();
List<Location> parameterListCommas = new List<Location> ();
#line default
/** error output stream.
It should be changeable.
*/
public System.IO.TextWriter ErrorOutput = System.Console.Out;
/** simplified error message.
@see <a href="#yyerror(java.lang.String, java.lang.String[])">yyerror</a>
*/
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_namespace",
//t "using_namespace : USING namespace_or_type_expr SEMICOLON",
//t "using_namespace : USING IDENTIFIER ASSIGN namespace_or_type_expr SEMICOLON",
//t "using_namespace : USING error",
//t "$$2 :",
//t "$$3 :",
//t "namespace_declaration : opt_attributes NAMESPACE namespace_name $$2 OPEN_BRACE $$3 opt_extern_alias_directives opt_using_directives opt_namespace_or_type_declarations CLOSE_BRACE opt_semicolon",
//t "namespace_name : IDENTIFIER",
//t "namespace_name : namespace_name DOT IDENTIFIER",
//t "namespace_name : error",
//t "opt_semicolon :",
//t "opt_semicolon : SEMICOLON",
//t "opt_comma :",
//t "opt_comma : COMMA",
//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_expr",
//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 "enum_declaration : opt_attributes opt_modifiers ENUM type_declaration_name opt_enum_base $$56 OPEN_BRACE $$57 opt_enum_member_declarations $$58 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 "$$59 :",
//t "enum_member_declaration : opt_attributes IDENTIFIER $$59 ASSIGN constant_expression",
//t "$$60 :",
//t "$$61 :",
//t "$$62 :",
//t "delegate_declaration : opt_attributes opt_modifiers DELEGATE member_type type_declaration_name OPEN_PARENS $$60 opt_formal_parameter_list CLOSE_PARENS $$61 opt_type_parameter_constraints_clauses $$62 SEMICOLON",
//t "opt_nullable :",
//t "opt_nullable : INTERR_NULLABLE",
//t "namespace_or_type_expr : member_name",
//t "namespace_or_type_expr : qualified_alias_member IDENTIFIER opt_type_argument_list",
//t "member_name : simple_name_expr",
//t "member_name : namespace_or_type_expr DOT IDENTIFIER opt_type_argument_list",
//t "simple_name_expr : 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 "$$63 :",
//t "type_declaration_name : IDENTIFIER $$63 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_expr opt_nullable",
//t "type_expression : namespace_or_type_expr 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 "$$64 :",
//t "new_expr_type : $$64 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 "$$65 :",
//t "typeof_expression : TYPEOF $$65 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_expr 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 "$$66 :",
//t "anonymous_method_expression : DELEGATE opt_anonymous_method_signature $$66 block",
//t "$$67 :",
//t "anonymous_method_expression : ASYNC DELEGATE opt_anonymous_method_signature $$67 block",
//t "opt_anonymous_method_signature :",
//t "opt_anonymous_method_signature : anonymous_method_signature",
//t "$$68 :",
//t "anonymous_method_signature : OPEN_PARENS $$68 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 "$$69 :",
//t "lambda_expression_body_simple : $$69 expression_or_error",
//t "expression_or_error : expression",
//t "expression_or_error : error",
//t "$$70 :",
//t "lambda_expression : IDENTIFIER ARROW $$70 lambda_expression_body",
//t "$$71 :",
//t "lambda_expression : ASYNC identifier_inside_body ARROW $$71 lambda_expression_body",
//t "$$72 :",
//t "$$73 :",
//t "lambda_expression : OPEN_PARENS_LAMBDA $$72 opt_lambda_parameter_list CLOSE_PARENS ARROW $$73 lambda_expression_body",
//t "$$74 :",
//t "$$75 :",
//t "lambda_expression : ASYNC OPEN_PARENS_LAMBDA $$74 opt_lambda_parameter_list CLOSE_PARENS ARROW $$75 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 "$$76 :",
//t "$$77 :",
//t "$$78 :",
//t "$$79 :",
//t "class_declaration : opt_attributes opt_modifiers opt_partial CLASS $$76 type_declaration_name $$77 opt_class_base opt_type_parameter_constraints_clauses $$78 OPEN_BRACE opt_class_member_declarations CLOSE_BRACE $$79 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 "$$80 :",
//t "block : OPEN_BRACE $$80 opt_statement_list block_end",
//t "block_end : CLOSE_BRACE",
//t "block_end : COMPLETE_COMPLETION",
//t "$$81 :",
//t "block_prepared : OPEN_BRACE $$81 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 : IDENTIFIER error",
//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 "$$82 :",
//t "labeled_statement : identifier_inside_body COLON $$82 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 "$$83 :",
//t "block_variable_declaration : variable_type identifier_inside_body $$83 opt_local_variable_initializer opt_variable_declarators SEMICOLON",
//t "$$84 :",
//t "block_variable_declaration : CONST variable_type identifier_inside_body $$84 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 : ASSIGN error",
//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 "if_statement : IF open_parens_any boolean_expression error",
//t "$$85 :",
//t "switch_statement : SWITCH open_parens_any expression CLOSE_PARENS OPEN_BRACE $$85 opt_switch_sections CLOSE_BRACE",
//t "switch_statement : SWITCH open_parens_any expression error",
//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 "$$86 :",
//t "switch_section : switch_labels $$86 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 "while_statement : WHILE open_parens_any boolean_expression error",
//t "do_statement : DO embedded_statement WHILE open_parens_any boolean_expression CLOSE_PARENS SEMICOLON",
//t "do_statement : DO embedded_statement error",
//t "do_statement : DO embedded_statement WHILE open_parens_any boolean_expression error",
//t "$$87 :",
//t "for_statement : FOR open_parens_any $$87 for_statement_cont",
//t "$$88 :",
//t "$$89 :",
//t "$$90 :",
//t "for_statement_cont : opt_for_initializer SEMICOLON $$88 opt_for_condition SEMICOLON $$89 opt_for_iterator CLOSE_PARENS $$90 embedded_statement",
//t "for_statement_cont : error",
//t "opt_for_initializer :",
//t "opt_for_initializer : for_initializer",
//t "$$91 :",
//t "for_initializer : variable_type identifier_inside_body $$91 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 error",
//t "foreach_statement : FOREACH open_parens_any type identifier_inside_body error",
//t "$$92 :",
//t "foreach_statement : FOREACH open_parens_any type identifier_inside_body IN expression CLOSE_PARENS $$92 embedded_statement",
//t "foreach_statement : FOREACH open_parens_any type identifier_inside_body error",
//t "foreach_statement : FOREACH open_parens_any type error",
//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 "$$93 :",
//t "catch_clause : CATCH open_parens_any type opt_identifier CLOSE_PARENS $$93 block_prepared",
//t "catch_clause : CATCH open_parens_any error",
//t "checked_statement : CHECKED block",
//t "unchecked_statement : UNCHECKED block",
//t "$$94 :",
//t "unsafe_statement : UNSAFE $$94 block",
//t "lock_statement : LOCK open_parens_any expression CLOSE_PARENS embedded_statement",
//t "lock_statement : LOCK open_parens_any expression error",
//t "$$95 :",
//t "$$96 :",
//t "fixed_statement : FIXED open_parens_any variable_type identifier_inside_body $$95 using_or_fixed_variable_initializer opt_using_or_fixed_variable_declarators CLOSE_PARENS $$96 embedded_statement",
//t "$$97 :",
//t "$$98 :",
//t "using_statement : USING open_parens_any variable_type identifier_inside_body $$97 using_initialization CLOSE_PARENS $$98 embedded_statement",
//t "using_statement : USING open_parens_any expression CLOSE_PARENS embedded_statement",
//t "using_statement : USING open_parens_any expression error",
//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 "$$99 :",
//t "from_clause : FROM identifier_inside_body IN $$99 expression",
//t "$$100 :",
//t "from_clause : FROM type identifier_inside_body IN $$100 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 "$$101 :",
//t "select_or_group_clause : SELECT $$101 expression",
//t "$$102 :",
//t "$$103 :",
//t "select_or_group_clause : GROUP $$102 expression $$103 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 "$$104 :",
//t "let_clause : LET identifier_inside_body ASSIGN $$104 expression",
//t "$$105 :",
//t "where_clause : WHERE $$105 expression",
//t "$$106 :",
//t "$$107 :",
//t "$$108 :",
//t "join_clause : JOIN identifier_inside_body IN $$106 expression ON $$107 expression EQUALS $$108 expression opt_join_into",
//t "$$109 :",
//t "$$110 :",
//t "$$111 :",
//t "join_clause : JOIN type identifier_inside_body IN $$109 expression ON $$110 expression EQUALS $$111 expression opt_join_into",
//t "opt_join_into :",
//t "opt_join_into : INTO identifier_inside_body",
//t "$$112 :",
//t "orderby_clause : ORDERBY $$112 orderings",
//t "orderings : order_by",
//t "$$113 :",
//t "orderings : order_by COMMA $$113 orderings_then_by",
//t "orderings_then_by : then_by",
//t "$$114 :",
//t "orderings_then_by : orderings_then_by COMMA $$114 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 "$$115 :",
//t "opt_query_continuation : INTO identifier_inside_body $$115 query_body",
//t "interactive_parsing : EVAL_STATEMENT_PARSER EOF",
//t "interactive_parsing : EVAL_USING_DECLARATIONS_UNIT_PARSER using_directives opt_COMPLETE_COMPLETION",
//t "$$116 :",
//t "interactive_parsing : EVAL_STATEMENT_PARSER $$116 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 "$$117 :",
//t "doc_cref : doc_type_declaration_name DOT THIS OPEN_BRACKET $$117 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 "$$118 :",
//t "opt_doc_method_sig : OPEN_PARENS $$118 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 388 "cs-parser.jay"
{
Lexer.check_incorrect_doc_comment ();
}
break;
case 2:
#line 389 "cs-parser.jay"
{ Lexer.CompleteOnEOF = false; }
break;
case 6:
case_6();
break;
case 7:
#line 406 "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 451 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
}
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 39:
case_39();
break;
case 40:
#line 626 "cs-parser.jay"
{
current_namespace.DeclarationFound = true;
}
break;
case 48:
case_48();
break;
case 49:
case_49();
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:
#line 735 "cs-parser.jay"
{ yyVal = "event"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 57:
#line 736 "cs-parser.jay"
{ yyVal = "return"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 58:
case_58();
break;
case 59:
#line 753 "cs-parser.jay"
{
yyVal = new List<Attribute> (4) { (Attribute) yyVals[0+yyTop] };
}
break;
case 60:
case_60();
break;
case 61:
#line 768 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 62:
case_62();
break;
case 64:
#line 794 "cs-parser.jay"
{ yyVal = null; }
break;
case 65:
case_65();
break;
case 66:
#line 805 "cs-parser.jay"
{ yyVal = null; }
break;
case 67:
case_67();
break;
case 68:
case_68();
break;
case 69:
case_69();
break;
case 70:
case_70();
break;
case 71:
#line 849 "cs-parser.jay"
{
yyVal = new Argument ((Expression) yyVals[0+yyTop]);
}
break;
case 73:
#line 857 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 74:
case_74();
break;
case 75:
case_75();
break;
case 76:
#line 883 "cs-parser.jay"
{ yyVal = null; }
break;
case 77:
#line 887 "cs-parser.jay"
{
yyVal = Argument.AType.Ref;
}
break;
case 78:
#line 891 "cs-parser.jay"
{
yyVal = Argument.AType.Out;
}
break;
case 81:
#line 903 "cs-parser.jay"
{
lexer.parsing_modifiers = true;
}
break;
case 82:
#line 907 "cs-parser.jay"
{
lexer.parsing_modifiers = true;
}
break;
case 93:
case_93();
break;
case 94:
#line 937 "cs-parser.jay"
{
lexer.ConstraintsParsing = true;
}
break;
case 95:
case_95();
break;
case 96:
case_96();
break;
case 97:
case_97();
break;
case 98:
case_98();
break;
case 99:
case_99();
break;
case 100:
#line 979 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
}
break;
case 101:
case_101();
break;
case 102:
case_102();
break;
case 105:
#line 1020 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 106:
#line 1024 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 107:
case_107();
break;
case 108:
#line 1040 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 109:
case_109();
break;
case 110:
case_110();
break;
case 113:
case_113();
break;
case 114:
case_114();
break;
case 115:
case_115();
break;
case 116:
case_116();
break;
case 117:
#line 1119 "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 119:
case_119();
break;
case 120:
case_120();
break;
case 123:
#line 1149 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 124:
#line 1153 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 125:
case_125();
break;
case 126:
#line 1166 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 127:
case_127();
break;
case 130:
#line 1185 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 131:
#line 1189 "cs-parser.jay"
{
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 132:
case_132();
break;
case 133:
#line 1205 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 134:
case_134();
break;
case 135:
case_135();
break;
case 138:
case_138();
break;
case 139:
case_139();
break;
case 140:
case_140();
break;
case 141:
#line 1276 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.All;
}
break;
case 142:
#line 1280 "cs-parser.jay"
{
lexer.ConstraintsParsing = true;
}
break;
case 143:
case_143();
break;
case 144:
#line 1306 "cs-parser.jay"
{
lexer.parsing_generic_declaration = true;
}
break;
case 145:
case_145();
break;
case 146:
#line 1316 "cs-parser.jay"
{
lexer.ConstraintsParsing = true;
}
break;
case 147:
case_147();
break;
case 148:
case_148();
break;
case 150:
#line 1364 "cs-parser.jay"
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; }
break;
case 151:
#line 1368 "cs-parser.jay"
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; }
break;
case 153:
case_153();
break;
case 154:
case_154();
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:
#line 1440 "cs-parser.jay"
{
yyVal = new ParametersCompiled (new Parameter[] { (Parameter) yyVals[0+yyTop] } );
}
break;
case 161:
#line 1444 "cs-parser.jay"
{
yyVal = new ParametersCompiled (new Parameter [] { new ArglistParameter (GetLocation (yyVals[0+yyTop])) }, true);
}
break;
case 162:
case_162();
break;
case 163:
case_163();
break;
case 164:
case_164();
break;
case 165:
case_165();
break;
case 166:
case_166();
break;
case 167:
case_167();
break;
case 168:
#line 1519 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 169:
case_169();
break;
case 170:
#line 1560 "cs-parser.jay"
{ yyVal = Parameter.Modifier.NONE; }
break;
case 172:
#line 1568 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 173:
case_173();
break;
case 174:
case_174();
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:
#line 1661 "cs-parser.jay"
{
Error_DuplicateParameterModifier (GetLocation (yyVals[-1+yyTop]), Parameter.Modifier.PARAMS);
}
break;
case 183:
case_183();
break;
case 184:
case_184();
break;
case 185:
case_185();
break;
case 186:
case_186();
break;
case 187:
case_187();
break;
case 188:
#line 1715 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Params | ParameterModifierType.DefaultValue;
}
break;
case 189:
case_189();
break;
case 190:
#line 1744 "cs-parser.jay"
{
lexer.PropertyParsing = false;
}
break;
case 191:
case_191();
break;
case 196:
case_196();
break;
case 197:
case_197();
break;
case 198:
case_198();
break;
case 199:
case_199();
break;
case 200:
case_200();
break;
case 202:
case_202();
break;
case 203:
case_203();
break;
case 204:
#line 1893 "cs-parser.jay"
{
lexer.ConstraintsParsing = true;
}
break;
case 205:
case_205();
break;
case 206:
case_206();
break;
case 207:
case_207();
break;
case 208:
case_208();
break;
case 209:
#line 1931 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
}
break;
case 212:
#line 1943 "cs-parser.jay"
{
lexer.parsing_modifiers = true;
}
break;
case 213:
#line 1947 "cs-parser.jay"
{
lexer.parsing_modifiers = true;
}
break;
case 214:
#line 1954 "cs-parser.jay"
{
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants");
}
break;
case 215:
#line 1958 "cs-parser.jay"
{
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants");
}
break;
case 220:
#line 1966 "cs-parser.jay"
{
report.Error (567, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain operators");
}
break;
case 221:
#line 1970 "cs-parser.jay"
{
report.Error (526, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain contructors");
}
break;
case 222:
#line 1974 "cs-parser.jay"
{
report.Error (524, GetLocation (yyVals[0+yyTop]), "Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations");
}
break;
case 223:
#line 1980 "cs-parser.jay"
{
}
break;
case 224:
case_224();
break;
case 226:
#line 2013 "cs-parser.jay"
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; }
break;
case 228:
case_228();
break;
case 229:
#line 2029 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.DefaultValue;
}
break;
case 230:
case_230();
break;
case 232:
#line 2075 "cs-parser.jay"
{ yyVal = Operator.OpType.LogicalNot; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 233:
#line 2076 "cs-parser.jay"
{ yyVal = Operator.OpType.OnesComplement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 234:
#line 2077 "cs-parser.jay"
{ yyVal = Operator.OpType.Increment; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 235:
#line 2078 "cs-parser.jay"
{ yyVal = Operator.OpType.Decrement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 236:
#line 2079 "cs-parser.jay"
{ yyVal = Operator.OpType.True; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 237:
#line 2080 "cs-parser.jay"
{ yyVal = Operator.OpType.False; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 238:
#line 2082 "cs-parser.jay"
{ yyVal = Operator.OpType.Addition; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 239:
#line 2083 "cs-parser.jay"
{ yyVal = Operator.OpType.Subtraction; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 240:
#line 2085 "cs-parser.jay"
{ yyVal = Operator.OpType.Multiply; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 241:
#line 2086 "cs-parser.jay"
{ yyVal = Operator.OpType.Division; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 242:
#line 2087 "cs-parser.jay"
{ yyVal = Operator.OpType.Modulus; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 243:
#line 2088 "cs-parser.jay"
{ yyVal = Operator.OpType.BitwiseAnd; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 244:
#line 2089 "cs-parser.jay"
{ yyVal = Operator.OpType.BitwiseOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 245:
#line 2090 "cs-parser.jay"
{ yyVal = Operator.OpType.ExclusiveOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 246:
#line 2091 "cs-parser.jay"
{ yyVal = Operator.OpType.LeftShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 247:
#line 2092 "cs-parser.jay"
{ yyVal = Operator.OpType.RightShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 248:
#line 2093 "cs-parser.jay"
{ yyVal = Operator.OpType.Equality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 249:
#line 2094 "cs-parser.jay"
{ yyVal = Operator.OpType.Inequality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 250:
#line 2095 "cs-parser.jay"
{ yyVal = Operator.OpType.GreaterThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 251:
#line 2096 "cs-parser.jay"
{ yyVal = Operator.OpType.LessThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 252:
#line 2097 "cs-parser.jay"
{ yyVal = Operator.OpType.GreaterThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 253:
#line 2098 "cs-parser.jay"
{ yyVal = Operator.OpType.LessThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); }
break;
case 254:
#line 2105 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.DefaultValue;
}
break;
case 255:
case_255();
break;
case 256:
#line 2124 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.DefaultValue;
}
break;
case 257:
case_257();
break;
case 258:
case_258();
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 265:
#line 2230 "cs-parser.jay"
{ current_block = null; yyVal = null; }
break;
case 268:
#line 2242 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 269:
case_269();
break;
case 270:
#line 2252 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 271:
case_271();
break;
case 272:
case_272();
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 281:
#line 2361 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 282:
case_282();
break;
case 285:
#line 2378 "cs-parser.jay"
{
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 286:
#line 2382 "cs-parser.jay"
{
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]);
}
break;
case 287:
case_287();
break;
case 288:
#line 2395 "cs-parser.jay"
{
++lexer.parsing_block;
}
break;
case 289:
case_289();
break;
case 290:
case_290();
break;
case 291:
#line 2420 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 294:
case_294();
break;
case 295:
case_295();
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 303:
case_303();
break;
case 304:
case_304();
break;
case 305:
case_305();
break;
case 306:
case_306();
break;
case 308:
case_308();
break;
case 309:
case_309();
break;
case 312:
#line 2583 "cs-parser.jay"
{
lbag.AppendToMember (current_class, GetLocation (yyVals[0+yyTop]));
}
break;
case 314:
case_314();
break;
case 315:
case_315();
break;
case 316:
case_316();
break;
case 317:
case_317();
break;
case 318:
#line 2641 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out | ParameterModifierType.Params | ParameterModifierType.DefaultValue;
}
break;
case 319:
case_319();
break;
case 320:
#line 2663 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
}
break;
case 321:
case_321();
break;
case 323:
case_323();
break;
case 325:
case_325();
break;
case 327:
case_327();
break;
case 328:
case_328();
break;
case 330:
case_330();
break;
case 331:
case_331();
break;
case 332:
case_332();
break;
case 333:
case_333();
break;
case 334:
#line 2769 "cs-parser.jay"
{
lexer.parsing_generic_declaration = true;
}
break;
case 335:
case_335();
break;
case 336:
case_336();
break;
case 338:
case_338();
break;
case 339:
case_339();
break;
case 340:
case_340();
break;
case 341:
case_341();
break;
case 342:
case_342();
break;
case 343:
case_343();
break;
case 345:
case_345();
break;
case 346:
case_346();
break;
case 347:
case_347();
break;
case 348:
case_348();
break;
case 349:
case_349();
break;
case 351:
#line 2887 "cs-parser.jay"
{
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop]));
}
break;
case 352:
#line 2894 "cs-parser.jay"
{
lexer.parsing_generic_declaration = true;
}
break;
case 354:
case_354();
break;
case 356:
case_356();
break;
case 358:
case_358();
break;
case 360:
#line 2932 "cs-parser.jay"
{
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 361:
case_361();
break;
case 362:
#line 2951 "cs-parser.jay"
{
yyVal = new ComposedCast ((ATypeNameExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 363:
case_363();
break;
case 364:
#line 2960 "cs-parser.jay"
{
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 365:
#line 2964 "cs-parser.jay"
{
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 366:
case_366();
break;
case 367:
case_367();
break;
case 368:
case_368();
break;
case 369:
case_369();
break;
case 370:
#line 3003 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Object, GetLocation (yyVals[0+yyTop])); }
break;
case 371:
#line 3004 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.String, GetLocation (yyVals[0+yyTop])); }
break;
case 372:
#line 3005 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Bool, GetLocation (yyVals[0+yyTop])); }
break;
case 373:
#line 3006 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Decimal, GetLocation (yyVals[0+yyTop])); }
break;
case 374:
#line 3007 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Float, GetLocation (yyVals[0+yyTop])); }
break;
case 375:
#line 3008 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Double, GetLocation (yyVals[0+yyTop])); }
break;
case 377:
#line 3013 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.SByte, GetLocation (yyVals[0+yyTop])); }
break;
case 378:
#line 3014 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Byte, GetLocation (yyVals[0+yyTop])); }
break;
case 379:
#line 3015 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Short, GetLocation (yyVals[0+yyTop])); }
break;
case 380:
#line 3016 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UShort, GetLocation (yyVals[0+yyTop])); }
break;
case 381:
#line 3017 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Int, GetLocation (yyVals[0+yyTop])); }
break;
case 382:
#line 3018 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UInt, GetLocation (yyVals[0+yyTop])); }
break;
case 383:
#line 3019 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Long, GetLocation (yyVals[0+yyTop])); }
break;
case 384:
#line 3020 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.ULong, GetLocation (yyVals[0+yyTop])); }
break;
case 385:
#line 3021 "cs-parser.jay"
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Char, GetLocation (yyVals[0+yyTop])); }
break;
case 406:
case_406();
break;
case 407:
case_407();
break;
case 411:
#line 3068 "cs-parser.jay"
{ yyVal = new NullLiteral (GetLocation (yyVals[0+yyTop])); }
break;
case 412:
#line 3072 "cs-parser.jay"
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, true, GetLocation (yyVals[0+yyTop])); }
break;
case 413:
#line 3073 "cs-parser.jay"
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, false, GetLocation (yyVals[0+yyTop])); }
break;
case 418:
case_418();
break;
case 419:
#line 3106 "cs-parser.jay"
{
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]);
}
break;
case 420:
case_420();
break;
case 421:
case_421();
break;
case 422:
case_422();
break;
case 423:
case_423();
break;
case 424:
#line 3141 "cs-parser.jay"
{
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null,GetLocation (yyVals[0+yyTop]));
}
break;
case 425:
case_425();
break;
case 426:
#line 3149 "cs-parser.jay"
{
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null, lexer.Location);
}
break;
case 427:
case_427();
break;
case 428:
case_428();
break;
case 429:
#line 3165 "cs-parser.jay"
{ yyVal = null; }
break;
case 431:
case_431();
break;
case 432:
case_432();
break;
case 433:
#line 3188 "cs-parser.jay"
{ yyVal = null; }
break;
case 434:
#line 3192 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 435:
case_435();
break;
case 436:
case_436();
break;
case 437:
case_437();
break;
case 438:
case_438();
break;
case 439:
#line 3225 "cs-parser.jay"
{
yyVal = new CompletionElementInitializer (null, GetLocation (yyVals[0+yyTop]));
}
break;
case 440:
case_440();
break;
case 441:
case_441();
break;
case 442:
case_442();
break;
case 445:
#line 3253 "cs-parser.jay"
{ yyVal = null; }
break;
case 447:
case_447();
break;
case 448:
case_448();
break;
case 449:
case_449();
break;
case 450:
case_450();
break;
case 451:
case_451();
break;
case 452:
#line 3305 "cs-parser.jay"
{
yyVal = new Argument ((Expression) yyVals[0+yyTop]);
}
break;
case 456:
case_456();
break;
case 457:
case_457();
break;
case 458:
case_458();
break;
case 459:
case_459();
break;
case 461:
case_461();
break;
case 462:
#line 3350 "cs-parser.jay"
{
yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
}
break;
case 463:
#line 3354 "cs-parser.jay"
{
yyVal = new ElementAccess ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop]));
}
break;
case 464:
case_464();
break;
case 465:
case_465();
break;
case 466:
case_466();
break;
case 467:
case_467();
break;
case 468:
case_468();
break;
case 469:
#line 3400 "cs-parser.jay"
{
yyVal = new Argument ((Expression) yyVals[0+yyTop]);
}
break;
case 471:
#line 3408 "cs-parser.jay"
{
yyVal = new This (GetLocation (yyVals[0+yyTop]));
}
break;
case 472:
case_472();
break;
case 473:
case_473();
break;
case 474:
#line 3428 "cs-parser.jay"
{
yyVal = new UnaryMutator (UnaryMutator.Mode.PostIncrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop]));
}
break;
case 475:
#line 3435 "cs-parser.jay"
{
yyVal = new UnaryMutator (UnaryMutator.Mode.PostDecrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop]));
}
break;
case 476:
case_476();
break;
case 477:
case_477();
break;
case 478:
case_478();
break;
case 479:
case_479();
break;
case 480:
case_480();
break;
case 481:
case_481();
break;
case 482:
case_482();
break;
case 483:
#line 3501 "cs-parser.jay"
{
++lexer.parsing_type;
}
break;
case 484:
case_484();
break;
case 485:
case_485();
break;
case 488:
#line 3528 "cs-parser.jay"
{ yyVal = null; }
break;
case 490:
case_490();
break;
case 491:
case_491();
break;
case 492:
case_492();
break;
case 493:
case_493();
break;
case 494:
case_494();
break;
case 495:
case_495();
break;
case 499:
case_499();
break;
case 500:
case_500();
break;
case 501:
case_501();
break;
case 502:
#line 3606 "cs-parser.jay"
{
yyVal = 2;
}
break;
case 503:
#line 3610 "cs-parser.jay"
{
yyVal = ((int) yyVals[-1+yyTop]) + 1;
}
break;
case 504:
#line 3617 "cs-parser.jay"
{
yyVal = null;
}
break;
case 505:
#line 3621 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 506:
case_506();
break;
case 507:
case_507();
break;
case 508:
case_508();
break;
case 509:
case_509();
break;
case 510:
#line 3665 "cs-parser.jay"
{
lexer.TypeOfParsing = true;
}
break;
case 511:
case_511();
break;
case 514:
case_514();
break;
case 515:
case_515();
break;
case 516:
case_516();
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:
#line 3785 "cs-parser.jay"
{
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], false, GetLocation (yyVals[-1+yyTop]));
}
break;
case 527:
case_527();
break;
case 528:
#line 3798 "cs-parser.jay"
{
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], true, GetLocation (yyVals[-2+yyTop]));
}
break;
case 529:
case_529();
break;
case 530:
#line 3815 "cs-parser.jay"
{
yyVal = ParametersCompiled.Undefined;
}
break;
case 532:
#line 3823 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out;
}
break;
case 533:
case_533();
break;
case 534:
case_534();
break;
case 536:
#line 3849 "cs-parser.jay"
{
yyVal = new Unary (Unary.Operator.LogicalNot, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 537:
#line 3853 "cs-parser.jay"
{
yyVal = new Unary (Unary.Operator.OnesComplement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 538:
case_538();
break;
case 539:
case_539();
break;
case 541:
#line 3881 "cs-parser.jay"
{
yyVal = new Unary (Unary.Operator.UnaryPlus, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 542:
#line 3885 "cs-parser.jay"
{
yyVal = new Unary (Unary.Operator.UnaryNegation, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 543:
#line 3889 "cs-parser.jay"
{
yyVal = new UnaryMutator (UnaryMutator.Mode.PreIncrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 544:
#line 3893 "cs-parser.jay"
{
yyVal = new UnaryMutator (UnaryMutator.Mode.PreDecrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 545:
#line 3897 "cs-parser.jay"
{
yyVal = new Indirection ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 546:
#line 3901 "cs-parser.jay"
{
yyVal = new Unary (Unary.Operator.AddressOf, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 548:
case_548();
break;
case 549:
case_549();
break;
case 550:
case_550();
break;
case 552:
case_552();
break;
case 553:
#line 3933 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 554:
case_554();
break;
case 555:
#line 3942 "cs-parser.jay"
{
yyVal = new As ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 556:
#line 3946 "cs-parser.jay"
{
yyVal = new Is ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 558:
case_558();
break;
case 559:
case_559();
break;
case 561:
case_561();
break;
case 562:
case_562();
break;
case 563:
case_563();
break;
case 564:
case_564();
break;
case 566:
case_566();
break;
case 567:
case_567();
break;
case 569:
case_569();
break;
case 571:
case_571();
break;
case 573:
case_573();
break;
case 575:
case_575();
break;
case 577:
case_577();
break;
case 579:
case_579();
break;
case 581:
case_581();
break;
case 582:
#line 4070 "cs-parser.jay"
{
yyVal = new SimpleAssign ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 583:
case_583();
break;
case 584:
case_584();
break;
case 585:
case_585();
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:
#line 4167 "cs-parser.jay"
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; }
break;
case 599:
case_599();
break;
case 602:
#line 4183 "cs-parser.jay"
{
start_block (lexer.Location);
}
break;
case 603:
case_603();
break;
case 605:
case_605();
break;
case 606:
case_606();
break;
case 607:
case_607();
break;
case 608:
case_608();
break;
case 609:
case_609();
break;
case 610:
#line 4228 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out;
}
break;
case 611:
case_611();
break;
case 612:
case_612();
break;
case 613:
#line 4242 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out;
}
break;
case 614:
case_614();
break;
case 615:
case_615();
break;
case 621:
#line 4267 "cs-parser.jay"
{
yyVal = new ArglistAccess (GetLocation (yyVals[0+yyTop]));
}
break;
case 622:
case_622();
break;
case 623:
case_623();
break;
case 624:
case_624();
break;
case 626:
#line 4296 "cs-parser.jay"
{
yyVal = new BooleanExpression ((Expression) yyVals[0+yyTop]);
}
break;
case 627:
#line 4309 "cs-parser.jay"
{
lexer.ConstraintsParsing = true;
}
break;
case 628:
case_628();
break;
case 629:
case_629();
break;
case 630:
case_630();
break;
case 631:
case_631();
break;
case 632:
#line 4353 "cs-parser.jay"
{ yyVal = null; }
break;
case 633:
#line 4355 "cs-parser.jay"
{ yyVal = yyVals[0+yyTop]; StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[0+yyTop])); }
break;
case 634:
case_634();
break;
case 635:
#line 4368 "cs-parser.jay"
{
lexer.parsing_modifiers = false;
}
break;
case 637:
case_637();
break;
case 638:
case_638();
break;
case 639:
case_639();
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 654:
case_654();
break;
case 656:
#line 4488 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 657:
case_657();
break;
case 658:
case_658();
break;
case 659:
case_659();
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:
#line 4579 "cs-parser.jay"
{
yyVal = new SpecialContraintExpr (SpecialConstraint.Class, GetLocation (yyVals[0+yyTop]));
}
break;
case 666:
#line 4583 "cs-parser.jay"
{
yyVal = new SpecialContraintExpr (SpecialConstraint.Struct, GetLocation (yyVals[0+yyTop]));
}
break;
case 667:
#line 4590 "cs-parser.jay"
{
yyVal = Variance.None;
}
break;
case 668:
case_668();
break;
case 669:
case_669();
break;
case 670:
case_670();
break;
case 671:
case_671();
break;
case 672:
#line 4635 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 673:
case_673();
break;
case 674:
case_674();
break;
case 675:
case_675();
break;
case 676:
case_676();
break;
case 681:
#line 4679 "cs-parser.jay"
{
current_block.AddStatement ((Statement) yyVals[0+yyTop]);
}
break;
case 682:
#line 4683 "cs-parser.jay"
{
current_block.AddStatement ((Statement) yyVals[0+yyTop]);
}
break;
case 684:
case_684();
break;
case 685:
case_685();
break;
case 688:
#line 4717 "cs-parser.jay"
{
current_block.AddStatement ((Statement) yyVals[0+yyTop]);
}
break;
case 689:
#line 4721 "cs-parser.jay"
{
current_block.AddStatement ((Statement) yyVals[0+yyTop]);
}
break;
case 718:
case_718();
break;
case 719:
case_719();
break;
case 720:
case_720();
break;
case 721:
case_721();
break;
case 722:
case_722();
break;
case 725:
case_725();
break;
case 726:
case_726();
break;
case 727:
case_727();
break;
case 728:
case_728();
break;
case 729:
#line 4865 "cs-parser.jay"
{
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 730:
#line 4869 "cs-parser.jay"
{
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
break;
case 731:
case_731();
break;
case 733:
case_733();
break;
case 734:
#line 4890 "cs-parser.jay"
{
yyVal = ComposedTypeSpecifier.CreatePointer (GetLocation (yyVals[0+yyTop]));
}
break;
case 736:
case_736();
break;
case 737:
case_737();
break;
case 738:
case_738();
break;
case 739:
case_739();
break;
case 740:
case_740();
break;
case 742:
case_742();
break;
case 743:
case_743();
break;
case 744:
case_744();
break;
case 748:
case_748();
break;
case 751:
case_751();
break;
case 752:
case_752();
break;
case 753:
#line 5015 "cs-parser.jay"
{
report.Error (145, lexer.Location, "A const field requires a value to be provided");
}
break;
case 754:
case_754();
break;
case 759:
case_759();
break;
case 761:
case_761();
break;
case 762:
case_762();
break;
case 763:
case_763();
break;
case 764:
#line 5065 "cs-parser.jay"
{ yyVal = yyVals[-1+yyTop]; }
break;
case 765:
#line 5069 "cs-parser.jay"
{ yyVal = yyVals[-1+yyTop]; }
break;
case 766:
#line 5070 "cs-parser.jay"
{ yyVal = yyVals[-1+yyTop]; }
break;
case 767:
case_767();
break;
case 768:
case_768();
break;
case 769:
case_769();
break;
case 772:
case_772();
break;
case 773:
case_773();
break;
case 774:
case_774();
break;
case 775:
#line 5145 "cs-parser.jay"
{
start_block (GetLocation (yyVals[0+yyTop]));
}
break;
case 776:
case_776();
break;
case 777:
case_777();
break;
case 778:
case_778();
break;
case 780:
case_780();
break;
case 781:
case_781();
break;
case 782:
case_782();
break;
case 783:
#line 5196 "cs-parser.jay"
{
current_block = current_block.CreateSwitchBlock (lexer.Location);
}
break;
case 784:
#line 5200 "cs-parser.jay"
{
yyVal = new SwitchSection ((List<SwitchLabel>) yyVals[-2+yyTop], current_block);
}
break;
case 785:
case_785();
break;
case 786:
case_786();
break;
case 787:
case_787();
break;
case 788:
#line 5229 "cs-parser.jay"
{
yyVal = new SwitchLabel (null, GetLocation (yyVals[0+yyTop]));
}
break;
case 793:
case_793();
break;
case 794:
case_794();
break;
case 795:
case_795();
break;
case 796:
case_796();
break;
case 797:
case_797();
break;
case 798:
case_798();
break;
case 799:
#line 5289 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 800:
#line 5297 "cs-parser.jay"
{
((For) yyVals[-2+yyTop]).Initializer = (Statement) yyVals[-1+yyTop];
}
break;
case 801:
#line 5301 "cs-parser.jay"
{
((For) yyVals[-5+yyTop]).Condition = (BooleanExpression) yyVals[-1+yyTop];
}
break;
case 802:
#line 5305 "cs-parser.jay"
{
((For) yyVals[-8+yyTop]).Iterator = (Statement) yyVals[-1+yyTop];
}
break;
case 803:
case_803();
break;
case 804:
case_804();
break;
case 805:
#line 5325 "cs-parser.jay"
{ yyVal = new EmptyStatement (lexer.Location); }
break;
case 807:
case_807();
break;
case 808:
case_808();
break;
case 810:
#line 5346 "cs-parser.jay"
{ yyVal = null; }
break;
case 812:
#line 5351 "cs-parser.jay"
{ yyVal = new EmptyStatement (lexer.Location); }
break;
case 816:
case_816();
break;
case 817:
case_817();
break;
case 818:
case_818();
break;
case 819:
case_819();
break;
case 820:
case_820();
break;
case 821:
case_821();
break;
case 822:
case_822();
break;
case 829:
case_829();
break;
case 830:
case_830();
break;
case 831:
case_831();
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 837:
case_837();
break;
case 840:
#line 5552 "cs-parser.jay"
{
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], (List<Catch>) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), false);
}
break;
case 841:
case_841();
break;
case 842:
case_842();
break;
case 843:
case_843();
break;
case 844:
case_844();
break;
case 845:
case_845();
break;
case 848:
#line 5601 "cs-parser.jay"
{
yyVal = new Catch ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 849:
case_849();
break;
case 850:
#line 5620 "cs-parser.jay"
{
yyVal = yyVals[-1+yyTop];
}
break;
case 851:
case_851();
break;
case 852:
#line 5638 "cs-parser.jay"
{
yyVal = new Checked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 853:
#line 5645 "cs-parser.jay"
{
yyVal = new Unchecked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
break;
case 854:
case_854();
break;
case 855:
#line 5655 "cs-parser.jay"
{
yyVal = new Unsafe ((Block) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]));
}
break;
case 856:
case_856();
break;
case 857:
case_857();
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 867:
case_867();
break;
case 868:
#line 5760 "cs-parser.jay"
{
Error_MissingInitializer (lexer.Location);
}
break;
case 869:
case_869();
break;
case 870:
case_870();
break;
case 871:
case_871();
break;
case 872:
case_872();
break;
case 873:
case_873();
break;
case 874:
case_874();
break;
case 875:
case_875();
break;
case 876:
case_876();
break;
case 877:
case_877();
break;
case 878:
#line 5861 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 879:
case_879();
break;
case 880:
#line 5876 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 881:
case_881();
break;
case 882:
case_882();
break;
case 884:
case_884();
break;
case 885:
#line 5921 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 886:
case_886();
break;
case 887:
case_887();
break;
case 888:
case_888();
break;
case 889:
case_889();
break;
case 893:
case_893();
break;
case 899:
#line 5980 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 900:
case_900();
break;
case 901:
#line 5999 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 902:
case_902();
break;
case 903:
case_903();
break;
case 904:
case_904();
break;
case 905:
case_905();
break;
case 906:
case_906();
break;
case 907:
case_907();
break;
case 908:
case_908();
break;
case 909:
case_909();
break;
case 910:
case_910();
break;
case 912:
#line 6143 "cs-parser.jay"
{
yyVal = yyVals[0+yyTop];
}
break;
case 913:
#line 6150 "cs-parser.jay"
{
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
break;
case 914:
case_914();
break;
case 916:
case_916();
break;
case 917:
case_917();
break;
case 919:
case_919();
break;
case 920:
case_920();
break;
case 921:
#line 6196 "cs-parser.jay"
{
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]);
}
break;
case 922:
case_922();
break;
case 923:
case_923();
break;
case 924:
#line 6213 "cs-parser.jay"
{
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]);
}
break;
case 925:
case_925();
break;
case 926:
case_926();
break;
case 928:
case_928();
break;
case 929:
case_929();
break;
case 932:
case_932();
break;
case 933:
case_933();
break;
case 941:
#line 6336 "cs-parser.jay"
{
module.DocumentationBuilder.ParsedName = (MemberName) yyVals[0+yyTop];
}
break;
case 942:
#line 6343 "cs-parser.jay"
{
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop];
}
break;
case 943:
case_943();
break;
case 944:
case_944();
break;
case 945:
#line 6360 "cs-parser.jay"
{
yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], MemberCache.IndexerNameAlias, Location.Null);
}
break;
case 946:
#line 6364 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out;
}
break;
case 947:
case_947();
break;
case 948:
case_948();
break;
case 949:
case_949();
break;
case 950:
case_950();
break;
case 952:
#line 6400 "cs-parser.jay"
{
yyVal = new MemberName (((MemberName) yyVals[-2+yyTop]), (MemberName) yyVals[0+yyTop]);
}
break;
case 954:
#line 6408 "cs-parser.jay"
{
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out;
}
break;
case 955:
#line 6412 "cs-parser.jay"
{
yyVal = yyVals[-1+yyTop];
}
break;
case 956:
#line 6419 "cs-parser.jay"
{
yyVal = new List<DocumentationParameter> (0);
}
break;
case 958:
case_958();
break;
case 959:
case_959();
break;
case 960:
case_960();
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 396 "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 408 "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 428 "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");
lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
if (lt.Value == QualifiedAliasMember.GlobalAlias) {
RootNamespace.Error_GlobalNamespaceRedefined (report, lt.Location);
}
var na = new UsingExternAlias (new SimpleMemberName (lt.Value, lt.Location), GetLocation (yyVals[-3+yyTop]));
current_namespace.AddUsing (na);
lbag.AddLocation (na, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop]));
}
}
void case_17()
#line 461 "cs-parser.jay"
{
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_18()
#line 469 "cs-parser.jay"
{
var un = new UsingNamespace ((ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
current_namespace.AddUsing (un);
ubag.AddUsing (GetLocation (yyVals[-2+yyTop]), (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop]));
lbag.AddLocation (un, GetLocation (yyVals[0+yyTop]));
}
void case_19()
#line 477 "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");
}
var un = new UsingAliasNamespace (new SimpleMemberName (lt.Value, lt.Location), (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[-4+yyTop]));
current_namespace.AddUsing (un);
ubag.AddUsingAlias (GetLocation (yyVals[-4+yyTop]), lt, GetLocation (yyVals[-2+yyTop]), (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop]));
lbag.AddLocation (un, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop]));
}
void case_20()
#line 491 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_21()
#line 504 "cs-parser.jay"
{
Attributes attrs = (Attributes) yyVals[-2+yyTop];
var 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_22()
#line 535 "cs-parser.jay"
{
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
ubag.OpenNamespace (GetLocation (yyVals[0+yyTop]));
}
void case_23()
#line 541 "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_24()
#line 555 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop];
yyVal = new MemberName (lt.Value, lt.Location);
}
void case_25()
#line 560 "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_26()
#line 567 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new MemberName ("<invalid>", lexer.Location);
}
void case_39()
#line 605 "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_48()
#line 655 "cs-parser.jay"
{
var sect = (List<Attribute>) 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_49()
#line 666 "cs-parser.jay"
{
Attributes attrs = yyVals[-1+yyTop] as Attributes;
var sect = (List<Attribute>) 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_50()
#line 682 "cs-parser.jay"
{
lexer.parsing_attribute_section = true;
savedOpenLocation = GetLocation (yyVals[0+yyTop]);
}
void case_51()
#line 687 "cs-parser.jay"
{
lexer.parsing_attribute_section = false;
yyVal = yyVals[0+yyTop];
}
void case_52()
#line 695 "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_53()
#line 702 "cs-parser.jay"
{
/* when attribute target is invalid*/
if (current_attr_target == string.Empty)
yyVal = new List<Attribute> (0);
else
yyVal = yyVals[-2+yyTop];
current_attr_target = null;
lexer.parsing_attribute_section = false;
if (yyVals[-1+yyTop] != null) {
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) }));
} else {
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop]) }));
}
}
void case_54()
#line 718 "cs-parser.jay"
{
yyVal = yyVals[-2+yyTop];
if (yyVals[-1+yyTop] != null) {
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) }));
} else {
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, GetLocation (yyVals[0+yyTop]) }));
}
}
void case_55()
#line 730 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop];
yyVal = CheckAttributeTarget (lt.Value, lt.Location);
savedCloseLocation = GetLocation (yyVals[0+yyTop]);
}
void case_58()
#line 738 "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_60()
#line 755 "cs-parser.jay"
{
var attrs = (List<Attribute>) yyVals[-2+yyTop];
attrs.Add ((Attribute) yyVals[0+yyTop]);
attributeCommas.Add (GetLocation (yyVals[-1+yyTop]));
yyVal = attrs;
}
void case_62()
#line 770 "cs-parser.jay"
{
--lexer.parsing_block;
var tne = (ATypeNameExpression) yyVals[-2+yyTop];
if (tne.HasTypeArguments) {
report.Error (404, tne.Location, "Attributes cannot be generic");
}
Arguments [] arguments = (Arguments []) yyVals[0+yyTop];
yyVal = new Attribute (current_attr_target, tne, (Arguments[]) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), lexer.IsEscapedIdentifier (tne));
if (arguments != null) {
attributeArgumentCommas.Insert (0, savedAttrParenOpenLocation);
attributeArgumentCommas.Add (savedAttrParenCloseLocation);
lbag.AddLocation (yyVal, attributeArgumentCommas);
attributeArgumentCommas.Clear ();
}
}
void case_65()
#line 796 "cs-parser.jay"
{
savedAttrParenOpenLocation = GetLocation (yyVals[-2+yyTop]);
savedAttrParenCloseLocation = GetLocation (yyVals[0+yyTop]);
yyVal = yyVals[-1+yyTop];
}
void case_67()
#line 807 "cs-parser.jay"
{
Arguments a = new Arguments (4);
a.Add ((Argument) yyVals[0+yyTop]);
yyVal = new Arguments [] { a, null };
}
void case_68()
#line 813 "cs-parser.jay"
{
Arguments a = new Arguments (4);
a.Add ((Argument) yyVals[0+yyTop]);
yyVal = new Arguments [] { null, a };
}
void case_69()
#line 819 "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_70()
#line 834 "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_74()
#line 859 "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_75()
#line 869 "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_93()
#line 922 "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_95()
#line 939 "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_96()
#line 946 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
if (yyVals[0+yyTop] != null)
current_class.SetConstraints ((List<Constraints>) yyVals[0+yyTop]);
if (doc_support)
current_container.DocComment = Lexer.consume_doc_comment ();
lexer.parsing_modifiers = true;
}
void case_97()
#line 959 "cs-parser.jay"
{
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_98()
#line 964 "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_99()
#line 971 "cs-parser.jay"
{
if (yyVals[-1+yyTop] != null)
current_class.OptionalSemicolon = GetLocation (yyVals[-1+yyTop]);
yyVal = pop_current_class ();
}
void case_101()
#line 986 "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_102()
#line 999 "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_107()
#line 1029 "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_109()
#line 1042 "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_110()
#line 1048 "cs-parser.jay"
{
report.Error (145, lexer.Location, "A const field requires a value to be provided");
yyVal = null;
}
void case_113()
#line 1063 "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_114()
#line 1078 "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_115()
#line 1091 "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_116()
#line 1102 "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_119()
#line 1125 "cs-parser.jay"
{
++lexer.parsing_block;
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters;
start_block (GetLocation (yyVals[0+yyTop]));
}
void case_120()
#line 1131 "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_125()
#line 1158 "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_127()
#line 1168 "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_132()
#line 1194 "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_134()
#line 1207 "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_135()
#line 1213 "cs-parser.jay"
{
report.Error (443, lexer.Location, "Value or constant expected");
yyVal = null;
}
void case_138()
#line 1223 "cs-parser.jay"
{
/* It has to be here for the parent to safely restore artificial block*/
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_139()
#line 1232 "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_140()
#line 1242 "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_143()
#line 1282 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
valid_param_mod = 0;
MemberName name = (MemberName) yyVals[-6+yyTop];
current_local_parameters = (ParametersCompiled) yyVals[-3+yyTop];
var method = Method.Create (current_class, (FullNamedExpression) yyVals[-7+yyTop], (Modifiers) yyVals[-8+yyTop],
name, current_local_parameters, (Attributes) yyVals[-9+yyTop], yyVals[0+yyTop] != null);
if (yyVals[0+yyTop] != null)
method.SetConstraints ((List<Constraints>) yyVals[0+yyTop]);
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_145()
#line 1309 "cs-parser.jay"
{
lexer.parsing_generic_declaration = false;
valid_param_mod = ParameterModifierType.All;
}
void case_147()
#line 1318 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
valid_param_mod = 0;
MemberName name = (MemberName) yyVals[-6+yyTop];
current_local_parameters = (ParametersCompiled) yyVals[-3+yyTop];
var modifiers = (Modifiers) yyVals[-10+yyTop];
modifiers |= Modifiers.PARTIAL;
var method = Method.Create (current_class, new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-8+yyTop])),
modifiers, name, current_local_parameters, (Attributes) yyVals[-11+yyTop], yyVals[-1+yyTop] != null);
if (yyVals[-1+yyTop] != null)
method.SetConstraints ((List<Constraints>) yyVals[-1+yyTop]);
if (doc_support)
method.DocComment = Lexer.consume_doc_comment ();
StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[-9+yyTop]));
lbag.AddMember (method, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop]));
yyVal = method;
}
void case_148()
#line 1345 "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, (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_153()
#line 1374 "cs-parser.jay"
{
var pars_list = (List<Parameter>) yyVals[0+yyTop];
yyVal = new ParametersCompiled (pars_list.ToArray ());
lbag.AddLocation (yyVal, parameterListCommas);
}
void case_154()
#line 1380 "cs-parser.jay"
{
var pars_list = (List<Parameter>) 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_155()
#line 1389 "cs-parser.jay"
{
var pars_list = (List<Parameter>) 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_156()
#line 1398 "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_157()
#line 1406 "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<Parameter>) 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_158()
#line 1419 "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_159()
#line 1426 "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<Parameter>) 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_162()
#line 1446 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = ParametersCompiled.EmptyReadOnlyParameters;
}
void case_163()
#line 1454 "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_164()
#line 1463 "cs-parser.jay"
{
var pars = (List<Parameter>) 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_165()
#line 1487 "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_166()
#line 1496 "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_167()
#line 1506 "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_169()
#line 1521 "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_173()
#line 1570 "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_174()
#line 1594 "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_175()
#line 1601 "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_176()
#line 1608 "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_177()
#line 1621 "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_178()
#line 1627 "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_179()
#line 1635 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_180()
#line 1643 "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_181()
#line 1649 "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_183()
#line 1666 "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_184()
#line 1677 "cs-parser.jay"
{
if (doc_support)
tmpComment = Lexer.consume_doc_comment ();
}
void case_185()
#line 1682 "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_186()
#line 1696 "cs-parser.jay"
{
lexer.PropertyParsing = false;
if (doc_support)
current_property.DocComment = ConsumeStoredComment ();
}
void case_187()
#line 1703 "cs-parser.jay"
{
lbag.AppendToMember (current_property, GetLocation (yyVals[0+yyTop]));
current_property = null;
}
void case_189()
#line 1717 "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_191()
#line 1746 "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_196()
#line 1765 "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_197()
#line 1779 "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_198()
#line 1800 "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_199()
#line 1824 "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_200()
#line 1850 "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_202()
#line 1875 "cs-parser.jay"
{
savedLocation = GetLocation (yyVals[0+yyTop]);
yyVal = null;
}
void case_203()
#line 1880 "cs-parser.jay"
{
Error_SyntaxError (1043, yyToken, "Invalid accessor body");
yyVal = null;
}
void case_205()
#line 1895 "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_206()
#line 1902 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
if (yyVals[0+yyTop] != null)
current_class.SetConstraints ((List<Constraints>) yyVals[0+yyTop]);
if (doc_support) {
current_container.DocComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.Allowed;
}
lexer.parsing_modifiers = true;
}
void case_207()
#line 1916 "cs-parser.jay"
{
--lexer.parsing_declaration;
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_208()
#line 1922 "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_224()
#line 1982 "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_228()
#line 2019 "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_230()
#line 2031 "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_255()
#line 2107 "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_257()
#line 2126 "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_258()
#line 2141 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters;
yyVal = new OperatorDeclaration (Operator.OpType.Implicit, null, GetLocation (yyVals[-1+yyTop]));
}
void case_259()
#line 2147 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters;
yyVal = new OperatorDeclaration (Operator.OpType.Explicit, null, GetLocation (yyVals[-1+yyTop]));
}
void case_260()
#line 2157 "cs-parser.jay"
{
Constructor c = (Constructor) yyVals[-1+yyTop];
c.Block = (ToplevelBlock) yyVals[0+yyTop];
if (doc_support)
c.DocComment = ConsumeStoredComment ();
current_local_parameters = null;
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_261()
#line 2174 "cs-parser.jay"
{
if (doc_support) {
tmpComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.Allowed;
}
valid_param_mod = ParameterModifierType.All;
}
void case_262()
#line 2183 "cs-parser.jay"
{
valid_param_mod = 0;
current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop];
var lt = (Tokenizer.LocatedToken) yyVals[-4+yyTop];
var mods = (Modifiers) yyVals[-5+yyTop];
var c = new Constructor (current_class, lt.Value, mods, (Attributes) yyVals[-6+yyTop], current_local_parameters, 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 ());
}
}
current_container.AddConstructor (c);
lbag.AddMember (c, GetModifierLocations (), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop]));
yyVal = c;
/**/
/* start block here, so possible anonymous methods inside*/
/* constructor initializer can get correct parent block*/
/**/
start_block (lexer.Location);
}
void case_263()
#line 2212 "cs-parser.jay"
{
if (yyVals[0+yyTop] != null) {
var c = (Constructor) yyVals[-1+yyTop];
c.Initializer = (ConstructorInitializer) yyVals[0+yyTop];
if (c.IsStatic) {
report.Error (514, c.Location,
"`{0}': static constructor cannot have an explicit `this' or `base' constructor call",
c.GetSignatureForError ());
}
}
yyVal = yyVals[-1+yyTop];
}
void case_269()
#line 2244 "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_271()
#line 2254 "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_272()
#line 2260 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_273()
#line 2268 "cs-parser.jay"
{
if (doc_support) {
tmpComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.NotAllowed;
}
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters;
}
void case_274()
#line 2277 "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_275()
#line 2302 "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.ExplicitInterface != 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_276()
#line 2316 "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_277()
#line 2329 "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_278()
#line 2337 "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_279()
#line 2344 "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_282()
#line 2363 "cs-parser.jay"
{
--lexer.parsing_block;
current_event_field.Initializer = (Expression) yyVals[0+yyTop];
}
void case_287()
#line 2387 "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_289()
#line 2397 "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_290()
#line 2406 "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_294()
#line 2427 "cs-parser.jay"
{
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors",
current_event.GetSignatureForError ());
}
void case_295()
#line 2432 "cs-parser.jay"
{
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors",
current_event.GetSignatureForError ());
}
void case_296()
#line 2437 "cs-parser.jay"
{
report.Error (1055, GetLocation (yyVals[0+yyTop]), "An add or remove accessor expected");
yyVal = null;
}
void case_297()
#line 2445 "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_298()
#line 2457 "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_299()
#line 2473 "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_300()
#line 2485 "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_301()
#line 2501 "cs-parser.jay"
{
report.Error (73, lexer.Location, "An add or remove accessor must have a body");
yyVal = null;
}
void case_303()
#line 2514 "cs-parser.jay"
{
if (doc_support)
enumTypeComment = Lexer.consume_doc_comment ();
}
void case_304()
#line 2519 "cs-parser.jay"
{
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
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[-5+yyTop], MakeName (name), (Attributes) yyVals[-6+yyTop]), null);
if (yyVals[-2+yyTop] != null) {
lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), savedLocation, GetLocation (yyVals[0+yyTop]));
} else {
lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop]));
}
}
void case_305()
#line 2536 "cs-parser.jay"
{
/* here will be evaluated after CLOSE_BLACE is consumed.*/
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_306()
#line 2542 "cs-parser.jay"
{
lbag.AppendToMember (current_class, GetLocation (yyVals[-1+yyTop]));
if (yyVals[0+yyTop] != null) {
current_class.OptionalSemicolon = GetLocation (yyVals[0+yyTop]);
lbag.AppendToMember (current_class, GetLocation (yyVals[0+yyTop]));
}
if (doc_support)
current_class.DocComment = enumTypeComment;
--lexer.parsing_declaration;
yyVal = pop_current_class ();
}
void case_308()
#line 2560 "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 {
savedLocation = GetLocation (yyVals[-1+yyTop]);
yyVal = yyVals[0+yyTop];
}
}
void case_309()
#line 2571 "cs-parser.jay"
{
Error_TypeExpected (GetLocation (yyVals[-1+yyTop]));
yyVal = null;
}
void case_314()
#line 2589 "cs-parser.jay"
{
lbag.AppendToMember (current_class, GetLocation (yyVals[-1+yyTop]));
yyVal = yyVals[0+yyTop];
}
void case_315()
#line 2597 "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_316()
#line 2610 "cs-parser.jay"
{
++lexer.parsing_block;
if (doc_support) {
tmpComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.NotAllowed;
}
}
void case_317()
#line 2618 "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_319()
#line 2643 "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_321()
#line 2665 "cs-parser.jay"
{
if (doc_support) {
current_delegate.DocComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.Allowed;
}
if (yyVals[-2+yyTop] != null)
current_delegate.SetConstraints ((List<Constraints>) 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_323()
#line 2684 "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_325()
#line 2695 "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_327()
#line 2707 "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);
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_328()
#line 2716 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location);
}
void case_330()
#line 2728 "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_331()
#line 2739 "cs-parser.jay"
{
Error_TypeExpected (lexer.Location);
yyVal = new TypeArguments ();
}
void case_332()
#line 2747 "cs-parser.jay"
{
TypeArguments type_args = new TypeArguments ();
type_args.Add ((FullNamedExpression) yyVals[0+yyTop]);
yyVal = type_args;
locationListStack.Push (new List<Location> ());
}
void case_333()
#line 2754 "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_335()
#line 2771 "cs-parser.jay"
{
lexer.parsing_generic_declaration = false;
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop];
yyVal = new MemberName (lt.Value, (TypeParameters)yyVals[0+yyTop], lt.Location);
}
void case_336()
#line 2780 "cs-parser.jay"
{
MemberName mn = (MemberName)yyVals[0+yyTop];
if (mn.TypeParameters != null)
syntax_error (mn.Location, string.Format ("Member `{0}' cannot declare type arguments",
mn.GetSignatureForError ()));
}
void case_338()
#line 2791 "cs-parser.jay"
{
lexer.parsing_generic_declaration = false;
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new MemberName (lt.Value, (TypeParameters) yyVals[0+yyTop], (ATypeNameExpression) yyVals[-2+yyTop], lt.Location);
}
void case_339()
#line 2800 "cs-parser.jay"
{
lexer.parsing_generic_declaration = false;
yyVal = new MemberName (TypeContainer.DefaultIndexerName, GetLocation (yyVals[0+yyTop]));
}
void case_340()
#line 2805 "cs-parser.jay"
{
lexer.parsing_generic_declaration = false;
yyVal = new MemberName (TypeContainer.DefaultIndexerName, null, (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop]));
}
void case_341()
#line 2813 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop];
yyVal = new SimpleName (lt.Value, (TypeArguments) yyVals[-1+yyTop], lt.Location);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_342()
#line 2819 "cs-parser.jay"
{
var lt1 = (Tokenizer.LocatedToken) yyVals[-3+yyTop];
var lt2 = (Tokenizer.LocatedToken) yyVals[-2+yyTop];
yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (TypeArguments) yyVals[-1+yyTop], lt1.Location);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_343()
#line 2827 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop];
yyVal = new MemberAccess ((ATypeNameExpression) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[-1+yyTop], lt.Location);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_345()
#line 2837 "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_346()
#line 2848 "cs-parser.jay"
{
var tparams = new TypeParameters ();
tparams.Add ((TypeParameter)yyVals[0+yyTop]);
yyVal = tparams;
}
void case_347()
#line 2854 "cs-parser.jay"
{
var tparams = (TypeParameters) yyVals[-2+yyTop];
tparams.Add ((TypeParameter)yyVals[0+yyTop]);
yyVal = tparams;
lbag.AddLocation (yyVals[0+yyTop], GetLocation (yyVals[0+yyTop]));
}
void case_348()
#line 2864 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken)yyVals[0+yyTop];
yyVal = new TypeParameter (new MemberName (lt.Value, lt.Location), (Attributes)yyVals[-2+yyTop], (Variance) yyVals[-1+yyTop]);
}
void case_349()
#line 2869 "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 TypeParameter (MemberName.Null, null, Variance.None);
}
void case_354()
#line 2903 "cs-parser.jay"
{
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report);
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop]));
}
void case_356()
#line 2912 "cs-parser.jay"
{
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report);
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop]));
}
void case_358()
#line 2921 "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_361()
#line 2937 "cs-parser.jay"
{
if (yyVals[0+yyTop] != null) {
yyVal = new ComposedCast ((ATypeNameExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
} else {
var sn = yyVals[-1+yyTop] as SimpleName;
if (sn != null && sn.Name == "var")
yyVal = new VarExpr (sn.Location);
else
yyVal = yyVals[-1+yyTop];
}
}
void case_363()
#line 2953 "cs-parser.jay"
{
if (yyVals[0+yyTop] != null)
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]);
}
void case_366()
#line 2969 "cs-parser.jay"
{
var types = new List<FullNamedExpression> (2);
types.Add ((FullNamedExpression) yyVals[0+yyTop]);
yyVal = types;
}
void case_367()
#line 2975 "cs-parser.jay"
{
var types = (List<FullNamedExpression>) yyVals[-2+yyTop];
types.Add ((FullNamedExpression) yyVals[0+yyTop]);
lbag.AppendTo (types, GetLocation (yyVals[-1+yyTop]));
yyVal = types;
}
void case_368()
#line 2985 "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_369()
#line 2992 "cs-parser.jay"
{
Error_TypeExpected (lexer.Location);
yyVal = null;
}
void case_406()
#line 3054 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location);
}
void case_407()
#line 3058 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new CompletionSimpleName (MemberName.MakeName (lt.Value, null), lt.Location);
}
void case_418()
#line 3099 "cs-parser.jay"
{
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop]));
}
void case_420()
#line 3111 "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_421()
#line 3118 "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_422()
#line 3125 "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_423()
#line 3132 "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_425()
#line 3142 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location);
}
void case_427()
#line 3150 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location);
}
void case_428()
#line 3158 "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_431()
#line 3171 "cs-parser.jay"
{
if (yyVals[-1+yyTop] == null) {
yyVal = CollectionOrObjectInitializers.Empty;
/* TODO: lbag*/
} else {
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop]));
}
}
void case_432()
#line 3181 "cs-parser.jay"
{
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-2+yyTop], GetLocation (yyVals[-3+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]));
}
void case_435()
#line 3197 "cs-parser.jay"
{
var a = new List<Expression> ();
a.Add ((Expression) yyVals[0+yyTop]);
yyVal = a;
}
void case_436()
#line 3203 "cs-parser.jay"
{
var a = (List<Expression>)yyVals[-2+yyTop];
a.Add ((Expression) yyVals[0+yyTop]);
lbag.AppendTo (a, GetLocation (yyVals[-1+yyTop]));
yyVal = a;
}
void case_437()
#line 3209 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = yyVals[-1+yyTop];
}
void case_438()
#line 3217 "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_440()
#line 3226 "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_441()
#line 3234 "cs-parser.jay"
{
if (yyVals[-1+yyTop] == null)
yyVal = null;
else
yyVal = new CollectionElementInitializer ((List<Expression>)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
}
void case_442()
#line 3241 "cs-parser.jay"
{
report.Error (1920, GetLocation (yyVals[-1+yyTop]), "An element initializer cannot be empty");
yyVal = null;
}
void case_447()
#line 3259 "cs-parser.jay"
{
Arguments list = new Arguments (4);
list.Add ((Argument) yyVals[0+yyTop]);
yyVal = list;
}
void case_448()
#line 3265 "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_449()
#line 3275 "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_450()
#line 3290 "cs-parser.jay"
{
report.Error (839, GetLocation (yyVals[0+yyTop]), "An argument is missing");
yyVal = yyVals[-1+yyTop];
}
void case_451()
#line 3295 "cs-parser.jay"
{
report.Error (839, GetLocation (yyVals[-1+yyTop]), "An argument is missing");
yyVal = null;
}
void case_456()
#line 3316 "cs-parser.jay"
{
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Ref);
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]));
}
void case_457()
#line 3321 "cs-parser.jay"
{
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Out);
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]));
}
void case_458()
#line 3326 "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_459()
#line 3331 "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_461()
#line 3343 "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_464()
#line 3359 "cs-parser.jay"
{
var list = new List<Expression> (4);
list.Add ((Expression) yyVals[0+yyTop]);
yyVal = list;
}
void case_465()
#line 3365 "cs-parser.jay"
{
var list = (List<Expression>) yyVals[-2+yyTop];
list.Add ((Expression) yyVals[0+yyTop]);
lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop]));
yyVal = list;
}
void case_466()
#line 3371 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = yyVals[-1+yyTop];
}
void case_467()
#line 3379 "cs-parser.jay"
{
Arguments args = new Arguments (4);
args.Add ((Argument) yyVals[0+yyTop]);
yyVal = args;
}
void case_468()
#line 3385 "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_472()
#line 3413 "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_473()
#line 3418 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new ElementAccess (null, null, GetLocation (yyVals[-1+yyTop]));
}
void case_476()
#line 3440 "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_477()
#line 3453 "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_478()
#line 3465 "cs-parser.jay"
{
yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-5+yyTop], (List<Expression>) yyVals[-3+yyTop],
new ComposedTypeSpecifier (((List<Expression>) 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_479()
#line 3473 "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_480()
#line 3480 "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_481()
#line 3487 "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_482()
#line 3492 "cs-parser.jay"
{
Error_SyntaxError (1526, yyToken, "Unexpected symbol");
yyVal = new ArrayCreation ((FullNamedExpression) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]));
}
void case_484()
#line 3503 "cs-parser.jay"
{
--lexer.parsing_type;
yyVal = yyVals[0+yyTop];
}
void case_485()
#line 3511 "cs-parser.jay"
{
if (lang_version <= LanguageVersion.ISO_2)
FeatureIsNotAvailable (GetLocation (yyVals[-3+yyTop]), "anonymous types");
yyVal = new NewAnonymousType ((List<AnonymousTypeParameter>) 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_490()
#line 3534 "cs-parser.jay"
{
var a = new List<AnonymousTypeParameter> (4);
a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]);
yyVal = a;
}
void case_491()
#line 3540 "cs-parser.jay"
{
var a = (List<AnonymousTypeParameter>) yyVals[-2+yyTop];
a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]);
lbag.AppendTo (a, GetLocation (yyVals[-1+yyTop]));
yyVal = a;
}
void case_492()
#line 3551 "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_493()
#line 3557 "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_494()
#line 3563 "cs-parser.jay"
{
MemberAccess ma = (MemberAccess) yyVals[0+yyTop];
yyVal = new AnonymousTypeParameter (ma, ma.Name, ma.Location);
}
void case_495()
#line 3568 "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_499()
#line 3583 "cs-parser.jay"
{
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop];
yyVal = yyVals[-1+yyTop];
}
void case_500()
#line 3591 "cs-parser.jay"
{
yyVal = ComposedTypeSpecifier.CreateArrayDimension (1, GetLocation (yyVals[-1+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_501()
#line 3596 "cs-parser.jay"
{
yyVal = ComposedTypeSpecifier.CreateArrayDimension ((int)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_506()
#line 3626 "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_507()
#line 3633 "cs-parser.jay"
{
var ai = new ArrayInitializer ((List<Expression>) 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_508()
#line 3647 "cs-parser.jay"
{
var list = new List<Expression> (4);
list.Add ((Expression) yyVals[0+yyTop]);
yyVal = list;
}
void case_509()
#line 3653 "cs-parser.jay"
{
var list = (List<Expression>) yyVals[-2+yyTop];
list.Add ((Expression) yyVals[0+yyTop]);
lbag.AppendTo (list, GetLocation (yyVals[-1+yyTop]));
yyVal = list;
}
void case_511()
#line 3667 "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_514()
#line 3678 "cs-parser.jay"
{
Error_TypeExpected (lexer.Location);
yyVal = null;
}
void case_515()
#line 3686 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new SimpleName (lt.Value, (int) yyVals[0+yyTop], lt.Location);
}
void case_516()
#line 3692 "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_517()
#line 3700 "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_518()
#line 3708 "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_519()
#line 3716 "cs-parser.jay"
{
var tne = (ATypeNameExpression) yyVals[-3+yyTop];
if (tne.HasTypeArguments)
Error_TypeExpected (GetLocation (yyVals[0+yyTop]));
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new MemberAccess (tne, lt.Value, (int) yyVals[0+yyTop], lt.Location) {
DotLocation = GetLocation (yyVals[-2+yyTop])
};
}
void case_520()
#line 3730 "cs-parser.jay"
{
if (lang_version < LanguageVersion.ISO_2)
FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "generics");
yyVal = yyVals[0+yyTop];
}
void case_521()
#line 3740 "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_522()
#line 3751 "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_523()
#line 3759 "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_524()
#line 3767 "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_525()
#line 3775 "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_527()
#line 3787 "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_529()
#line 3800 "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_533()
#line 3825 "cs-parser.jay"
{
valid_param_mod = 0;
yyVal = yyVals[-1+yyTop];
savedOpenLocation = GetLocation (yyVals[-3+yyTop]);
savedCloseLocation = GetLocation (yyVals[-2+yyTop]);
}
void case_534()
#line 3835 "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_538()
#line 3855 "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_539()
#line 3860 "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_548()
#line 3907 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Multiply,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_549()
#line 3912 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Division,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_550()
#line 3917 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Modulus,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_552()
#line 3926 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Addition,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_554()
#line 3935 "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_558()
#line 3952 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.LeftShift,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_559()
#line 3957 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.RightShift,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_561()
#line 3966 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.LessThan,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_562()
#line 3971 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.GreaterThan,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_563()
#line 3976 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.LessThanOrEqual,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_564()
#line 3981 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.GreaterThanOrEqual,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_566()
#line 3990 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Equality,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_567()
#line 3995 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.Inequality,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_569()
#line 4004 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.BitwiseAnd,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_571()
#line 4013 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.ExclusiveOr,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_573()
#line 4022 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.BitwiseOr,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_575()
#line 4031 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.LogicalAnd,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_577()
#line 4040 "cs-parser.jay"
{
yyVal = new Binary (Binary.Operator.LogicalOr,
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_579()
#line 4049 "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_581()
#line 4060 "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_583()
#line 4072 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_584()
#line 4077 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_585()
#line 4082 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_586()
#line 4087 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_587()
#line 4092 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_588()
#line 4097 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_589()
#line 4102 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_590()
#line 4107 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_591()
#line 4112 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_592()
#line 4117 "cs-parser.jay"
{
yyVal = new CompoundAssign (
Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop]));
}
void case_593()
#line 4125 "cs-parser.jay"
{
var pars = new List<Parameter> (4);
pars.Add ((Parameter) yyVals[0+yyTop]);
parameterListCommas.Clear ();
yyVal = pars;
}
void case_594()
#line 4132 "cs-parser.jay"
{
var pars = (List<Parameter>) 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_595()
#line 4148 "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_596()
#line 4154 "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_597()
#line 4160 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop];
yyVal = new ImplicitLambdaParameter (lt.Value, lt.Location);
}
void case_599()
#line 4168 "cs-parser.jay"
{
var pars_list = (List<Parameter>) yyVals[0+yyTop];
yyVal = new ParametersCompiled (pars_list.ToArray ());
lbag.AddLocation (yyVal, parameterListCommas);
}
void case_603()
#line 4185 "cs-parser.jay"
{
Block b = end_block (lexer.Location);
b.IsCompilerGenerated = true;
b.AddStatement (new ContextualReturn ((Expression) yyVals[0+yyTop]));
yyVal = b;
}
void case_605()
#line 4196 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = EmptyExpression.Null;
}
void case_606()
#line 4204 "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_607()
#line 4210 "cs-parser.jay"
{
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_608()
#line 4215 "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_609()
#line 4221 "cs-parser.jay"
{
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop]));
}
void case_611()
#line 4230 "cs-parser.jay"
{
valid_param_mod = 0;
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], false, GetLocation (yyVals[-4+yyTop]));
}
void case_612()
#line 4235 "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_614()
#line 4244 "cs-parser.jay"
{
valid_param_mod = 0;
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], true, GetLocation (yyVals[-5+yyTop]));
}
void case_615()
#line 4249 "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_622()
#line 4272 "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_623()
#line 4277 "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_624()
#line 4282 "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_628()
#line 4311 "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]);
}
void case_629()
#line 4322 "cs-parser.jay"
{
lexer.ConstraintsParsing = false;
if (yyVals[0+yyTop] != null)
current_class.SetConstraints ((List<Constraints>) yyVals[0+yyTop]);
lbag.AddMember (current_class, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]));
if (doc_support) {
current_container.DocComment = Lexer.consume_doc_comment ();
Lexer.doc_state = XmlCommentState.Allowed;
}
lexer.parsing_modifiers = true;
}
void case_630()
#line 4337 "cs-parser.jay"
{
--lexer.parsing_declaration;
if (doc_support)
Lexer.doc_state = XmlCommentState.Allowed;
}
void case_631()
#line 4343 "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_634()
#line 4360 "cs-parser.jay"
{
mod_locations = null;
yyVal = ModifierNone;
lexer.parsing_modifiers = false;
}
void case_637()
#line 4374 "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_638()
#line 4393 "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_639()
#line 4401 "cs-parser.jay"
{
yyVal = Modifiers.PUBLIC;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_640()
#line 4406 "cs-parser.jay"
{
yyVal = Modifiers.PROTECTED;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_641()
#line 4411 "cs-parser.jay"
{
yyVal = Modifiers.INTERNAL;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_642()
#line 4416 "cs-parser.jay"
{
yyVal = Modifiers.PRIVATE;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_643()
#line 4421 "cs-parser.jay"
{
yyVal = Modifiers.ABSTRACT;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_644()
#line 4426 "cs-parser.jay"
{
yyVal = Modifiers.SEALED;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_645()
#line 4431 "cs-parser.jay"
{
yyVal = Modifiers.STATIC;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_646()
#line 4436 "cs-parser.jay"
{
yyVal = Modifiers.READONLY;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_647()
#line 4441 "cs-parser.jay"
{
yyVal = Modifiers.VIRTUAL;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_648()
#line 4446 "cs-parser.jay"
{
yyVal = Modifiers.OVERRIDE;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_649()
#line 4451 "cs-parser.jay"
{
yyVal = Modifiers.EXTERN;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_650()
#line 4456 "cs-parser.jay"
{
yyVal = Modifiers.VOLATILE;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_651()
#line 4461 "cs-parser.jay"
{
yyVal = Modifiers.UNSAFE;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
if (!settings.Unsafe)
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop]));
}
void case_652()
#line 4468 "cs-parser.jay"
{
yyVal = Modifiers.ASYNC;
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_654()
#line 4477 "cs-parser.jay"
{
lbag.AppendToMember (current_class, GetLocation (yyVals[-1+yyTop]));
current_container.AddBasesForPart (current_class, (List<FullNamedExpression>) yyVals[0+yyTop]);
}
void case_657()
#line 4490 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_658()
#line 4498 "cs-parser.jay"
{
var constraints = new List<Constraints> (1);
constraints.Add ((Constraints) yyVals[0+yyTop]);
yyVal = constraints;
}
void case_659()
#line 4504 "cs-parser.jay"
{
var constraints = (List<Constraints>) 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_660()
#line 4523 "cs-parser.jay"
{
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop];
yyVal = new Constraints (new SimpleMemberName (lt.Value, lt.Location), (List<FullNamedExpression>) yyVals[0+yyTop], GetLocation (yyVals[-3+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]));
}
void case_661()
#line 4532 "cs-parser.jay"
{
var constraints = new List<FullNamedExpression> (1);
constraints.Add ((FullNamedExpression) yyVals[0+yyTop]);
yyVal = constraints;
}
void case_662()
#line 4538 "cs-parser.jay"
{
var constraints = (List<FullNamedExpression>) 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_663()
#line 4565 "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_664()
#line 4572 "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_668()
#line 4592 "cs-parser.jay"
{
if (lang_version <= LanguageVersion.V_3)
FeatureIsNotAvailable (lexer.Location, "generic type variance");
yyVal = yyVals[0+yyTop];
}
void case_669()
#line 4602 "cs-parser.jay"
{
yyVal = Variance.Covariant;
savedLocation = GetLocation (yyVals[0+yyTop]);
}
void case_670()
#line 4607 "cs-parser.jay"
{
yyVal = Variance.Contravariant;
savedLocation = GetLocation (yyVals[0+yyTop]);
}
void case_671()
#line 4628 "cs-parser.jay"
{
++lexer.parsing_block;
start_block (GetLocation (yyVals[0+yyTop]));
}
void case_673()
#line 4640 "cs-parser.jay"
{
--lexer.parsing_block;
yyVal = end_block (GetLocation (yyVals[0+yyTop]));
}
void case_674()
#line 4645 "cs-parser.jay"
{
--lexer.parsing_block;
yyVal = end_block (lexer.Location);
}
void case_675()
#line 4654 "cs-parser.jay"
{
++lexer.parsing_block;
current_block.StartLocation = GetLocation (yyVals[0+yyTop]);
}
void case_676()
#line 4659 "cs-parser.jay"
{
--lexer.parsing_block;
yyVal = end_block (GetLocation (yyVals[0+yyTop]));
}
void case_684()
#line 4687 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
var lt =(Tokenizer.LocatedToken) yyVals[-1+yyTop];
var sn = new SimpleName (lt.Value, lt.Location);
current_block.AddStatement(new StatementErrorExpression (sn));
yyVal = null;
}
void case_685()
#line 4696 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_718()
#line 4760 "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_719()
#line 4765 "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_720()
#line 4770 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop]));
}
void case_721()
#line 4778 "cs-parser.jay"
{
/* Uses lexer.Location because semicolon location is not kept in quick mode*/
yyVal = new EmptyStatement (lexer.Location);
}
void case_722()
#line 4786 "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_725()
#line 4799 "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_726()
#line 4815 "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_727()
#line 4845 "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_728()
#line 4856 "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_731()
#line 4871 "cs-parser.jay"
{
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report);
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop]));
}
void case_733()
#line 4880 "cs-parser.jay"
{
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop];
yyVal = yyVals[-1+yyTop];
}
void case_736()
#line 4896 "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_737()
#line 4906 "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_738()
#line 4913 "cs-parser.jay"
{
yyVal = current_variable;
current_variable = null;
lbag.AppendTo (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_739()
#line 4919 "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_740()
#line 4926 "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_742()
#line 4940 "cs-parser.jay"
{
current_variable.Initializer = (Expression) yyVals[0+yyTop];
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop]));
}
void case_743()
#line 4945 "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");
current_variable.Initializer = ErrorExpression.Create (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);
current_variable.Initializer = ErrorExpression.Create (0, lexer.Location,
"Syntax error");
}
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop]));
}
void case_744()
#line 4959 "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_748()
#line 4977 "cs-parser.jay"
{
foreach (var d in current_variable.Declarators) {
if (d.Initializer == null)
Error_MissingInitializer (d.Variable.Location);
}
}
void case_751()
#line 4992 "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_752()
#line 5001 "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_754()
#line 5017 "cs-parser.jay"
{
savedLocation = GetLocation (yyVals[-1+yyTop]);
current_variable.Initializer = (Expression) yyVals[0+yyTop];
}
void case_759()
#line 5035 "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_761()
#line 5048 "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_762()
#line 5053 "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_763()
#line 5061 "cs-parser.jay"
{
yyVal = yyVals[-1+yyTop];
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_767()
#line 5079 "cs-parser.jay"
{
ExpressionStatement s = yyVals[0+yyTop] as ExpressionStatement;
if (s == null) {
Expression.Error_InvalidExpressionStatement (report, GetLocation (yyVals[0+yyTop]));
yyVal = new StatementErrorExpression (yyVals[0+yyTop] as Expression);
} else {
yyVal = new StatementExpression (s);
}
}
void case_768()
#line 5092 "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_769()
#line 5100 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop]));
}
void case_772()
#line 5114 "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_773()
#line 5123 "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_774()
#line 5133 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new If ((BooleanExpression) yyVals[-1+yyTop], null, GetLocation (yyVals[-3+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_776()
#line 5147 "cs-parser.jay"
{
yyVal = new Switch ((Expression) yyVals[-5+yyTop], (ExplicitBlock) current_block.Explicit, (List<SwitchSection>) 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 5153 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new Switch ((Expression) yyVals[-1+yyTop], null, null, GetLocation (yyVals[-3+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_778()
#line 5163 "cs-parser.jay"
{
report.Warning (1522, 1, current_block.StartLocation, "Empty switch block");
yyVal = new List<SwitchSection> ();
}
void case_780()
#line 5172 "cs-parser.jay"
{
var sections = new List<SwitchSection> (4);
sections.Add ((SwitchSection) yyVals[0+yyTop]);
yyVal = sections;
}
void case_781()
#line 5179 "cs-parser.jay"
{
var sections = (List<SwitchSection>) yyVals[-1+yyTop];
sections.Add ((SwitchSection) yyVals[0+yyTop]);
yyVal = sections;
}
void case_782()
#line 5186 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new List<SwitchSection> ();
}
void case_785()
#line 5205 "cs-parser.jay"
{
var labels = new List<SwitchLabel> (2);
labels.Add ((SwitchLabel) yyVals[0+yyTop]);
yyVal = labels;
}
void case_786()
#line 5212 "cs-parser.jay"
{
var labels = (List<SwitchLabel>) (yyVals[-1+yyTop]);
labels.Add ((SwitchLabel) yyVals[0+yyTop]);
yyVal = labels;
}
void case_787()
#line 5222 "cs-parser.jay"
{
yyVal = new SwitchLabel ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_793()
#line 5241 "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_794()
#line 5249 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new While ((BooleanExpression) yyVals[-1+yyTop], null, GetLocation (yyVals[-3+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_795()
#line 5259 "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_796()
#line 5264 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new Do ((Statement) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]));
}
void case_797()
#line 5269 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new Do ((Statement) yyVals[-4+yyTop], (BooleanExpression) yyVals[-1+yyTop], GetLocation (yyVals[-5+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop]));
}
void case_798()
#line 5279 "cs-parser.jay"
{
start_block (GetLocation (yyVals[0+yyTop]));
current_block.IsCompilerGenerated = true;
For f = new For (GetLocation (yyVals[-1+yyTop]));
current_block.AddStatement (f);
yyVal = f;
}
void case_803()
#line 5307 "cs-parser.jay"
{
if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE)
Warning_EmptyStatement (GetLocation (yyVals[0+yyTop]));
For f = ((For) yyVals[-10+yyTop]);
f.Statement = (Statement) yyVals[0+yyTop];
lbag.AddStatement (f, current_block.StartLocation, GetLocation (yyVals[-8+yyTop]), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop]));
yyVal = end_block (GetLocation (yyVals[-8+yyTop]));
}
void case_804()
#line 5318 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = end_block (current_block.StartLocation);
}
void case_807()
#line 5331 "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_808()
#line 5338 "cs-parser.jay"
{
yyVal = current_variable;
current_variable = null;
}
void case_816()
#line 5362 "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_817()
#line 5378 "cs-parser.jay"
{
report.Error (230, GetLocation (yyVals[-3+yyTop]), "Type and identifier are both required in a foreach statement");
start_block (GetLocation (yyVals[-2+yyTop]));
current_block.IsCompilerGenerated = true;
Foreach f = new Foreach ((Expression) yyVals[-1+yyTop], null, null, null, GetLocation (yyVals[-3+yyTop]));
current_block.AddStatement (f);
lbag.AddStatement (f, GetLocation (yyVals[-2+yyTop]));
yyVal = end_block (GetLocation (yyVals[0+yyTop]));
}
void case_818()
#line 5391 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
start_block (GetLocation (yyVals[-3+yyTop]));
current_block.IsCompilerGenerated = true;
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
var li = new LocalVariable (current_block, lt.Value, LocalVariable.Flags.ForeachVariable | LocalVariable.Flags.Used, lt.Location);
current_block.AddLocalName (li);
Foreach f = new Foreach ((Expression) yyVals[-2+yyTop], li, null, null, GetLocation (yyVals[-4+yyTop]));
current_block.AddStatement (f);
lbag.AddStatement (f, GetLocation (yyVals[-3+yyTop]));
yyVal = end_block (GetLocation (yyVals[0+yyTop]));
}
void case_819()
#line 5408 "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_820()
#line 5417 "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_821()
#line 5428 "cs-parser.jay"
{
start_block (GetLocation (yyVals[-3+yyTop]));
current_block.IsCompilerGenerated = true;
var lt = yyVals[-1+yyTop] as Tokenizer.LocatedToken;
var li = lt != null ? new LocalVariable (current_block, lt.Value, LocalVariable.Flags.ForeachVariable | LocalVariable.Flags.Used, lt.Location) : null;
Foreach f = new Foreach ((Expression) yyVals[-2+yyTop], li, null, null, GetLocation (yyVals[-4+yyTop]));
current_block.AddStatement (f);
lbag.AddStatement (f, GetLocation (yyVals[-3+yyTop]));
yyVal = end_block (GetLocation (yyVals[0+yyTop]));
}
void case_822()
#line 5441 "cs-parser.jay"
{
Foreach f = new Foreach ((Expression) yyVals[-1+yyTop], null, null, null, GetLocation (yyVals[-3+yyTop]));
current_block.AddStatement (f);
lbag.AddStatement (f, GetLocation (yyVals[-2+yyTop]));
yyVal = f;
}
void case_829()
#line 5461 "cs-parser.jay"
{
yyVal = new Break (GetLocation (yyVals[-1+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_830()
#line 5469 "cs-parser.jay"
{
yyVal = new Continue (GetLocation (yyVals[-1+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_831()
#line 5477 "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_832()
#line 5483 "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_833()
#line 5488 "cs-parser.jay"
{
yyVal = new GotoDefault (GetLocation (yyVals[-2+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]));
}
void case_834()
#line 5496 "cs-parser.jay"
{
yyVal = new Return ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_835()
#line 5504 "cs-parser.jay"
{
yyVal = new Throw ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_836()
#line 5512 "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_837()
#line 5528 "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_841()
#line 5554 "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_842()
#line 5559 "cs-parser.jay"
{
yyVal = new TryFinally (new TryCatch ((Block) yyVals[-3+yyTop], (List<Catch>) 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_843()
#line 5564 "cs-parser.jay"
{
Error_SyntaxError (1524, yyToken);
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]), false);
}
void case_844()
#line 5572 "cs-parser.jay"
{
var l = new List<Catch> (2);
l.Add ((Catch) yyVals[0+yyTop]);
yyVal = l;
}
void case_845()
#line 5579 "cs-parser.jay"
{
var l = (List<Catch>) yyVals[-1+yyTop];
Catch c = (Catch) yyVals[0+yyTop];
if (l [l.Count - 1].IsGeneral) {
report.Error (1017, c.loc, "Try statement already has an empty catch block");
}
l.Add (c);
yyVal = l;
}
void case_849()
#line 5603 "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_851()
#line 5622 "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_854()
#line 5650 "cs-parser.jay"
{
if (!settings.Unsafe)
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop]));
}
void case_856()
#line 5660 "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_857()
#line 5668 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new Lock ((Expression) yyVals[-1+yyTop], null, GetLocation (yyVals[-3+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_858()
#line 5678 "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_859()
#line 5688 "cs-parser.jay"
{
yyVal = current_variable;
current_variable = null;
}
void case_860()
#line 5693 "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_861()
#line 5706 "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_862()
#line 5716 "cs-parser.jay"
{
yyVal = current_variable;
current_variable = null;
}
void case_863()
#line 5721 "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_864()
#line 5731 "cs-parser.jay"
{
if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE)
Warning_EmptyStatement (GetLocation (yyVals[0+yyTop]));
yyVal = new Using ((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_865()
#line 5739 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = new Using ((Expression) yyVals[-1+yyTop], null, GetLocation (yyVals[-3+yyTop]));
lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
}
void case_867()
#line 5750 "cs-parser.jay"
{
/* It has to be here for the parent to safely restore artificial block*/
Error_SyntaxError (yyToken);
}
void case_869()
#line 5762 "cs-parser.jay"
{
current_variable.Initializer = (Expression) yyVals[0+yyTop];
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop]));
yyVal = current_variable;
}
void case_870()
#line 5774 "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_871()
#line 5786 "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_872()
#line 5797 "cs-parser.jay"
{
lexer.query_parsing = false;
yyVal = yyVals[-1+yyTop];
current_block.SetEndLocation (lexer.Location);
current_block = current_block.Parent;
}
void case_873()
#line 5804 "cs-parser.jay"
{
yyVal = yyVals[-1+yyTop];
current_block.SetEndLocation (lexer.Location);
current_block = current_block.Parent;
}
void case_874()
#line 5813 "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_875()
#line 5821 "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_876()
#line 5836 "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_877()
#line 5844 "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_879()
#line 5863 "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_881()
#line 5878 "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_882()
#line 5895 "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_884()
#line 5911 "cs-parser.jay"
{
Error_SyntaxError (yyToken);
yyVal = null;
}
void case_886()
#line 5923 "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_887()
#line 5930 "cs-parser.jay"
{
if (linq_clause_blocks == null)
linq_clause_blocks = new Stack<Linq.QueryBlock> ();
current_block = new Linq.QueryBlock (current_block, lexer.Location);
linq_clause_blocks.Push ((Linq.QueryBlock)current_block);
}
void case_888()
#line 5938 "cs-parser.jay"
{
current_block.SetEndLocation (lexer.Location);
current_block = current_block.Parent;
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
void case_889()
#line 5945 "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_893()
#line 5962 "cs-parser.jay"
{
((Linq.AQueryClause)yyVals[-1+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop];
yyVal = yyVals[-1+yyTop];
}
void case_900()
#line 5982 "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_902()
#line 6001 "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_903()
#line 6011 "cs-parser.jay"
{
if (linq_clause_blocks == null)
linq_clause_blocks = new Stack<Linq.QueryBlock> ();
current_block = new Linq.QueryBlock (current_block, lexer.Location);
linq_clause_blocks.Push ((Linq.QueryBlock) current_block);
}
void case_904()
#line 6019 "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_905()
#line 6027 "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_906()
#line 6035 "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_907()
#line 6073 "cs-parser.jay"
{
if (linq_clause_blocks == null)
linq_clause_blocks = new Stack<Linq.QueryBlock> ();
current_block = new Linq.QueryBlock (current_block, lexer.Location);
linq_clause_blocks.Push ((Linq.QueryBlock) current_block);
}
void case_908()
#line 6081 "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_909()
#line 6089 "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_910()
#line 6097 "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_914()
#line 6152 "cs-parser.jay"
{
current_block.SetEndLocation (lexer.Location);
current_block = current_block.Parent;
yyVal = yyVals[0+yyTop];
}
void case_916()
#line 6163 "cs-parser.jay"
{
current_block.SetEndLocation (lexer.Location);
current_block = current_block.Parent;
current_block = new Linq.QueryBlock (current_block, lexer.Location);
}
void case_917()
#line 6170 "cs-parser.jay"
{
((Linq.AQueryClause)yyVals[-3+yyTop]).Next = (Linq.AQueryClause)yyVals[0+yyTop];
yyVal = yyVals[-3+yyTop];
}
void case_919()
#line 6179 "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_920()
#line 6186 "cs-parser.jay"
{
((Linq.AQueryClause)yyVals[-3+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop];
yyVal = yyVals[-3+yyTop];
}
void case_922()
#line 6198 "cs-parser.jay"
{
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_923()
#line 6203 "cs-parser.jay"
{
yyVal = new Linq.OrderByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_925()
#line 6215 "cs-parser.jay"
{
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_926()
#line 6220 "cs-parser.jay"
{
yyVal = new Linq.ThenByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]);
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop]));
}
void case_928()
#line 6230 "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.QueryBlock> ();
linq_clause_blocks.Push ((Linq.QueryBlock) current_block);
}
void case_929()
#line 6246 "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_932()
#line 6273 "cs-parser.jay"
{
current_container = new Class (current_namespace, current_class, new MemberName ("<InteractiveExpressionClass>"), 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,
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_933()
#line 6302 "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_943()
#line 6345 "cs-parser.jay"
{
module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-1+yyTop];
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop];
yyVal = null;
}
void case_944()
#line 6351 "cs-parser.jay"
{
module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-3+yyTop];
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop];
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop];
yyVal = new MemberName (lt.Value);
}
void case_947()
#line 6366 "cs-parser.jay"
{
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[-1+yyTop];
yyVal = new MemberName ((MemberName) yyVals[-6+yyTop], MemberCache.IndexerNameAlias, Location.Null);
}
void case_948()
#line 6371 "cs-parser.jay"
{
var p = (List<DocumentationParameter>)yyVals[0+yyTop] ?? new List<DocumentationParameter> (1);
p.Add (new DocumentationParameter ((FullNamedExpression) yyVals[-1+yyTop]));
module.DocumentationBuilder.ParsedParameters = p;
module.DocumentationBuilder.ParsedOperator = Operator.OpType.Explicit;
yyVal = null;
}
void case_949()
#line 6379 "cs-parser.jay"
{
var p = (List<DocumentationParameter>)yyVals[0+yyTop] ?? new List<DocumentationParameter> (1);
p.Add (new DocumentationParameter ((FullNamedExpression) yyVals[-1+yyTop]));
module.DocumentationBuilder.ParsedParameters = p;
module.DocumentationBuilder.ParsedOperator = Operator.OpType.Implicit;
yyVal = null;
}
void case_950()
#line 6387 "cs-parser.jay"
{
var p = (List<DocumentationParameter>)yyVals[0+yyTop] ?? new List<DocumentationParameter> (1);
module.DocumentationBuilder.ParsedParameters = p;
module.DocumentationBuilder.ParsedOperator = (Operator.OpType) yyVals[-1+yyTop];
yyVal = null;
}
void case_958()
#line 6425 "cs-parser.jay"
{
var parameters = new List<DocumentationParameter> ();
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]);
yyVal = parameters;
}
void case_959()
#line 6431 "cs-parser.jay"
{
var parameters = yyVals[-2+yyTop] as List<DocumentationParameter>;
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]);
yyVal = parameters;
}
void case_960()
#line 6440 "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, 15, 15, 15,
19, 20, 17, 18, 18, 18, 22, 22, 23, 23,
7, 7, 6, 6, 21, 21, 8, 8, 24, 24,
25, 25, 25, 25, 25, 9, 9, 10, 10, 33,
31, 36, 32, 32, 34, 34, 34, 34, 35, 35,
40, 37, 38, 39, 39, 41, 41, 41, 41, 41,
42, 42, 46, 43, 45, 48, 48, 48, 49, 49,
50, 50, 51, 51, 51, 51, 51, 51, 51, 51,
51, 51, 51, 64, 66, 68, 69, 70, 27, 27,
73, 52, 74, 74, 75, 75, 76, 78, 72, 72,
77, 77, 83, 53, 87, 53, 53, 82, 90, 82,
84, 84, 91, 91, 92, 93, 92, 88, 88, 94,
94, 95, 96, 86, 86, 89, 89, 89, 99, 54,
102, 103, 97, 104, 105, 106, 97, 97, 98, 98,
101, 101, 109, 109, 109, 109, 109, 109, 109, 109,
109, 109, 110, 110, 113, 113, 113, 116, 113, 114,
114, 117, 117, 118, 118, 118, 111, 111, 111, 119,
119, 119, 112, 121, 123, 124, 55, 126, 127, 128,
57, 122, 122, 122, 122, 122, 132, 129, 133, 130,
131, 131, 131, 134, 135, 136, 138, 28, 28, 137,
137, 139, 139, 140, 140, 140, 140, 140, 140, 140,
140, 140, 143, 58, 142, 142, 144, 144, 147, 141,
141, 146, 146, 146, 146, 146, 146, 146, 146, 146,
146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
146, 146, 146, 149, 148, 150, 148, 148, 148, 59,
153, 155, 151, 152, 152, 154, 154, 159, 157, 160,
157, 157, 161, 60, 163, 56, 166, 167, 56, 162,
169, 162, 164, 164, 170, 170, 171, 172, 171, 173,
168, 165, 165, 165, 165, 165, 177, 174, 178, 175,
176, 176, 180, 182, 183, 29, 179, 179, 179, 181,
181, 181, 184, 184, 185, 186, 185, 187, 188, 189,
30, 190, 190, 16, 16, 191, 191, 194, 193, 193,
193, 195, 195, 197, 63, 120, 100, 100, 125, 125,
198, 198, 198, 196, 196, 199, 199, 200, 200, 202,
202, 81, 71, 71, 85, 85, 115, 115, 145, 145,
203, 203, 203, 203, 203, 207, 207, 208, 208, 206,
206, 206, 206, 206, 206, 206, 209, 209, 209, 209,
209, 209, 209, 209, 209, 210, 210, 210, 210, 210,
210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
210, 210, 210, 210, 210, 211, 211, 211, 212, 212,
212, 232, 232, 233, 233, 234, 234, 214, 214, 231,
231, 231, 231, 231, 231, 231, 231, 216, 235, 235,
236, 236, 237, 237, 239, 239, 239, 240, 240, 240,
240, 240, 241, 241, 158, 158, 245, 245, 245, 245,
245, 247, 247, 246, 246, 248, 248, 248, 248, 249,
217, 217, 217, 244, 244, 244, 250, 250, 251, 251,
218, 219, 219, 220, 221, 222, 222, 213, 213, 213,
213, 213, 256, 252, 223, 257, 257, 258, 258, 259,
259, 260, 260, 260, 260, 253, 253, 204, 204, 255,
255, 261, 261, 254, 254, 80, 80, 262, 262, 263,
224, 264, 264, 264, 265, 265, 265, 265, 265, 266,
192, 225, 226, 227, 228, 268, 229, 269, 229, 267,
267, 271, 270, 215, 272, 272, 272, 272, 272, 273,
273, 273, 273, 273, 273, 273, 274, 274, 274, 274,
275, 275, 275, 275, 275, 275, 276, 276, 276, 277,
277, 277, 277, 277, 278, 278, 278, 279, 279, 280,
280, 281, 281, 282, 282, 283, 283, 284, 284, 285,
285, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 287, 287, 288, 288, 288, 289, 289, 290,
290, 293, 291, 292, 292, 295, 294, 296, 294, 297,
298, 294, 299, 300, 294, 44, 44, 242, 242, 242,
242, 230, 230, 230, 79, 302, 303, 304, 305, 306,
26, 62, 62, 61, 61, 107, 107, 307, 307, 307,
307, 307, 307, 307, 307, 307, 307, 307, 307, 307,
307, 307, 65, 65, 67, 67, 67, 308, 308, 309,
310, 310, 311, 311, 311, 311, 201, 201, 312, 312,
314, 108, 315, 315, 316, 156, 313, 313, 317, 317,
318, 318, 318, 318, 318, 322, 322, 323, 323, 323,
320, 320, 320, 320, 320, 320, 320, 320, 320, 320,
320, 320, 320, 324, 324, 324, 324, 324, 324, 324,
324, 324, 324, 324, 324, 324, 338, 338, 338, 338,
325, 339, 321, 340, 340, 341, 341, 341, 341, 341,
341, 205, 205, 342, 47, 47, 344, 319, 347, 319,
343, 343, 343, 343, 345, 345, 351, 351, 350, 350,
352, 352, 346, 346, 348, 348, 353, 353, 354, 349,
349, 349, 326, 326, 337, 337, 355, 356, 356, 327,
327, 357, 357, 357, 360, 358, 358, 359, 359, 361,
361, 361, 364, 362, 363, 363, 365, 365, 328, 328,
328, 328, 366, 366, 367, 367, 367, 371, 368, 374,
376, 377, 370, 370, 372, 372, 379, 378, 378, 373,
373, 375, 375, 381, 380, 380, 369, 369, 382, 369,
369, 369, 329, 329, 329, 329, 329, 329, 383, 384,
385, 385, 385, 386, 387, 388, 388, 389, 389, 330,
330, 330, 330, 390, 390, 392, 392, 391, 393, 391,
391, 331, 332, 394, 335, 333, 333, 396, 397, 336,
399, 400, 334, 334, 334, 398, 398, 395, 395, 301,
301, 301, 301, 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, 243, 243, 238, 238,
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, 3, 5, 2,
0, 0, 11, 1, 3, 1, 0, 1, 0, 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, 12, 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, 2, 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, 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, 4, 0, 8, 4, 0, 1, 1,
2, 1, 0, 3, 1, 2, 3, 1, 1, 1,
1, 1, 5, 4, 7, 3, 6, 0, 4, 0,
0, 0, 10, 1, 0, 1, 0, 5, 1, 0,
1, 0, 1, 1, 1, 3, 4, 5, 0, 9,
5, 4, 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, 4, 0, 0, 10,
0, 0, 9, 5, 4, 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, 930, 0, 0, 934, 0,
0, 15, 17, 372, 378, 385, 373, 375, 0, 374,
0, 381, 383, 370, 0, 377, 379, 371, 382, 384,
380, 334, 951, 0, 376, 941, 0, 10, 1, 0,
0, 0, 12, 0, 769, 0, 0, 0, 0, 0,
0, 0, 0, 413, 0, 0, 0, 0, 0, 0,
0, 411, 0, 0, 0, 471, 0, 412, 0, 510,
0, 854, 0, 0, 0, 621, 0, 0, 0, 0,
0, 0, 0, 671, 0, 721, 0, 0, 0, 0,
0, 0, 0, 0, 410, 0, 610, 0, 768, 0,
704, 0, 0, 0, 0, 387, 388, 0, 390, 391,
392, 393, 394, 395, 396, 397, 398, 399, 400, 401,
402, 403, 404, 405, 408, 409, 617, 540, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
618, 616, 619, 620, 688, 690, 0, 686, 689, 705,
707, 708, 709, 710, 711, 712, 713, 714, 715, 716,
706, 0, 0, 0, 770, 771, 789, 790, 791, 792,
823, 824, 825, 826, 827, 828, 0, 0, 0, 20,
0, 0, 324, 0, 326, 938, 16, 931, 0, 0,
237, 236, 233, 238, 239, 232, 251, 250, 243, 244,
240, 242, 241, 245, 234, 235, 246, 247, 253, 252,
248, 249, 0, 0, 954, 0, 943, 0, 942, 3,
50, 0, 0, 0, 40, 37, 39, 41, 42, 43,
44, 45, 48, 13, 0, 0, 0, 829, 414, 415,
852, 0, 0, 0, 0, 0, 0, 389, 0, 830,
0, 532, 526, 531, 720, 767, 691, 718, 717, 719,
692, 693, 694, 695, 696, 697, 698, 699, 700, 701,
702, 703, 0, 0, 0, 798, 0, 0, 0, 736,
735, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 839, 0, 386, 0, 0, 0, 0, 0, 0,
853, 0, 0, 0, 734, 730, 0, 0, 0, 0,
0, 0, 0, 353, 0, 0, 0, 0, 0, 0,
0, 0, 613, 0, 539, 0, 0, 537, 541, 542,
536, 546, 545, 543, 544, 606, 521, 0, 407, 406,
0, 0, 0, 0, 0, 722, 0, 323, 0, 728,
729, 0, 474, 475, 0, 0, 0, 726, 727, 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, 933, 687, 737, 725, 0, 765, 766,
884, 901, 0, 0, 0, 913, 872, 870, 894, 0,
0, 892, 895, 896, 897, 898, 873, 871, 0, 0,
0, 328, 0, 18, 0, 0, 0, 950, 0, 335,
0, 0, 0, 952, 0, 0, 38, 643, 649, 641,
0, 638, 648, 642, 640, 639, 646, 644, 645, 651,
647, 650, 652, 0, 0, 636, 49, 473, 0, 469,
470, 0, 0, 467, 0, 739, 0, 0, 0, 796,
0, 763, 764, 0, 0, 0, 625, 0, 833, 831,
626, 0, 0, 495, 0, 0, 0, 486, 0, 490,
500, 502, 0, 482, 0, 0, 0, 0, 0, 477,
0, 480, 0, 484, 355, 834, 0, 0, 835, 843,
0, 0, 0, 844, 0, 0, 855, 0, 0, 733,
0, 365, 361, 362, 0, 0, 360, 363, 364, 0,
0, 0, 547, 0, 0, 528, 0, 608, 685, 0,
0, 0, 679, 681, 682, 683, 418, 419, 0, 331,
332, 0, 175, 174, 176, 0, 0, 0, 0, 357,
0, 593, 0, 0, 837, 0, 0, 423, 0, 426,
0, 424, 0, 463, 0, 0, 0, 0, 0, 452,
455, 0, 0, 447, 454, 453, 0, 582, 583, 584,
585, 586, 587, 588, 589, 590, 592, 591, 548, 550,
549, 555, 556, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 579, 0,
0, 499, 0, 0, 0, 0, 0, 0, 0, 885,
887, 883, 0, 893, 0, 0, 325, 948, 949, 349,
0, 0, 346, 0, 0, 172, 0, 0, 958, 944,
946, 58, 56, 57, 0, 0, 51, 0, 0, 59,
61, 26, 24, 0, 0, 0, 633, 0, 637, 422,
0, 472, 0, 523, 0, 534, 162, 183, 0, 0,
152, 0, 0, 0, 163, 527, 0, 858, 804, 0,
815, 799, 0, 806, 0, 817, 0, 832, 774, 0,
857, 0, 0, 485, 0, 501, 503, 0, 0, 439,
0, 0, 435, 0, 0, 464, 0, 505, 479, 0,
138, 506, 136, 137, 508, 0, 522, 777, 0, 848,
0, 841, 0, 845, 514, 0, 0, 0, 350, 0,
512, 0, 0, 524, 865, 0, 861, 794, 0, 876,
0, 874, 0, 0, 623, 624, 0, 0, 0, 684,
673, 674, 672, 680, 601, 607, 600, 0, 0, 330,
596, 0, 0, 0, 538, 836, 723, 427, 421, 425,
420, 525, 462, 461, 460, 457, 456, 0, 451, 416,
417, 428, 0, 0, 744, 0, 0, 902, 878, 0,
903, 0, 899, 0, 914, 0, 0, 0, 0, 882,
19, 327, 670, 669, 0, 668, 0, 345, 960, 173,
955, 0, 0, 52, 0, 0, 0, 0, 0, 0,
352, 0, 627, 0, 0, 78, 77, 0, 468, 0,
0, 0, 0, 0, 533, 0, 0, 0, 0, 0,
807, 800, 0, 818, 0, 0, 856, 492, 491, 442,
0, 0, 939, 940, 431, 437, 0, 440, 0, 466,
0, 0, 0, 0, 0, 775, 851, 0, 842, 0,
520, 515, 0, 0, 511, 0, 864, 0, 793, 877,
875, 0, 529, 0, 609, 605, 604, 603, 333, 595,
594, 611, 459, 0, 449, 448, 581, 138, 0, 760,
742, 0, 0, 0, 749, 0, 880, 0, 907, 0,
922, 923, 916, 886, 888, 928, 348, 347, 959, 0,
0, 60, 54, 0, 62, 25, 22, 0, 0, 303,
0, 209, 0, 100, 0, 75, 754, 111, 112, 0,
0, 0, 757, 181, 182, 0, 0, 0, 0, 155,
164, 156, 158, 797, 0, 0, 0, 0, 0, 816,
0, 0, 441, 443, 444, 438, 432, 436, 0, 497,
0, 465, 476, 430, 509, 507, 0, 847, 0, 0,
0, 516, 0, 867, 0, 0, 622, 614, 0, 458,
0, 0, 738, 750, 879, 0, 0, 0, 900, 0,
0, 0, 947, 0, 0, 0, 67, 68, 71, 72,
0, 318, 309, 308, 0, 628, 205, 95, 0, 740,
758, 167, 0, 179, 0, 0, 0, 795, 869, 0,
0, 0, 811, 0, 819, 773, 481, 478, 782, 0,
788, 0, 0, 780, 0, 785, 849, 519, 518, 866,
862, 0, 612, 0, 0, 881, 904, 0, 0, 0,
918, 0, 929, 0, 73, 65, 0, 0, 0, 304,
0, 0, 0, 0, 0, 168, 0, 159, 157, 859,
808, 801, 0, 0, 776, 781, 0, 786, 0, 0,
615, 0, 752, 0, 908, 925, 926, 919, 889, 53,
0, 69, 70, 0, 0, 0, 0, 0, 0, 0,
759, 166, 0, 178, 0, 0, 820, 787, 0, 675,
850, 863, 761, 0, 0, 0, 74, 0, 0, 319,
0, 305, 0, 313, 369, 368, 0, 366, 657, 0,
629, 0, 658, 206, 96, 169, 860, 0, 0, 813,
0, 905, 0, 920, 0, 0, 0, 0, 0, 0,
0, 0, 659, 0, 0, 802, 0, 0, 909, 28,
23, 320, 0, 0, 314, 367, 0, 0, 0, 97,
0, 676, 0, 0, 0, 0, 306, 665, 0, 666,
663, 0, 661, 93, 0, 92, 0, 0, 81, 83,
84, 85, 86, 87, 88, 89, 90, 91, 139, 0,
0, 222, 214, 215, 216, 217, 218, 219, 220, 221,
0, 0, 212, 0, 803, 0, 906, 0, 321, 317,
0, 0, 0, 630, 82, 0, 265, 260, 264, 0,
207, 213, 0, 912, 910, 664, 662, 0, 0, 0,
0, 0, 0, 0, 273, 0, 0, 223, 0, 0,
231, 0, 150, 140, 149, 0, 98, 0, 0, 259,
0, 0, 258, 0, 144, 0, 0, 339, 0, 337,
0, 0, 184, 0, 0, 0, 0, 0, 631, 208,
0, 101, 0, 336, 0, 0, 0, 0, 115, 0,
0, 0, 0, 0, 0, 141, 0, 0, 188, 0,
340, 0, 226, 225, 224, 0, 99, 0, 277, 0,
256, 117, 0, 254, 0, 0, 0, 119, 0, 341,
0, 0, 185, 0, 0, 0, 338, 229, 110, 108,
0, 0, 281, 0, 0, 0, 0, 0, 145, 0,
262, 0, 0, 0, 0, 123, 0, 0, 0, 0,
342, 343, 0, 0, 0, 0, 0, 105, 296, 0,
278, 0, 0, 290, 0, 0, 0, 285, 0, 135,
0, 0, 0, 0, 130, 0, 0, 274, 0, 120,
0, 114, 124, 142, 148, 196, 0, 186, 0, 0,
0, 0, 109, 0, 102, 106, 0, 0, 0, 292,
0, 293, 282, 0, 0, 276, 286, 257, 0, 0,
116, 131, 255, 0, 272, 0, 263, 267, 126, 0,
0, 0, 193, 195, 189, 230, 107, 297, 299, 279,
0, 0, 291, 288, 134, 132, 146, 0, 0, 0,
143, 197, 199, 187, 0, 0, 0, 290, 0, 268,
270, 127, 0, 0, 190, 301, 302, 298, 300, 289,
147, 0, 0, 203, 202, 201, 198, 200, 0, 0,
0, 191, 269, 271,
};
protected static readonly short [] yyDgoto = { 7,
8, 49, 9, 50, 10, 11, 51, 232, 689, 430,
12, 13, 52, 22, 23, 321, 235, 674, 839, 1031,
1149, 1486, 836, 236, 237, 238, 239, 240, 241, 242,
243, 667, 445, 668, 669, 941, 670, 671, 945, 837,
1026, 1027, 1028, 266, 591, 1121, 110, 848, 1217, 1218,
1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228,
464, 678, 1300, 955, 1128, 1093, 1161, 1185, 1244, 1311,
1156, 1361, 1338, 1386, 1387, 1388, 957, 1384, 958, 734,
1277, 1349, 1324, 1374, 514, 1367, 1343, 1403, 920, 1372,
1375, 1376, 1470, 1404, 1405, 1401, 1229, 1284, 1256, 1301,
690, 1351, 1450, 1321, 1407, 1479, 465, 267, 691, 692,
693, 694, 695, 654, 568, 1133, 655, 656, 854, 1303,
1328, 1418, 1379, 1452, 1304, 1354, 1475, 1499, 1419, 1420,
1497, 1483, 1484, 953, 1092, 1184, 1241, 1286, 1242, 1243,
1278, 1335, 1307, 1279, 324, 223, 1383, 1281, 1368, 1365,
1230, 1258, 1297, 1447, 1409, 1141, 1448, 592, 1492, 1493,
1296, 1364, 1340, 1396, 1391, 1362, 1428, 1433, 1394, 1397,
1398, 1478, 1434, 1392, 1393, 1488, 1476, 1477, 950, 1035,
1152, 1126, 1178, 1153, 1154, 1193, 1089, 1176, 1205, 533,
193, 112, 350, 195, 562, 440, 224, 1316, 652, 653,
825, 841, 325, 407, 532, 303, 1157, 1158, 45, 114,
304, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 252, 802, 993, 510, 721, 875, 722, 723,
986, 137, 198, 727, 593, 594, 595, 596, 796, 473,
474, 297, 991, 729, 408, 299, 497, 498, 499, 500,
503, 736, 310, 752, 753, 892, 263, 479, 767, 264,
478, 138, 139, 140, 141, 142, 143, 144, 145, 146,
147, 148, 149, 150, 151, 152, 571, 572, 573, 776,
777, 908, 778, 153, 559, 769, 351, 1009, 547, 1072,
154, 492, 951, 1091, 1182, 1282, 466, 1162, 1163, 1212,
1213, 826, 551, 336, 773, 1171, 552, 553, 268, 269,
270, 157, 158, 159, 271, 272, 273, 274, 275, 276,
277, 278, 279, 280, 281, 282, 171, 283, 577, 172,
173, 317, 807, 631, 923, 851, 685, 961, 921, 924,
1051, 925, 962, 963, 284, 174, 175, 176, 1062, 997,
1063, 1064, 1065, 1107, 1066, 177, 178, 179, 180, 702,
485, 703, 1054, 979, 1168, 1136, 1201, 704, 978, 705,
1170, 1103, 181, 182, 183, 184, 185, 186, 305, 523,
524, 999, 1109, 313, 977, 860, 1135, 1006, 898, 1110,
187, 418, 188, 419, 926, 1016, 420, 643, 820, 817,
818, 1021, 421, 422, 423, 424, 425, 426, 930, 633,
928, 1114, 1188, 1247, 1018, 1145, 1204, 815, 639, 816,
1080, 1020, 1081, 1146, 1022, 17, 19, 46, 47, 227,
657, 833, 441, 658, 659,
};
protected static readonly short [] yySindex = { -203,
0, -185, -47, -35, 6,12139, 0, 88, 0, 0,
6, -35, 0, 0, -295, 0, 6816, 6, 0, -173,
-235, 0, 0, 0, 0, 0, 0, 0, 178, 0,
271, 0, 0, 0, 3617, 0, 0, 0, 0, 0,
0, 0, 0, 528, 0, 0, 547, 0, 0, 88,
223, 6, 0, 227, 0, -29, 247, 207,11639, 253,
-272, 4, 6973, 0, -272, -272, -272, -155, -272, -272,
586, 0,10742, -272, -272, 0,10742, 0, 300, 0,
207, 0, -272, 296, -272, 0,12158,12158, 316, -272,
-272, -85,11422, 0,10742, 0,11422,11422,11422,11422,
11422,11422,11422,11422, 0, 98, 0, 8522, 0, 81,
0, 277, 268, 446, 283, 0, 0, 336, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 864, 685,
21, 611, 119, 623, 334, 388, 408, 404, 338, 419,
0, 0, 0, 0, 0, 0, 3477, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, -268, 451, -239, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -193, -183, 223, 0,
319, -245, 0, 407, 0, 0, 0, 0, 8522, 8522,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 469, 428, 0, 458, 0, -240, 0, 0,
0, 223,12768, 223, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 590, 463,10878, 0, 0, 0,
0,10742, -272, -272, 577, 377, 446, 0, -268, 0,
8522, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -174, 115,11639, 0, 8522,10742, 518, 0,
0, 550,10742,10742, 9133, 615, -195, 596, 8679,11422,
98, 0, 620, 0, 622, 8522,10742, 675, 588, -272,
0,10742, 300,10198, 0, 0, 296,10742, 296, -282,
459, 746, -268, 0, 451, 283, 754, -268,10742,10742,
10742, 4, 0, 718, 0, 7130, -256, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4360, 0, 0,
12068, -282, 683, 714,10742, 0, 661, 0, -303, 0,
0, 467, 0, 0, 680, 8662, 9926, 0, 0,11422,
10742,10742,10742,10742,10742,10742,10742,10742,10742,10742,
10742,11422,11422,11422, 8522, 8522,11422,11422,11422,11422,
11422,11422,11422,11422,11422,11422,11422,11422,11422,11422,
11422,11422,10742, 0, 0, 0, 0, 451, 0, 0,
0, 0,12158,12158, -268, 0, 0, 0, 0, -238,
534, 0, 0, 0, 0, 0, 0, 0, 223, 223,
700, 0, 708, 0, 661, 469, 469, 0, -212, 0,
486, 469, 780, 0, -192,12768, 0, 0, 0, 0,
-167, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 163,12798, 0, 0, 0, 661, 0,
0, 782, 630, 0, 790, 0, 795, 52, 300, 0,
-272, 0, 0, -268, 8210, -186, 0, 799, 0, 0,
0, -88, -42, 0, 346, 0, 808, 0, 805, 0,
0, 0, 665, 0, 8346, 671,10742, 596, 9926, 0,
7601, 0, 296, 0, 0, 0, 809, 43, 0, 0,
207, 300, 389, 0, 4201, 811, 0, 60, -268, 0,
62, 0, 0, 0,10742, 886, 0, 0, 0,10742,
892, 814, 0, 819, 820, 0,12068, 0, 0, -208,
-264, 7130, 0, 0, 0, 0, 0, 0, 300, 0,
0, 167, 0, 0, 0, 296, -282, -268, 8836, 0,
823, 0, 821,11422, 0, 830, 7130, 0, 320, 0,
382, 0, 661, 0, -89,10742,10742, 828, 951, 0,
0, -248, 834, 0, 0, 0, 685, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 685, 685, 21, 21, 611, 611, 611,
611, 119, 119, 623, 334, 388, 408, 404, 0, 837,
-199, 0,10742, 915, -268, 919, -268, 836,10742, 0,
0, 0, 865, 0, -237, 661, 0, 0, 0, 0,
509, 243, 0, 8836, 486, 0, 848, 849, 0, 0,
0, 0, 0, 0, -282, 851, 0, 850, 853, 0,
0, 0, 0, 855, 8993, 812, 0, 380, 0, 0,
436, 0,10878, 0, 852, 0, 0, 0, 470, 860,
0, 861, 862, 863, 0, 0,10742, 0, 0, -268,
0, 0, 858, 0, 868, 0, 228, 0, 0, 6973,
0, 6973, 8505, 0, 9133, 0, 0,10334, 157, 0,
-249, -92, 0, 810, 815, 0, -67, 0, 0, 872,
0, 0, 0, 0, 0, 875, 0, 0, 879, 0,
4519, 0, 300, 0, 0, 296, 464, 829, 0, 51,
0, 882, 885, 0, 0, 6973, 0, 0, 6973, 0,
10742, 0,10742, 8522, 0, 0, 300, 888, 300, 0,
0, 0, 0, 0, 0, 0, 0, 8819, 8522, 0,
0, -268,12068, 918, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 9790, 0, 0,
0, 0,10062,10742, 0, 7758, 889, 0, 0, 968,
0, 970, 0, 712, 0, 904,10742,10742, -268, 0,
0, 0, 0, 0, 866, 0, -212, 0, 0, 0,
0, 486, 486, 0, 700, 910, 914, 870, 922, 812,
0, 906, 0, 1035, 1036, 0, 0,10742, 0,10470,
921, 470, 8836, 8522, 0, 309, 1037, 1040, 64, 920,
0, 0,10742, 0,10742, 1017, 0, 0, 0, 0,
-172,10606, 0, 0, 0, 0, 7894, 0, 1049, 0,
451,10742, 939, 8505, 944, 0, 0, -268, 0, 166,
0, 0, 661, 829, 0, -268, 0, -177, 0, 0,
0, 935, 0, 972, 0, 0, 0, 0, 0, 0,
0, 0, 0, 592, 0, 0, 0, 0, 8679, 0,
0, -268, 940, 889, 0,10742, 0,10742, 0,10742,
0, 0, 0, 0, 0, 0, 0, 0, 0, 947,
700, 0, 0,11014, 0, 0, 0, 948, 7618, 0,
812, 0, 812, 0, 812, 0, 0, 0, 0, -268,
945, 921, 0, 0, 0, -164, -162, 946, 950, 0,
0, 0, 0, 0, 953, 8505, 889, -199,10742, 0,
954, 6973, 0, 0, 0, 0, 0, 0, 952, 0,
596, 0, 0, 0, 0, 0, -182, 0, 955, 661,
829, 0, 829, 0, 889, 958, 0, 0, 300, 0,
909, 959, 0, 0, 0,10742, 987,10742, 0,10742,
991, 242, 0, 853, 196, 600, 0, 0, 0, 0,
-35, 0, 0, 0, 979, 0, 0, 0, 969, 0,
0, 0, 478, 0, 971, 1093, 1095, 0, 0, 889,
981, 889, 0, 978, 0, 0, 0, 0, 0,10742,
0, 992, -188, 0, -188, 0, 0, 0, 0, 0,
0, 300, 0,10742, 8053, 0, 0, 1014, 789, 994,
0,10742, 0, 995, 0, 0,11014, 6, 52, 0,
998, 998, 998,10470, 996, 0,10742, 0, 0, 0,
0, 0, 6973, 999, 0, 0, 7130, 0, 1002, 6973,
0, 1000, 0,10742, 0, 0, 0, 0, 0, 0,
10742, 0, 0, 223, 1003, 223, 7775, -153, -153, -153,
0, 0,10742, 0, 6973,10742, 0, 0, 7130, 0,
0, 0, 0, 1028,10742,10742, 0, 223, 1009, 0,
960, 0, 1008, 0, 0, 0, 1011, 0, 0, 965,
0, 1047, 0, 0, 0, 0, 0, 1015, 868, 0,
7130, 0, 1041, 0, 1016, -153, 0, 1022, 223, 7775,
1018, 1024, 0, 1029, 1030, 0, 1031,10742, 0, 0,
0, 0, 1019, 1016, 0, 0,11718, -102, 223, 0,
6973, 0, 1042,10742, 1025,10742, 0, 0, 1032, 0,
0, 1033, 0, 0,12798, 0, 1038, -102, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 494,
12798, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1043, 223, 0, -102, 0, -268, 0, 1042, 0, 0,
1044,11718,11884, 0, 0, 512, 0, 0, 0,11916,
0, 0, 1045, 0, 0, 0, 0, 8522, 8522, 225,
8679, 258, 296, 1067, 0, -282, 9726, 0, 1103, 0,
0, 1016, 0, 0, 0, 1016, 0, 997, 1010, 0,
8522, -159, 0, 8522, 0, 1020, 1039, 0, -282, 0,
1055, 9169, 0, 1060, 1021, -8, 549, 3617, 0, 0,
1016, 0, -282, 0, 1065, 1034, 1062, 1058, 0, 1064,
1010, 1066, 52, 1070, 1073, 0, 1072, 1080, 0, 661,
0, 699, 0, 0, 0, 1077, 0, -163, 0, 1074,
0, 0, 1085, 0, 1086, 1087, 1089, 0, 1088, 0,
52, 52, 0, 52, 1096, 1099, 0, 0, 0, 0,
1094, -77, 0, 1100, 52, 1153, 1104, 52, 0, 512,
0, 8505, 1059, 1097, 1088, 0, 1107, 1108, 69, 1111,
0, 0, 52,10470, 1068, 1106, 1094, 0, 0,12798,
0, 223, 223, 0, 1069, 1109, 1100, 0, 1112, 0,
10742, 1075, 1115, 1104, 0, 1116, 52, 0, -175, 0,
1102, 0, 0, 0, 0, 0,12798, 0, 69, 69,
1125, 1122, 0, -163, 0, 0, 127, 1127,12798, 0,
12798, 0, 0, 8505, 1117, 0, 0, 0, 1126, 1085,
0, 0, 0, 1128, 0, 102, 0, 0, 0, -153,
721, 1129, 0, 0, 0, 0, 0, 0, 0, 0,
1184, 1149, 0, 0, 0, 0, 0, 1130, 1132, 8505,
0, 0, 0, 0, 69, 556, 556, 0, -153, 0,
0, 0, -61, -61, 0, 0, 0, 0, 0, 0,
0, 9926, 9926, 0, 0, 0, 0, 0, 1136, 1133,
1135, 0, 0, 0,
};
protected static readonly short [] yyRindex = { 1467,
0, 0, 7287, 1467, 0, 0, 0, 1508, 0, 0,
3115, 2940, 0, 0, 0, 0, 0, 3115, 0, 0,
55, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1510, 0, 0, 1510, 0, 0, 1508,
3178, 3009, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1144, 0, 0, 0, 0, 0, 0, 0, 0,
12212, 0, 1137, 0, 0, 0, 1137, 0, 0, 0,
0, 0, 0, 233, 0, 0, 0, 0, 0, 0,
0, 0, 82, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4740, 0, 0, 0, 0,
0, 0, 250, 4677, 3953, 0, 0, 4518, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4833, 4937,
5245, 5449, 5789, 5993, 6129, 6265, 6401, 6537, 1754, 3685,
0, 0, 0, 0, 0, 0, 55, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 182, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 796, 796, 3225, 0,
144, 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, 1510, 272, 0, 0, 0, 0, 0, 0,
0, 3272, 259, 3335, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 3564, 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, 1146, 0, 0, 0, 0, 0,
3564, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 2157, 0, 2691, 520,
2287, 0, 0, 0, 2434, 2287, 0, 0, 0, 0,
0, 1144, 0, 0, 0, -1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1140, 2538, 0, 0, 1137, 0, 3564, 0, 0, 0,
0, 0, 0, 0, 0, 0, 41, 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, 1530, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
20, 0, 0, 0, 0, 0, 0, 0, 3398, 2849,
0, 0, 0, 0, 2004, 1510, 1510, 0, -180, 0,
8070, 1510, 1515, 0, 0, 108, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 401,11571, 0, 0, 0, 3564, 0,
0, 0, 0, 0, 0, 0, 0,11960, 0, 0,
0, 0, 0, 0, 1141, 0, 0, 0, 0, 0,
0, 0, 0, 0, 676, 749, 0, 0, 1148, 0,
0, 0, 0, 0, 8, 0, 0, 4041, 1147, 0,
0, 0, 335, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1698, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1140, 0, 0, 6656,
0, 39, 0, 0, 0, 0, 0, 0, 8976, 0,
0, 0, 0, 0, 0, -122, 263, 0, 0, 0,
1150, 0, 0, 0, 0, 0, 0, 0, 3564, 0,
3564, 0, 4200, 0, 0, 0, 0, 177, 0, 0,
0, 0, 121, 0, 0, 0, 5005, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5109, 5177, 5313, 5381, 5517, 5585, 5653,
5721, 5857, 5925, 6061, 6197, 6333, 6469, 6593, 0, 0,
654, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3844, 0, 0, 2004, 0, 0, 0, 0,
1105, 0, 0, 0,12229, 0, 0, 692, 0, 0,
0, 0, 0, 0, 637, 653, 0, 0, 1151, 0,
0, 0, 0, 1157, 0, 0, 0, 0, 0, 0,
11150, 0, 0, 0, 715, 0, 0, 0,12283, 0,
0, 723, 731, 735, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1142, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1152, 0, 0, 0, 2598, 0,
0, 44, 0, 35, 3723, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1159, 0, 0, 0, 0,
0, 0, 0, 0, 0, 5, 371, 0, 0, 0,
0, 0, 1156, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 8976, 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, 186, 0, 0, 0, 1155, 0, 0, 0,
0, 0, 0, 215, 0, 373, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -180, 0, 0, 0,
0,12283, 8227, 0, 1165, 0, 672, 0, 0, 0,
0, 1158, 0, 1118, 1121, 0, 0, 0, 0, 0,
1164,12307, 0, 0, 0,12036, 0, 0, 0, 734,
0, 0, 0, 0, 0, 1875, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3882, 0, 4359, 1161, 0, 0, 0, 1170, 0, 0,
0, 0, 359, 0, 0, 0, 0, 734, 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, 1168, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 738, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1169, 0, 0, 0, 0, 0, 755, 760, 0,
0, 0, 0, 0, 0, 0, 1175, 654, 1174, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4041, 0, 0, 0, 0, 0, 1186, 0, 0, 359,
0, 0, 775, 0, 1175, 0, 0, 0, 8976, 0,
605, 657, 0, 0, 0, 0, 0, 0, 0, 0,
0, 104, 0, 1151, 9170, 0, 0, 0, 0, 0,
12355, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 664, 0, 682, 0, 0, 0, 0, 1180,
0, 1155, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1188, 0, 7444, 0, 0, 0, 0, 0,
0, 8976, 0, 0, 0, 0, 0, 0, 420, 608,
0, 0, 0, 0, 0, 0, 0,12398,11960, 0,
53, 53, 53, 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,12461, 0, -36, 0, 1194, 1194, 1194,
0, 0, 0, 0, 0, 1190, 0, 0, -221, 0,
0, 0, 0, 0, 0, 0, 0,12504, 0, 0,
0, 0, 1197, 0, 0, 0, 79, 0, 0, 0,
0, 563, 0, 0, 0, 0, 0, 0, 1195, 0,
1198, 0, 0, 0, 3072, 1192, 523, 0, 114, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1276, 0, 0, 0, 9324, 9522, 0,
0, 0, 634, 0, 0, 0, 0, 0, 0, 0,
0, 294, 0, 0,11742, 0, 0, 9423, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
11810, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 9616, 0, 9324, 0, 0, 0, 634, 0, 0,
0, 0, 401, 0, 0, 0, 0, 0, 0, 401,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 893, 442, 0, 9658, 0, 0, 0, 4674,
0, 1276, 0, 0, 0, 1276, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 529, 0,
1207, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1276, 0, 541, 0, 569, 0, 0, 0, 0, 0,
0, 0,11960, 745, 0, 0, 0, 0, 0, 1202,
0, 621, 0, 0, 0, 0, 0, 0, 0, 759,
0, 0, 0, 0, 0, 0, 0, 0, 1205, 0,
11960,11960, 0,11992, 0, 0, 0, 0, 0, 0,
1206,12728, 0, 1208,11960,11286, 1213,11960, 0, 0,
0, 0, 0, 0, 1214, 0, 0, 0,12698, 0,
0, 0,11960, 0, 0, 0, 1215, 0, 0, 289,
0,12622,12660, 0, 0, 0, 1219, 0, 0, 0,
0, 0, 0, 1225, 0, 0,11960, 0, 566, 0,
762, 0, 0, 0, 0, 0, 788, 0,12546,12584,
0, 0, 0, 0, 0, 0, 0, 0, 1287, 0,
1340, 0, 0, 0, 763, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 573,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,12698, 1026,11458, 0, 573, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1147, 1147, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,
};
protected static readonly short [] yyGindex = { 0,
0, 1554, 0, 0, 0, 1, -9, -176, -48, 1557,
0, 1593, 1606, 86, 0, -6, 0, 0, 0, 0,
0, -807, -695, -217, -436, 0, 0, 0, 0, 0,
-191, 0, 0, 0, 674, 0, 781, 0, 0, 0,
0, 530, 532, -17, -223, 0, -62, 0, 376, 0,
405, -700, -587, -585, -571, -568, -565, -543, -534, 0,
-1143, 0, 16, 0, 67, 0,-1071, 0, 0, 0,
111, 198, 0, 0, 0, 237,-1057, 0, -270, -297,
961, 0, 0, 0, -883, 185, 0, 0, -500, 0,
0, 251, 0, 0, 224, 0, 0, 257, 0, -514,
-880, 0, 0, 0, 0, 0, 353, -13, 0, 0,
777, 778, 779, 957, -527, 0, 0, -318, 785, 350,
0, -909, 0, 0, 0, 0, 0, 0, 0, 0,
156, 0, 0, 0, 0, 0, 0, 0, 0, 400,
0, 0, 0, 0, -332, 333, 0, 0, 0, 0,
0, 0, 0, 0, 0, 413, 0, -502, 0, 0,
0, 0, 0, 0, 0, 0, 0, 169, 0, 0,
252, 0, 0, 255, 262, 179, 0, 0, 0, 0,
0, 0, 0, 0, 476, 0, 0, 0, 0, -46,
0, -12, 26, 0, 0, 325, 0, 381, 0, 833,
0, 1138, -289, -263, -64, 399, 0, 481, 0, -30,
112, 0, 0, 916, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-260, 0, 1375, 0, 0, -766, 0, 0, 0, 787,
0, -298, -134, 956, 867, 0, 859, 0, 1079, 1303,
988, 0, 0, 684, 1602, 0, 0, 0, 0, 962,
0, 0, 0, 0, 0, -523, 1344, 0, 0, 0,
0, 0, 1321, 448, 784, 690, 769, 1281, 1282, 1280,
1283, 1285, 0, 1279, 0, 0, 0, 899, 1145, -730,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, -286, 0, 0, 0, 0, -449, 0, 522, 0,
435, 0, 517, 0, 0, 0, 582, -531, -15, -309,
-5, 0, 1538, 0, 48, 0, 70, 74, 85, 101,
103, 113, 116, 132, 141, 145, 0, -658, 0, -21,
0, 0, 719, 0, 644, 0, 0, 0, 624, -315,
695, -847, 0, 739, -457, 0, 0, 0, 0, 0,
0, 639, 0, 0, 641, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 571,
0, 0, 0, 0, 0, 0, 0, 0, -27, 0,
1203, 0, 0, 0, 827, 0, 0, 0, 0, 0,
0, -171, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1306, 0, 0, 0, 0, 0, 0,
0, 0, 0, 482, 0, 0, 0, 0, 0, 0,
0, 0, 583, 0, 0, 0, 0, 0, 0, -7,
898, 0, 0, 0, 900,
};
protected static readonly short [] yyTable = { 109,
512, 155, 233, 111, 18, 292, 730, 194, 189, 515,
735, 156, 429, 192, 447, 679, 428, 488, 570, 316,
774, 43, 404, 471, 322, 327, 555, 701, 257, 334,
542, 531, 569, 508, 496, 1011, 1131, 259, 905, 229,
885, 782, 467, 650, 251, 787, 784, 770, 361, 308,
369, 866, 1, 867, 937, 302, 805, 1164, 1165, 302,
504, 537, 411, 662, 160, 309, 360, 311, 368, 706,
14, 1253, 411, 1059, 194, 194, 1014, 337, 1004, 1060,
1445, 480, 190, 880, 443, 1060, 161, 1260, 672, 663,
162, 1042, 1359, 1044, 290, 194, 1318, 897, 249, 20,
899, 163, 1159, 771, 1192, 985, 197, 6, 347, 406,
640, 641, 288, 46, 579, 557, 994, 164, 873, 165,
289, 664, 54, 800, 580, 46, 829, 433, 115, 166,
434, 348, 167, 358, 346, 433, 409, 197, 821, 109,
233, 155, 471, 111, 632, 412, 784, 250, 168, 291,
413, 156, 414, 1214, 2, 412, 231, 169, 415, 416,
413, 170, 414, 876, 772, 481, 793, 709, 415, 416,
115, 505, 558, 506, 115, 249, 290, 42, 1389, 874,
801, 806, 347, 446, 472, 1160, 194, 194, 880, 410,
642, 332, 749, 196, 1494, 983, 476, 323, 328, 1446,
784, 882, 1014, 976, 160, 348, 724, 290, 1125, 16,
728, 447, 868, 711, 570, 438, 432, 1360, 353, 349,
3, 4, 5, 6, 250, 665, 161, 507, 569, 470,
162, 291, 15, 1061, 475, 417, 570, 46, 467, 1061,
358, 163, 555, 444, 191, 427, 1427, 358, 194, 358,
673, 358, 530, 1043, 257, 1045, 534, 164, 1319, 165,
536, 539, 291, 484, 257, 541, 231, 555, 115, 166,
487, 344, 167, 1451, 194, 491, 493, 290, 1073, 538,
794, 877, 385, 710, 683, 1461, 194, 1462, 168, 518,
937, 231, 529, 194, 526, 358, 528, 169, 738, 527,
491, 170, 881, 472, 472, 94, 882, 687, 653, 436,
437, 937, 544, 545, 1495, 755, 1331, 758, 386, 974,
554, 570, 2, 1056, 1416, 966, 1423, 576, 1084, 712,
556, 310, 291, 333, 654, 194, 830, 302, 194, 245,
20, 1111, 749, 246, 48, 432, 354, 736, 470, 590,
634, 636, 638, 598, 599, 600, 601, 602, 603, 604,
605, 606, 607, 608, 6, 1468, 677, 1191, 891, 891,
1002, 477, 194, 194, 262, 433, 351, 432, 1471, 634,
233, 46, 578, 995, 634, 630, 1207, 1292, 634, 1458,
651, 653, 688, 247, 355, 736, 115, 486, 387, 388,
194, 194, 937, 634, 44, 980, 678, 1491, 937, 1332,
859, 434, 445, 290, 739, 113, 517, 654, 194, 653,
231, 698, 351, 707, 645, 115, 1469, 677, 648, 649,
634, 756, 194, 759, 660, 975, 433, 231, 666, 675,
346, 1459, 1347, 676, 1137, 654, 472, 115, 891, 634,
570, 1142, 890, 890, 496, 356, 736, 113, 561, 471,
647, 113, 748, 700, 569, 696, 757, 678, 893, 445,
1377, 1378, 434, 1380, 1309, 1049, 1167, 1068, 1310, 1069,
1290, 312, 199, 864, 1399, 326, 326, 1406, 347, 726,
482, 590, 446, 733, 680, 612, 613, 411, 1233, 346,
391, 392, 1422, 1337, 677, 781, 326, 740, 742, 1453,
1454, 348, 750, 1293, 393, 394, 329, 760, 747, 329,
570, 865, 762, 635, 637, 349, 1444, 344, 290, 1291,
634, 46, 890, 964, 194, 634, 554, 872, 346, 634,
779, 1233, 1245, 483, 724, 775, 556, 347, 621, 446,
621, 634, 959, 921, 634, 113, 194, 450, 921, 450,
921, 554, 1294, 921, 921, 1485, 921, 921, 795, 795,
348, 556, 810, 94, 812, 200, 1085, 249, 724, 915,
412, 634, 780, 1000, 349, 413, 347, 414, 921, 878,
356, 231, 432, 415, 416, 731, 115, 326, 326, 724,
634, 731, 244, 634, 789, 621, 791, 774, 792, 348,
344, 1234, 322, 1235, 450, 808, 827, 990, 322, 329,
472, 814, 248, 349, 358, 329, 250, 1236, 260, 515,
1237, 329, 660, 1238, 597, 329, 597, 861, 344, 358,
359, 194, 344, 921, 344, 344, 344, 344, 329, 968,
731, 843, 344, 315, 1234, 1239, 1235, 521, 828, 326,
660, 1050, 194, 115, 1240, 470, 94, 322, 315, 660,
1236, 822, 632, 1237, 743, 844, 1238, 231, 701, 491,
329, 315, 534, 113, 257, 326, 329, 894, 115, 1050,
432, 842, 1053, 728, 357, 733, 632, 326, 1239, 431,
726, 356, 845, 356, 326, 356, 356, 1240, 356, 347,
356, 915, 113, 633, 370, 329, 915, 397, 915, 910,
1030, 915, 915, 632, 915, 915, 713, 329, 194, 889,
329, 329, 348, 348, 113, 472, 347, 633, 401, 322,
472, 846, 322, 900, 329, 901, 326, 788, 847, 326,
402, 194, 356, 903, 356, 775, 936, 356, 924, 348,
907, 1216, 1232, 924, 633, 924, 194, 347, 924, 924,
194, 924, 924, 349, 1314, 563, 398, 852, 651, 735,
590, 1216, 564, 326, 326, 590, 917, 1327, 733, 1104,
348, 563, 399, 924, 565, 348, 959, 555, 564, 934,
935, 915, 823, 400, 349, 1232, 1345, 1216, 403, 790,
565, 326, 326, 735, 824, 358, 249, 597, 362, 296,
358, 115, 194, 115, 435, 998, 1134, 1001, 666, 555,
956, 433, 487, 1003, 614, 615, 890, 363, 364, 225,
194, 194, 439, 520, 315, 468, 1095, 981, 924, 315,
1083, 888, 679, 332, 984, 948, 521, 365, 1096, 1012,
1140, 555, 1166, 1030, 992, 250, 733, 115, 366, 1257,
115, 1410, 412, 522, 902, 442, 329, 413, 94, 414,
469, 472, 329, 113, 581, 415, 416, 1283, 329, 909,
315, 329, 329, 489, 582, 334, 315, 1039, 225, 334,
226, 329, 113, 316, 113, 329, 194, 334, 1015, 113,
1017, 334, 1019, 329, 334, 94, 334, 225, 647, 228,
1280, 334, 94, 326, 1333, 490, 1029, 1280, 194, 656,
447, 1190, 266, 1463, 666, 1250, 194, 329, 656, 655,
735, 266, 275, 334, 275, 326, 917, 1148, 655, 275,
113, 917, 295, 917, 296, 334, 917, 917, 733, 917,
917, 491, 511, 1010, 967, 803, 1036, 326, 1037, 1482,
1038, 1086, 911, 1087, 258, 113, 762, 911, 762, 911,
762, 515, 911, 911, 501, 911, 911, 344, 502, 1500,
1501, 344, 359, 329, 344, 775, 344, 516, 1076, 682,
1078, 344, 1079, 683, 389, 390, 329, 329, 258, 329,
329, 55, 258, 258, 258, 258, 258, 258, 258, 258,
395, 396, 63, 63, 472, 822, 63, 741, 751, 741,
751, 1088, 751, 165, 716, 165, 917, 165, 717, 535,
725, 64, 487, 493, 502, 64, 329, 540, 329, 493,
519, 177, 326, 177, 574, 177, 1112, 733, 775, 1034,
548, 957, 911, 957, 1119, 931, 932, 329, 329, 1029,
382, 383, 384, 326, 348, 233, 487, 1151, 1124, 487,
618, 619, 620, 621, 1472, 1473, 959, 329, 753, 575,
753, 554, 153, 115, 153, 329, 1144, 583, 329, 233,
160, 556, 160, 1147, 161, 868, 161, 868, 113, 66,
113, 66, 348, 439, 194, 487, 494, 352, 118, 408,
118, 408, 494, 554, 183, 646, 183, 1173, 1079, 154,
1151, 154, 280, 556, 280, 125, 287, 125, 287, 326,
408, 408, 1116, 1117, 890, 890, 517, 517, 661, 1215,
1231, 634, 634, 351, 113, 554, 681, 113, 1129, 1130,
408, 684, 326, 622, 623, 556, 686, 194, 408, 1215,
1203, 408, 616, 617, 708, 714, 351, 326, 715, 761,
737, 326, 754, 1264, 194, 763, 1248, 764, 487, 351,
765, 766, 784, 1231, 351, 1215, 783, 228, 798, 351,
258, 351, 351, 351, 351, 786, 799, 803, 809, 351,
258, 804, 811, 351, 115, 258, 813, 351, 115, 831,
819, 115, 832, 433, 834, 351, 835, 838, 351, 42,
351, 855, 850, 862, 856, 857, 858, 879, 196, 194,
194, 863, 1285, 883, 371, 886, 115, 194, 884, 891,
115, 326, 326, 895, 351, 194, 194, 896, 194, 904,
912, 927, 922, 929, 1305, 372, 373, 374, 375, 376,
377, 378, 379, 380, 381, 27, 1305, 933, 194, 943,
949, 194, 115, 937, 944, 258, 27, 946, 947, 1305,
952, 954, 972, 1334, 960, 973, 982, 258, 258, 258,
976, 432, 258, 258, 989, 505, 1007, 1211, 1305, 27,
351, 996, 115, 1390, 1008, 1013, 1023, 326, 1032, 1046,
1040, 1057, 27, 1047, 1325, 1055, 1067, 27, 1048, 1071,
1417, 1074, 27, 1077, 27, 27, 27, 27, 1325, 1075,
27, 1082, 27, 1429, 1431, 1090, 27, 326, 1098, 1094,
1099, 1097, 1100, 1102, 733, 1355, 1285, 1356, 27, 1105,
1115, 27, 1211, 27, 1120, 1132, 487, 1118, 1140, 1143,
1417, 1417, 1127, 1138, 1150, 1172, 1175, 1177, 1288, 1289,
113, 1179, 1181, 1439, 1180, 1160, 1186, 27, 1189, 1194,
1198, 1190, 1197, 27, 27, 1199, 1200, 1246, 1202, 1206,
1249, 1317, 1251, 1295, 1320, 1254, 1252, 1308, 1400, 1323,
1261, 1458, 1287, 335, 1312, 1266, 733, 338, 339, 340,
341, 342, 343, 344, 345, 1326, 1417, 1313, 1329, 472,
472, 1339, 1341, 1342, 1344, 261, 1346, 1322, 1330, 285,
286, 287, 1352, 293, 294, 1350, 1353, 1358, 306, 307,
1348, 1332, 733, 1366, 1363, 312, 1369, 314, 1370, 318,
1371, 1373, 1487, 1487, 330, 331, 33, 1385, 1381, 1496,
1496, 1382, 1412, 1395, 590, 590, 1411, 1402, 1414, 1415,
1421, 1425, 1449, 1438, 1436, 1424, 1435, 1443, 367, 258,
1441, 1455, 1440, 1456, 1460, 1465, 1474, 1464, 1459, 1467,
1480, 113, 1481, 1502, 1503, 113, 1504, 9, 113, 953,
530, 598, 838, 488, 945, 489, 805, 809, 445, 487,
29, 599, 667, 21, 307, 326, 29, 513, 30, 498,
745, 27, 27, 113, 30, 204, 27, 113, 94, 755,
27, 846, 27, 746, 756, 27, 747, 27, 27, 810,
27, 748, 27, 778, 27, 779, 27, 27, 27, 27,
655, 812, 27, 27, 311, 677, 814, 655, 27, 113,
27, 27, 27, 336, 329, 27, 27, 27, 326, 27,
121, 103, 27, 283, 27, 27, 27, 27, 128, 122,
104, 27, 27, 27, 284, 326, 27, 27, 27, 113,
129, 634, 634, 230, 53, 27, 27, 234, 27, 27,
21, 27, 27, 27, 1024, 942, 1122, 27, 1123, 1263,
335, 1457, 1255, 1426, 1466, 1413, 1408, 1442, 312, 1302,
258, 367, 969, 970, 971, 840, 965, 27, 1315, 1498,
1336, 1262, 1259, 27, 27, 853, 1490, 1432, 1437, 543,
326, 326, 27, 1430, 1195, 1489, 1357, 1306, 326, 938,
1196, 916, 751, 988, 914, 797, 326, 326, 585, 326,
849, 509, 298, 871, 1058, 546, 869, 624, 626, 625,
629, 911, 627, 1183, 525, 628, 1267, 1187, 1139, 326,
543, 768, 326, 27, 405, 1101, 1052, 840, 1113, 1070,
1041, 1106, 609, 610, 611, 1108, 1169, 543, 543, 543,
543, 543, 543, 543, 543, 543, 543, 543, 543, 543,
543, 543, 543, 33, 1005, 744, 644, 33, 1174, 1265,
940, 939, 0, 0, 0, 0, 0, 0, 33, 0,
0, 0, 0, 33, 0, 0, 0, 33, 0, 0,
33, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 33, 33, 0, 0, 0, 33, 33, 0,
0, 0, 0, 33, 0, 33, 33, 33, 33, 0,
0, 0, 0, 33, 0, 498, 0, 33, 0, 33,
498, 498, 0, 0, 0, 0, 0, 0, 0, 33,
0, 33, 33, 0, 33, 0, 0, 0, 33, 0,
0, 0, 0, 498, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 543, 498, 498, 33, 0,
0, 498, 0, 0, 498, 33, 498, 0, 498, 498,
498, 498, 0, 0, 0, 0, 498, 0, 0, 0,
498, 0, 0, 0, 498, 697, 0, 0, 0, 0,
0, 0, 498, 0, 0, 498, 0, 498, 498, 0,
0, 0, 0, 498, 772, 498, 498, 498, 498, 498,
498, 498, 498, 498, 498, 498, 0, 0, 0, 0,
0, 498, 498, 0, 785, 741, 498, 498, 0, 498,
498, 498, 498, 498, 498, 498, 0, 498, 498, 0,
498, 498, 498, 498, 498, 498, 498, 498, 498, 498,
0, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 498, 498, 0, 0, 498, 0, 498, 0, 498,
0, 0, 498, 840, 840, 0, 0, 0, 498, 0,
0, 840, 840, 840, 840, 840, 0, 840, 840, 0,
840, 840, 840, 840, 840, 840, 840, 840, 0, 0,
0, 0, 840, 0, 840, 840, 840, 840, 840, 840,
0, 0, 840, 0, 0, 0, 840, 840, 0, 840,
840, 840, 0, 329, 0, 0, 0, 0, 0, 578,
0, 840, 0, 840, 0, 840, 840, 0, 0, 840,
0, 840, 840, 840, 840, 840, 840, 840, 840, 840,
840, 840, 840, 0, 840, 0, 0, 840, 840, 0,
0, 840, 840, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 840, 840, 840, 840,
840, 0, 0, 0, 840, 840, 0, 0, 840, 0,
0, 0, 0, 840, 840, 840, 840, 840, 0, 0,
0, 840, 0, 840, 0, 0, 0, 0, 0, 840,
840, 0, 578, 0, 0, 0, 0, 578, 0, 578,
578, 578, 578, 578, 578, 578, 578, 578, 578, 578,
0, 0, 0, 0, 840, 840, 840, 840, 0, 840,
0, 578, 0, 578, 0, 578, 840, 578, 578, 578,
772, 772, 0, 0, 0, 0, 0, 0, 772, 772,
772, 772, 772, 578, 772, 772, 0, 772, 772, 772,
772, 772, 772, 772, 0, 0, 732, 0, 0, 772,
0, 772, 772, 772, 772, 772, 772, 0, 0, 772,
0, 0, 0, 772, 772, 0, 772, 772, 772, 0,
0, 0, 578, 0, 0, 0, 0, 0, 772, 0,
772, 0, 772, 772, 0, 0, 772, 543, 772, 772,
772, 772, 772, 772, 772, 772, 772, 772, 772, 772,
0, 772, 0, 0, 772, 772, 0, 0, 772, 772,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 772, 772, 772, 772, 772, 0, 0,
0, 772, 772, 0, 0, 772, 0, 0, 0, 0,
772, 772, 772, 772, 772, 0, 0, 0, 772, 329,
772, 0, 0, 0, 329, 329, 772, 772, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 322, 329, 0, 0,
0, 772, 772, 772, 772, 0, 772, 0, 0, 0,
329, 329, 0, 772, 0, 329, 0, 0, 329, 0,
329, 0, 329, 329, 329, 329, 0, 0, 0, 0,
329, 0, 0, 0, 329, 0, 0, 0, 329, 0,
0, 0, 0, 0, 0, 0, 329, 0, 0, 329,
0, 329, 329, 0, 0, 0, 0, 329, 0, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 0, 0, 0, 0, 329, 329, 0, 0, 0,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
0, 329, 329, 0, 0, 329, 329, 329, 329, 329,
0, 0, 329, 329, 0, 0, 0, 329, 329, 329,
329, 329, 329, 329, 329, 0, 0, 0, 0, 0,
0, 0, 732, 0, 0, 0, 329, 732, 732, 329,
0, 329, 0, 329, 0, 0, 329, 0, 0, 0,
0, 0, 329, 359, 0, 0, 0, 0, 0, 0,
732, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 732, 732, 0, 0, 0, 732, 0,
0, 732, 0, 732, 0, 732, 732, 732, 732, 0,
0, 0, 0, 732, 0, 0, 0, 732, 0, 0,
0, 732, 0, 0, 0, 0, 0, 0, 0, 732,
0, 0, 732, 0, 732, 732, 0, 0, 0, 0,
732, 0, 732, 732, 732, 732, 732, 732, 732, 732,
732, 732, 732, 0, 0, 0, 0, 0, 732, 732,
0, 0, 0, 732, 732, 732, 732, 732, 732, 0,
732, 732, 732, 0, 732, 732, 0, 329, 732, 732,
732, 732, 322, 0, 0, 732, 732, 322, 322, 0,
732, 732, 732, 732, 732, 732, 732, 732, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 732,
322, 0, 732, 0, 732, 0, 732, 0, 0, 732,
0, 0, 0, 322, 322, 732, 0, 0, 322, 0,
0, 322, 0, 322, 0, 322, 322, 322, 322, 0,
0, 0, 0, 322, 0, 0, 0, 322, 0, 0,
0, 322, 0, 0, 0, 0, 0, 0, 0, 322,
0, 0, 322, 0, 322, 322, 0, 0, 0, 0,
322, 0, 322, 322, 322, 322, 322, 322, 322, 322,
322, 322, 322, 0, 0, 0, 0, 0, 322, 322,
0, 0, 0, 322, 322, 322, 322, 322, 322, 0,
322, 322, 322, 0, 322, 322, 0, 0, 322, 322,
322, 322, 0, 0, 0, 322, 322, 0, 0, 0,
322, 322, 322, 322, 322, 322, 322, 322, 0, 359,
354, 0, 0, 0, 359, 359, 0, 0, 0, 322,
0, 0, 322, 0, 322, 0, 322, 0, 0, 322,
0, 0, 0, 0, 0, 322, 0, 359, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
359, 359, 0, 0, 0, 359, 0, 0, 359, 0,
359, 0, 359, 359, 359, 359, 0, 0, 0, 0,
359, 0, 0, 0, 359, 0, 0, 0, 359, 0,
0, 0, 0, 0, 0, 0, 359, 0, 0, 359,
0, 359, 359, 0, 0, 0, 0, 359, 0, 359,
359, 359, 359, 359, 359, 359, 359, 359, 359, 359,
0, 0, 0, 329, 0, 359, 359, 0, 0, 329,
359, 359, 0, 359, 359, 359, 0, 359, 359, 359,
0, 359, 359, 0, 0, 359, 359, 359, 359, 0,
0, 0, 359, 359, 0, 0, 0, 359, 359, 359,
359, 359, 359, 359, 359, 329, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 359, 0, 47, 359,
0, 359, 0, 329, 0, 0, 0, 0, 0, 329,
0, 0, 359, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 329, 0, 0, 0,
0, 329, 0, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 0, 0, 0, 0,
329, 0, 0, 0, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 0, 329, 329, 0, 0, 329,
329, 329, 329, 329, 0, 0, 329, 329, 0, 0,
0, 329, 329, 329, 329, 329, 329, 329, 329, 34,
0, 0, 0, 0, 0, 0, 354, 0, 0, 0,
329, 0, 354, 329, 0, 329, 0, 329, 0, 0,
329, 0, 0, 0, 0, 329, 329, 0, 329, 0,
329, 329, 0, 0, 0, 329, 329, 0, 0, 329,
329, 329, 329, 329, 329, 329, 329, 329, 354, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 0,
0, 0, 0, 0, 0, 0, 0, 0, 32, 329,
329, 0, 0, 0, 0, 0, 0, 329, 0, 0,
329, 0, 0, 0, 0, 0, 329, 0, 0, 354,
0, 0, 0, 0, 354, 0, 354, 354, 354, 354,
354, 354, 354, 354, 354, 354, 354, 0, 0, 0,
0, 0, 0, 354, 0, 0, 0, 354, 354, 0,
354, 354, 354, 0, 354, 354, 354, 0, 354, 354,
0, 27, 354, 354, 354, 354, 0, 0, 0, 354,
354, 0, 0, 0, 354, 354, 354, 354, 354, 354,
354, 354, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 354, 0, 47, 354, 0, 354, 47,
0, 47, 0, 47, 31, 47, 0, 0, 47, 354,
47, 47, 0, 47, 0, 47, 0, 47, 0, 47,
47, 47, 47, 0, 0, 47, 47, 0, 0, 0,
0, 47, 47, 47, 47, 47, 0, 0, 47, 47,
47, 0, 47, 0, 47, 47, 47, 47, 47, 47,
47, 47, 0, 47, 47, 47, 47, 0, 0, 47,
47, 47, 0, 47, 0, 0, 0, 5, 47, 47,
0, 47, 47, 0, 47, 47, 47, 0, 0, 0,
47, 0, 0, 0, 0, 0, 34, 0, 0, 0,
34, 0, 0, 0, 0, 0, 0, 0, 0, 0,
47, 34, 47, 47, 0, 0, 34, 0, 0, 0,
34, 0, 0, 34, 935, 47, 0, 0, 0, 0,
0, 0, 0, 0, 0, 34, 34, 0, 0, 0,
34, 34, 0, 0, 0, 0, 34, 0, 34, 34,
34, 34, 0, 0, 0, 0, 34, 0, 0, 0,
34, 0, 34, 0, 0, 32, 47, 0, 0, 32,
0, 46, 34, 0, 34, 34, 0, 34, 0, 0,
32, 34, 0, 0, 0, 32, 0, 0, 0, 32,
0, 0, 32, 0, 0, 0, 0, 0, 0, 0,
0, 34, 0, 0, 32, 32, 0, 34, 34, 32,
32, 0, 0, 0, 0, 32, 0, 32, 32, 32,
32, 0, 0, 0, 0, 32, 0, 0, 27, 32,
0, 32, 27, 0, 7, 0, 0, 0, 0, 0,
0, 32, 0, 27, 32, 0, 32, 0, 27, 0,
32, 0, 27, 0, 0, 27, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 27, 27, 0,
32, 31, 27, 27, 0, 31, 32, 32, 27, 0,
27, 27, 27, 27, 0, 0, 31, 0, 27, 0,
0, 31, 27, 0, 27, 31, 0, 936, 31, 0,
0, 0, 0, 0, 27, 0, 0, 27, 0, 27,
31, 31, 0, 27, 0, 31, 31, 0, 0, 0,
0, 31, 0, 31, 31, 31, 31, 0, 0, 0,
0, 31, 0, 27, 5, 31, 0, 31, 46, 27,
27, 0, 0, 0, 0, 0, 0, 31, 0, 46,
31, 0, 31, 0, 46, 0, 31, 0, 46, 0,
0, 46, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 46, 46, 0, 31, 0, 46, 46,
0, 935, 0, 31, 46, 46, 46, 46, 46, 46,
0, 0, 0, 0, 46, 0, 46, 0, 46, 0,
46, 46, 0, 0, 0, 46, 0, 0, 46, 0,
46, 0, 0, 46, 0, 46, 0, 0, 0, 46,
46, 46, 0, 0, 0, 46, 46, 0, 46, 0,
0, 46, 46, 46, 46, 46, 46, 0, 0, 46,
0, 46, 0, 46, 0, 46, 0, 46, 46, 0,
0, 0, 46, 0, 0, 46, 0, 46, 0, 0,
46, 0, 46, 0, 0, 0, 46, 46, 46, 0,
0, 0, 46, 46, 0, 0, 0, 0, 46, 0,
46, 46, 46, 46, 0, 0, 46, 0, 46, 0,
0, 7, 46, 0, 46, 47, 0, 0, 0, 0,
0, 0, 0, 0, 46, 0, 47, 46, 0, 46,
0, 47, 0, 46, 0, 47, 0, 0, 47, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
47, 47, 0, 46, 0, 47, 47, 0, 0, 0,
0, 47, 0, 47, 47, 47, 47, 0, 0, 0,
0, 47, 0, 0, 936, 47, 0, 47, 46, 0,
0, 0, 0, 0, 0, 0, 0, 47, 0, 46,
47, 0, 47, 0, 46, 0, 47, 0, 46, 0,
0, 46, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 46, 46, 0, 47, 0, 46, 46,
0, 0, 0, 0, 46, 0, 46, 46, 46, 46,
0, 0, 0, 0, 46, 0, 0, 0, 46, 0,
46, 0, 0, 0, 0, 0, 0, 0, 0, 0,
46, 0, 55, 46, 0, 46, 0, 0, 0, 46,
56, 24, 57, 25, 0, 0, 26, 58, 0, 59,
60, 27, 61, 62, 63, 28, 0, 0, 0, 46,
0, 64, 0, 65, 30, 66, 67, 68, 69, 0,
0, 32, 0, 0, 0, 70, 33, 0, 71, 72,
34, 0, 0, 0, 0, 0, 0, 0, 0, 0,
73, 0, 36, 0, 37, 74, 0, 0, 38, 0,
75, 76, 77, 78, 79, 80, 39, 40, 81, 82,
41, 83, 0, 84, 0, 0, 85, 86, 0, 329,
87, 88, 0, 0, 0, 329, 0, 0, 0, 0,
0, 0, 0, 0, 0, 89, 90, 91, 92, 93,
0, 0, 0, 94, 0, 0, 0, 95, 0, 0,
0, 0, 96, 97, 98, 99, 100, 0, 0, 0,
101, 329, 102, 0, 0, 0, 0, 0, 103, 104,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 105, 106, 107, 108, 0, 0, 0,
0, 201, 329, 0, 0, 196, 0, 329, 0, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 0, 0, 0, 0, 0, 329, 0, 0, 0,
0, 329, 329, 329, 329, 329, 329, 329, 329, 329,
580, 329, 329, 202, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 0, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 0, 500, 0,
0, 329, 0, 329, 500, 0, 329, 0, 0, 0,
0, 0, 329, 203, 204, 205, 206, 0, 207, 208,
209, 210, 211, 212, 213, 214, 0, 0, 215, 216,
217, 218, 219, 220, 221, 222, 0, 0, 0, 0,
500, 0, 0, 580, 0, 0, 0, 0, 580, 0,
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
580, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 580, 0, 580, 0, 580, 0, 580, 580,
580, 500, 0, 0, 0, 0, 500, 0, 500, 500,
500, 500, 500, 500, 500, 500, 500, 500, 500, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 500,
500, 500, 500, 500, 500, 500, 500, 500, 500, 927,
500, 500, 0, 500, 500, 500, 500, 500, 500, 500,
500, 500, 500, 580, 500, 500, 500, 500, 500, 500,
500, 500, 500, 500, 500, 500, 500, 500, 500, 500,
500, 500, 500, 500, 500, 500, 0, 496, 0, 0,
0, 0, 500, 496, 0, 0, 0, 0, 0, 0,
0, 500, 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, 496,
0, 0, 927, 0, 0, 0, 0, 927, 0, 927,
927, 927, 927, 927, 927, 927, 927, 927, 927, 0,
0, 0, 0, 0, 0, 0, 0, 0, 386, 0,
0, 927, 0, 927, 386, 927, 0, 927, 927, 927,
496, 0, 0, 0, 0, 496, 0, 496, 496, 496,
496, 496, 496, 496, 496, 496, 496, 496, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 496, 496,
386, 496, 496, 496, 496, 496, 496, 496, 0, 496,
496, 0, 496, 496, 496, 496, 496, 496, 496, 496,
496, 496, 927, 496, 496, 496, 496, 496, 496, 496,
496, 496, 496, 496, 496, 496, 496, 496, 496, 496,
496, 496, 496, 496, 496, 0, 504, 0, 0, 0,
0, 496, 504, 0, 496, 0, 0, 0, 0, 0,
496, 0, 0, 0, 0, 322, 0, 0, 0, 0,
0, 322, 0, 386, 386, 386, 386, 0, 386, 0,
386, 386, 0, 386, 386, 386, 386, 386, 504, 386,
386, 386, 386, 0, 386, 386, 386, 386, 386, 386,
386, 386, 386, 386, 386, 386, 386, 386, 386, 386,
386, 386, 386, 386, 386, 386, 0, 0, 0, 0,
322, 0, 386, 0, 0, 386, 0, 0, 0, 504,
0, 386, 0, 0, 504, 0, 504, 504, 504, 504,
504, 504, 504, 504, 504, 504, 504, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 504, 0,
504, 504, 504, 504, 504, 504, 504, 0, 504, 504,
0, 504, 504, 504, 504, 504, 504, 504, 504, 504,
504, 0, 504, 504, 504, 504, 504, 504, 504, 504,
504, 504, 504, 504, 504, 504, 504, 504, 504, 504,
504, 504, 504, 504, 0, 329, 745, 0, 0, 0,
504, 329, 0, 504, 0, 24, 0, 25, 0, 504,
26, 0, 0, 0, 0, 27, 0, 0, 0, 28,
0, 0, 0, 0, 0, 0, 0, 0, 30, 0,
0, 0, 0, 0, 0, 32, 0, 329, 0, 0,
33, 0, 0, 0, 34, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 36, 0, 37, 0,
0, 0, 38, 0, 0, 0, 0, 0, 0, 0,
39, 40, 0, 0, 41, 0, 0, 746, 329, 0,
0, 0, 0, 329, 0, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 0, 0, 0, 0,
0, 0, 0, 290, 0, 0, 0, 329, 0, 329,
329, 329, 329, 329, 329, 329, 0, 329, 329, 0,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
0, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 0, 429, 560, 0, 0, 320, 329,
429, 0, 329, 0, 24, 0, 25, 0, 329, 26,
0, 0, 0, 0, 27, 0, 0, 0, 28, 0,
0, 0, 0, 0, 0, 0, 0, 30, 0, 0,
0, 0, 0, 0, 32, 0, 429, 0, 0, 33,
0, 0, 0, 34, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 36, 0, 37, 0, 0,
0, 38, 0, 0, 0, 0, 0, 0, 0, 39,
40, 0, 0, 41, 0, 0, 319, 429, 0, 0,
0, 0, 429, 0, 429, 429, 429, 429, 429, 429,
429, 429, 429, 429, 429, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 429, 0, 429, 429,
429, 429, 429, 429, 429, 0, 429, 429, 0, 429,
429, 429, 429, 429, 429, 429, 429, 429, 429, 0,
429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
429, 429, 0, 389, 887, 0, 0, 352, 429, 389,
0, 429, 0, 24, 0, 25, 0, 429, 26, 0,
0, 0, 0, 27, 0, 0, 0, 28, 0, 0,
0, 0, 0, 0, 0, 0, 30, 0, 0, 0,
0, 0, 0, 32, 0, 389, 0, 0, 33, 0,
0, 0, 34, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 36, 0, 37, 0, 0, 0,
38, 0, 0, 0, 0, 0, 0, 0, 39, 40,
0, 0, 41, 0, 0, 319, 389, 0, 0, 0,
0, 389, 0, 389, 389, 389, 389, 389, 389, 389,
389, 389, 389, 389, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 389, 0, 389, 389, 389,
389, 389, 389, 389, 0, 389, 0, 0, 389, 389,
389, 389, 389, 389, 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, 535, 0, 350, 0, 352, 389, 535, 0,
389, 0, 0, 0, 0, 0, 389, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 350, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
350, 0, 0, 0, 535, 350, 0, 0, 227, 0,
350, 0, 350, 350, 350, 350, 0, 0, 0, 0,
350, 0, 0, 0, 350, 329, 0, 0, 350, 0,
0, 329, 0, 0, 0, 735, 350, 0, 0, 350,
0, 350, 0, 0, 0, 535, 0, 0, 0, 0,
535, 0, 535, 535, 535, 535, 535, 535, 535, 535,
535, 535, 535, 0, 0, 350, 0, 329, 0, 0,
0, 0, 0, 0, 535, 0, 535, 0, 535, 0,
535, 535, 535, 735, 535, 535, 0, 535, 535, 535,
535, 535, 535, 535, 535, 535, 535, 0, 0, 0,
535, 535, 535, 535, 535, 535, 535, 535, 535, 535,
535, 535, 535, 535, 535, 535, 535, 535, 547, 535,
0, 350, 0, 0, 547, 0, 329, 0, 0, 0,
0, 0, 329, 0, 0, 535, 0, 0, 329, 329,
329, 329, 329, 329, 735, 329, 0, 329, 329, 0,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
547, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 0, 0, 0, 0, 329, 0, 329,
0, 0, 329, 0, 0, 0, 0, 0, 329, 0,
0, 547, 0, 0, 0, 0, 547, 0, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 0,
0, 0, 551, 0, 0, 0, 0, 0, 551, 0,
547, 0, 547, 0, 547, 0, 547, 547, 547, 0,
547, 547, 0, 0, 547, 547, 547, 547, 547, 547,
547, 547, 547, 0, 0, 0, 547, 547, 547, 547,
547, 547, 547, 547, 551, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 547, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
554, 547, 0, 0, 0, 0, 554, 0, 0, 0,
0, 0, 0, 0, 0, 551, 0, 0, 0, 0,
551, 0, 551, 551, 551, 551, 551, 551, 551, 551,
551, 551, 551, 0, 0, 0, 0, 0, 0, 0,
0, 0, 554, 0, 551, 0, 551, 0, 551, 0,
551, 551, 551, 0, 551, 551, 0, 0, 551, 551,
551, 551, 0, 0, 0, 551, 551, 0, 0, 0,
551, 551, 551, 551, 551, 551, 551, 551, 0, 0,
0, 0, 0, 554, 0, 0, 0, 0, 554, 551,
554, 554, 554, 554, 554, 554, 554, 554, 554, 554,
554, 0, 0, 0, 552, 551, 0, 0, 0, 0,
552, 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, 552, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 554, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 553, 554, 0, 0, 0, 0, 553, 0,
0, 0, 0, 0, 0, 0, 0, 552, 0, 0,
0, 0, 552, 0, 552, 552, 552, 552, 552, 552,
552, 552, 552, 552, 552, 0, 0, 0, 0, 0,
0, 0, 0, 0, 553, 0, 552, 0, 552, 0,
552, 0, 552, 552, 552, 0, 552, 552, 0, 0,
552, 552, 552, 552, 0, 0, 0, 552, 552, 0,
557, 0, 552, 552, 552, 552, 552, 552, 552, 552,
0, 0, 0, 0, 0, 553, 0, 0, 0, 0,
553, 552, 553, 553, 553, 553, 553, 553, 553, 553,
553, 553, 553, 0, 0, 0, 0, 552, 0, 0,
0, 0, 0, 0, 553, 0, 553, 0, 553, 0,
553, 553, 553, 0, 553, 553, 0, 0, 553, 553,
553, 553, 0, 0, 0, 553, 553, 0, 558, 0,
553, 553, 553, 553, 553, 553, 553, 553, 0, 0,
0, 0, 0, 557, 0, 0, 0, 0, 557, 553,
557, 557, 557, 557, 557, 557, 557, 557, 557, 557,
557, 0, 0, 0, 0, 553, 0, 0, 0, 0,
0, 0, 557, 0, 557, 0, 557, 0, 557, 557,
557, 0, 0, 0, 0, 0, 557, 557, 557, 557,
0, 0, 0, 557, 557, 0, 559, 0, 557, 557,
557, 557, 557, 557, 557, 557, 0, 0, 0, 0,
0, 558, 0, 0, 0, 0, 558, 557, 558, 558,
558, 558, 558, 558, 558, 558, 558, 558, 558, 0,
0, 0, 0, 557, 0, 0, 0, 0, 0, 0,
558, 0, 558, 0, 558, 0, 558, 558, 558, 0,
0, 0, 0, 0, 558, 558, 558, 558, 0, 0,
0, 558, 558, 0, 560, 0, 558, 558, 558, 558,
558, 558, 558, 558, 0, 0, 0, 0, 0, 559,
0, 0, 0, 0, 559, 558, 559, 559, 559, 559,
559, 559, 559, 559, 559, 559, 559, 0, 0, 0,
0, 558, 0, 0, 0, 0, 0, 0, 559, 0,
559, 0, 559, 0, 559, 559, 559, 0, 0, 0,
0, 0, 559, 559, 559, 559, 0, 0, 0, 559,
559, 0, 561, 0, 559, 559, 559, 559, 559, 559,
559, 559, 0, 0, 0, 0, 0, 560, 0, 0,
0, 0, 560, 559, 560, 560, 560, 560, 560, 560,
560, 560, 560, 560, 560, 0, 0, 0, 0, 559,
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, 0, 0, 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,
0, 0, 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, 0, 0,
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,
0, 0, 565, 565, 0, 0, 0, 565, 565, 0,
567, 0, 0, 0, 0, 0, 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, 0, 0,
566, 566, 0, 0, 0, 566, 566, 0, 568, 0,
0, 0, 0, 0, 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, 0, 0, 567, 567,
0, 0, 0, 567, 567, 0, 569, 0, 0, 0,
0, 0, 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,
0, 0, 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, 0, 0,
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, 0, 570, 0, 0, 0, 570, 570, 0,
572, 0, 0, 0, 0, 0, 0, 0, 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,
0, 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, 0, 572,
0, 0, 0, 0, 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, 0, 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, 0, 0, 0, 0, 0,
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, 577, 0,
0, 0, 0, 0, 0, 0, 0, 0, 575, 0,
0, 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, 329, 0, 0,
0, 735, 0, 0, 0, 0, 576, 0, 0, 0,
0, 577, 0, 0, 0, 0, 577, 576, 577, 577,
577, 577, 577, 577, 577, 577, 577, 577, 577, 576,
0, 0, 0, 329, 0, 0, 0, 0, 0, 0,
577, 0, 577, 0, 577, 576, 577, 577, 577, 735,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 577, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 577, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 577, 0, 0, 0, 0,
0, 0, 329, 0, 0, 0, 0, 0, 329, 0,
0, 577, 0, 0, 329, 0, 329, 0, 329, 0,
735, 329, 0, 329, 329, 0, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 0, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 0,
0, 55, 0, 329, 0, 329, 0, 0, 329, 56,
24, 57, 25, 0, 329, 26, 58, 0, 59, 60,
27, 61, 62, 63, 28, 0, 0, 0, 0, 0,
64, 0, 65, 30, 66, 67, 68, 69, 0, 0,
32, 0, 0, 0, 70, 33, 0, 71, 72, 34,
0, 0, 0, 0, 0, 0, 0, 0, 0, 73,
0, 36, 0, 37, 74, 0, 0, 38, 0, 75,
76, 77, 78, 79, 80, 39, 40, 81, 82, 41,
83, 0, 84, 0, 0, 85, 86, 0, 0, 87,
88, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 89, 90, 91, 92, 93, 0,
0, 0, 94, 0, 0, 0, 95, 0, 0, 0,
0, 96, 97, 98, 99, 100, 0, 0, 0, 101,
0, 102, 0, 0, 0, 0, 0, 103, 104, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 265, 0,
0, 0, 105, 106, 107, 108, 56, 24, 57, 25,
0, 0, 26, 58, 0, 59, 60, 27, 61, 62,
63, 28, 0, 0, 0, 0, 0, 64, 0, 65,
30, 66, 67, 68, 69, 0, 0, 32, 0, 0,
0, 70, 33, 0, 71, 72, 34, 0, 0, 0,
0, 0, 0, 0, 0, 0, 73, 0, 36, 0,
37, 74, 0, 0, 38, 0, 75, 76, 77, 78,
79, 80, 39, 40, 81, 82, 41, 83, 0, 84,
0, 0, 85, 86, 0, 0, 87, 88, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 89, 90, 91, 92, 93, 0, 0, 0, 94,
0, 0, 0, 95, 0, 0, 0, 0, 96, 97,
98, 99, 100, 0, 0, 0, 101, 0, 102, 0,
0, 0, 0, 0, 103, 104, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 549, 0, 0, 0, 105,
106, 107, 108, 56, 24, 57, 25, 0, 0, 26,
58, 0, 59, 60, 27, 61, 62, 63, 28, 0,
0, 0, 0, 0, 64, 0, 65, 30, 66, 67,
68, 69, 0, 0, 32, 0, 0, 0, 70, 33,
0, 71, 72, 34, 0, 0, 0, 0, 0, 0,
0, 0, 0, 73, 0, 36, 0, 37, 74, 0,
0, 38, 0, 75, 76, 77, 78, 79, 80, 39,
40, 81, 82, 41, 83, 0, 84, 0, 0, 85,
86, 0, 0, 87, 88, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 89, 90,
91, 92, 93, 0, 0, 0, 94, 0, 0, 0,
95, 0, 0, 0, 0, 96, 97, 98, 99, 100,
0, 0, 0, 101, 0, 102, 0, 0, 0, 0,
0, 103, 104, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 932, 0, 0, 0, 105, 550, 107, 108,
932, 932, 932, 932, 0, 0, 932, 932, 0, 932,
932, 932, 932, 932, 932, 932, 0, 0, 0, 0,
0, 932, 0, 932, 932, 932, 932, 932, 932, 0,
0, 932, 0, 0, 0, 932, 932, 0, 932, 932,
932, 0, 0, 0, 0, 0, 0, 0, 0, 0,
932, 0, 932, 0, 932, 932, 0, 0, 932, 0,
932, 932, 932, 932, 932, 932, 932, 932, 932, 932,
932, 932, 0, 932, 0, 0, 932, 932, 0, 0,
932, 932, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 932, 932, 932, 932, 932,
0, 0, 0, 932, 0, 0, 0, 932, 0, 0,
0, 0, 932, 932, 932, 932, 932, 0, 0, 0,
932, 0, 932, 0, 0, 0, 0, 0, 932, 932,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 783,
0, 0, 0, 932, 932, 932, 932, 783, 783, 783,
783, 0, 0, 783, 783, 0, 783, 783, 783, 783,
783, 783, 783, 0, 0, 0, 0, 0, 783, 0,
783, 783, 783, 783, 783, 783, 0, 0, 783, 0,
0, 0, 783, 783, 0, 783, 783, 783, 0, 0,
0, 0, 0, 0, 0, 0, 0, 783, 0, 783,
0, 783, 783, 0, 0, 783, 0, 783, 783, 783,
783, 783, 783, 783, 783, 783, 783, 783, 783, 0,
783, 0, 0, 783, 783, 0, 0, 783, 783, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 783, 783, 783, 783, 783, 0, 0, 0,
783, 0, 0, 0, 783, 0, 0, 0, 0, 783,
783, 783, 783, 783, 0, 0, 0, 783, 0, 783,
0, 0, 0, 0, 0, 783, 783, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 731, 0, 0, 0,
783, 783, 783, 783, 56, 24, 0, 25, 0, 0,
26, 253, 0, 1033, 0, 27, 61, 62, 0, 28,
0, 0, 24, 0, 25, 64, 0, 26, 30, 0,
0, 0, 27, 0, 0, 32, 28, 0, 0, 0,
33, 0, 71, 72, 34, 30, 0, 0, 0, 0,
0, 0, 32, 0, 0, 0, 36, 33, 37, 74,
0, 34, 38, 0, 0, 76, 0, 78, 0, 80,
39, 40, 254, 36, 41, 37, 0, 0, 0, 38,
0, 86, 0, 0, 87, 88, 0, 39, 40, 0,
0, 41, 0, 0, 319, 0, 0, 0, 0, 89,
90, 91, 92, 300, 0, 0, 0, 511, 732, 0,
0, 95, 0, 0, 0, 0, 0, 97, 98, 99,
100, 0, 0, 0, 101, 0, 102, 0, 0, 0,
0, 0, 103, 104, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 918, 0, 0, 0, 105, 301, 107,
108, 56, 24, 0, 25, 0, 0, 26, 253, 0,
1155, 0, 27, 61, 62, 352, 28, 0, 0, 24,
0, 25, 64, 0, 26, 30, 0, 0, 0, 27,
0, 0, 32, 28, 0, 0, 0, 33, 0, 71,
72, 34, 30, 0, 0, 0, 0, 0, 0, 32,
0, 0, 0, 36, 33, 37, 74, 919, 34, 38,
0, 0, 76, 0, 78, 0, 80, 39, 40, 254,
36, 41, 37, 0, 0, 0, 38, 0, 86, 0,
0, 87, 88, 0, 39, 40, 0, 0, 41, 0,
0, 319, 0, 0, 0, 0, 89, 90, 91, 92,
300, 0, 0, 0, 511, 0, 0, 0, 95, 0,
0, 0, 0, 0, 97, 98, 99, 100, 0, 0,
0, 101, 0, 102, 0, 0, 0, 0, 0, 103,
104, 0, 0, 0, 0, 0, 0, 56, 24, 0,
25, 0, 0, 26, 253, 0, 0, 0, 27, 61,
62, 0, 28, 0, 105, 301, 107, 108, 64, 0,
0, 30, 0, 0, 0, 0, 0, 0, 32, 0,
0, 0, 352, 33, 0, 71, 72, 34, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 36,
0, 37, 74, 0, 0, 38, 0, 0, 76, 0,
78, 0, 80, 39, 40, 254, 0, 41, 0, 0,
0, 0, 0, 0, 86, 0, 0, 87, 88, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 89, 90, 91, 92, 300, 0, 0, 0,
718, 987, 0, 0, 95, 0, 0, 0, 0, 0,
97, 98, 99, 100, 0, 0, 0, 101, 0, 102,
0, 0, 0, 0, 0, 103, 104, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 731, 0,
105, 719, 107, 108, 0, 0, 56, 24, 0, 25,
0, 720, 26, 253, 0, 0, 0, 27, 61, 62,
0, 28, 0, 0, 170, 0, 170, 64, 0, 170,
30, 0, 0, 0, 170, 0, 0, 32, 170, 0,
0, 0, 33, 0, 71, 72, 34, 170, 0, 0,
0, 0, 0, 0, 170, 0, 0, 0, 36, 170,
37, 74, 919, 170, 38, 0, 0, 76, 0, 78,
0, 80, 39, 40, 254, 170, 41, 170, 0, 0,
0, 170, 0, 86, 0, 0, 87, 88, 0, 170,
170, 0, 0, 170, 0, 0, 170, 0, 0, 0,
0, 89, 90, 91, 92, 300, 0, 0, 0, 511,
0, 0, 0, 95, 0, 0, 0, 0, 0, 97,
98, 99, 100, 0, 0, 0, 101, 0, 102, 0,
0, 956, 0, 0, 103, 104, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 699, 0, 0, 0, 105,
301, 107, 108, 56, 24, 0, 25, 0, 0, 26,
253, 0, 0, 0, 27, 61, 62, 170, 28, 0,
0, 170, 0, 170, 64, 0, 170, 30, 0, 0,
0, 170, 0, 0, 32, 170, 0, 0, 0, 33,
0, 71, 72, 34, 170, 0, 0, 0, 0, 0,
0, 170, 0, 0, 0, 36, 170, 37, 74, 0,
170, 38, 0, 0, 76, 0, 78, 0, 80, 39,
40, 254, 170, 41, 170, 0, 84, 0, 170, 0,
86, 0, 0, 87, 88, 0, 170, 170, 0, 0,
170, 0, 0, 170, 0, 0, 0, 0, 89, 90,
91, 92, 300, 0, 0, 0, 0, 0, 0, 0,
95, 0, 0, 0, 0, 0, 97, 98, 99, 100,
0, 0, 0, 101, 0, 102, 956, 0, 0, 0,
0, 103, 104, 0, 0, 0, 0, 0, 0, 56,
24, 0, 25, 0, 0, 26, 253, 0, 0, 0,
27, 61, 62, 0, 28, 0, 105, 301, 107, 108,
64, 0, 0, 30, 0, 0, 0, 0, 0, 0,
32, 0, 0, 0, 170, 33, 0, 71, 72, 34,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 36, 0, 37, 74, 0, 0, 38, 0, 0,
76, 0, 78, 0, 80, 39, 40, 254, 0, 41,
0, 0, 0, 0, 0, 0, 86, 0, 0, 87,
88, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 89, 90, 91, 92, 300, 0,
0, 0, 718, 0, 0, 0, 95, 0, 0, 0,
0, 0, 97, 98, 99, 100, 0, 0, 0, 101,
0, 102, 0, 0, 0, 0, 0, 103, 104, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
731, 0, 105, 719, 107, 108, 0, 0, 56, 24,
0, 25, 0, 720, 26, 253, 0, 0, 0, 27,
61, 62, 0, 28, 0, 0, 24, 0, 25, 64,
0, 26, 30, 0, 0, 0, 27, 0, 0, 32,
28, 0, 0, 0, 33, 0, 71, 72, 34, 30,
0, 0, 0, 0, 0, 0, 32, 0, 0, 0,
36, 33, 37, 74, 0, 34, 38, 0, 0, 76,
0, 78, 0, 80, 39, 40, 254, 36, 41, 37,
0, 0, 0, 38, 0, 86, 0, 0, 87, 88,
0, 39, 40, 0, 0, 41, 0, 0, 319, 0,
0, 0, 0, 89, 90, 91, 92, 300, 0, 0,
0, 511, 0, 0, 0, 95, 0, 0, 0, 0,
0, 97, 98, 99, 100, 0, 0, 0, 101, 0,
102, 0, 0, 0, 0, 0, 103, 104, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 584, 0, 0,
0, 105, 301, 107, 108, 56, 24, 0, 25, 0,
0, 26, 253, 0, 0, 0, 27, 61, 62, 352,
28, 0, 0, 24, 0, 25, 64, 0, 26, 30,
0, 0, 0, 27, 0, 0, 32, 28, 0, 0,
0, 33, 0, 71, 72, 34, 30, 0, 0, 0,
0, 0, 0, 32, 0, 0, 0, 36, 33, 37,
74, 0, 34, 38, 0, 0, 76, 0, 78, 0,
80, 39, 40, 254, 36, 41, 37, 0, 0, 0,
38, 0, 86, 0, 0, 87, 88, 0, 39, 40,
0, 0, 41, 0, 0, 513, 0, 0, 0, 0,
89, 90, 91, 92, 93, 0, 0, 0, 0, 0,
0, 0, 95, 0, 0, 0, 0, 0, 97, 98,
99, 100, 0, 0, 0, 101, 0, 102, 0, 0,
0, 0, 0, 103, 104, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 906, 0, 0, 0, 105, 106,
107, 108, 56, 24, 0, 25, 0, 0, 26, 253,
0, 0, 0, 27, 61, 62, 352, 28, 0, 0,
24, 0, 25, 64, 0, 26, 30, 0, 0, 0,
27, 0, 0, 32, 28, 0, 0, 0, 33, 0,
71, 72, 34, 30, 0, 0, 0, 0, 0, 0,
32, 0, 0, 0, 36, 33, 37, 74, 0, 34,
38, 0, 0, 76, 0, 78, 0, 80, 39, 40,
254, 36, 41, 37, 0, 0, 0, 38, 0, 86,
0, 0, 87, 88, 0, 39, 40, 0, 0, 41,
0, 0, 566, 0, 0, 0, 0, 89, 90, 91,
92, 300, 0, 0, 0, 0, 0, 0, 0, 95,
0, 0, 0, 0, 0, 97, 98, 99, 100, 0,
0, 0, 101, 0, 102, 0, 0, 0, 0, 0,
103, 104, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 602, 0, 0, 0, 105, 301, 107, 108, 602,
602, 0, 602, 0, 0, 602, 602, 0, 0, 0,
602, 602, 602, 352, 602, 0, 0, 24, 0, 25,
602, 0, 26, 602, 0, 0, 0, 27, 0, 0,
602, 28, 0, 0, 0, 602, 0, 602, 602, 602,
30, 0, 0, 0, 0, 0, 0, 32, 0, 0,
0, 602, 33, 602, 602, 0, 34, 602, 0, 0,
602, 0, 602, 0, 602, 602, 602, 602, 36, 602,
37, 0, 0, 0, 38, 0, 602, 0, 0, 602,
602, 0, 39, 40, 0, 0, 41, 0, 0, 746,
0, 0, 0, 0, 602, 602, 602, 602, 602, 0,
0, 0, 0, 0, 0, 0, 602, 0, 0, 0,
0, 0, 602, 602, 602, 602, 0, 0, 0, 602,
0, 602, 0, 0, 0, 0, 0, 602, 602, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 494, 0,
0, 0, 602, 602, 602, 602, 56, 24, 0, 25,
0, 0, 26, 253, 0, 0, 0, 27, 61, 62,
352, 28, 0, 0, 0, 0, 0, 64, 0, 0,
30, 0, 0, 0, 0, 0, 0, 32, 0, 448,
0, 329, 33, 0, 71, 72, 34, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 36, 0,
37, 74, 449, 0, 38, 0, 0, 76, 0, 78,
0, 80, 39, 40, 254, 450, 41, 329, 0, 0,
452, 0, 0, 0, 0, 453, 0, 454, 455, 456,
457, 0, 0, 0, 0, 458, 0, 0, 0, 459,
0, 89, 90, 91, 255, 0, 0, 0, 0, 0,
0, 460, 0, 95, 461, 0, 462, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
463, 0, 0, 0, 0, 0, 0, 0, 0, 0,
329, 329, 329, 329, 735, 0, 0, 329, 329, 105,
495, 329, 329, 329, 329, 329, 329, 329, 329, 329,
0, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
329, 329, 329, 0, 46, 0, 1313, 0, 46, 329,
46, 0, 329, 46, 0, 46, 46, 0, 46, 0,
46, 0, 46, 0, 46, 46, 46, 46, 0, 0,
46, 46, 0, 0, 0, 0, 46, 0, 46, 46,
46, 0, 0, 46, 0, 46, 0, 46, 0, 0,
46, 0, 46, 46, 46, 46, 0, 0, 0, 46,
46, 46, 0, 0, 46, 46, 46, 0, 0, 0,
0, 0, 0, 46, 46, 0, 46, 46, 0, 46,
46, 46, 0, 0, 0, 46, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 46, 0, 46, 0, 46, 0, 46,
0, 79, 46, 0, 46, 46, 0, 46, 0, 46,
46, 46, 0, 46, 46, 46, 46, 0, 0, 46,
46, 0, 0, 0, 0, 46, 0, 46, 46, 46,
0, 0, 46, 0, 46, 0, 46, 0, 0, 46,
0, 46, 46, 46, 46, 0, 0, 0, 46, 46,
46, 46, 0, 46, 46, 46, 0, 0, 0, 0,
0, 0, 46, 46, 0, 46, 46, 0, 46, 46,
46, 0, 0, 0, 46, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 46, 0, 46, 0, 46, 0, 46, 0,
80, 46, 0, 46, 46, 0, 46, 0, 46, 46,
46, 0, 46, 46, 46, 46, 0, 0, 46, 46,
0, 0, 0, 0, 46, 0, 46, 46, 46, 0,
0, 46, 0, 46, 0, 46, 0, 0, 46, 0,
46, 46, 46, 46, 0, 0, 0, 46, 46, 46,
46, 0, 46, 46, 46, 0, 0, 0, 0, 0,
0, 46, 46, 0, 46, 46, 0, 46, 46, 46,
0, 0, 0, 46, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 46, 0, 0, 0,
46, 0, 46, 46, 0, 46, 0, 46, 46, 210,
46, 0, 46, 0, 46, 0, 46, 46, 46, 46,
0, 0, 46, 46, 0, 0, 0, 0, 46, 0,
46, 46, 46, 0, 0, 46, 0, 46, 329, 46,
0, 0, 46, 0, 46, 46, 46, 46, 0, 0,
0, 46, 46, 46, 0, 0, 46, 46, 46, 46,
0, 329, 0, 0, 0, 46, 46, 0, 46, 46,
0, 46, 46, 46, 329, 0, 0, 46, 0, 329,
0, 0, 329, 0, 329, 0, 329, 329, 329, 329,
0, 0, 0, 0, 329, 0, 0, 46, 329, 0,
0, 0, 329, 211, 0, 0, 448, 0, 0, 0,
329, 0, 0, 329, 0, 329, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 449,
0, 0, 0, 0, 329, 0, 0, 0, 0, 329,
0, 0, 450, 0, 0, 0, 329, 452, 261, 0,
329, 0, 453, 46, 454, 455, 456, 457, 0, 0,
0, 0, 458, 329, 0, 0, 459, 0, 0, 0,
1298, 0, 0, 56, 24, 0, 25, 0, 460, 26,
253, 461, 0, 462, 27, 61, 62, 0, 28, 0,
0, 0, 0, 0, 64, 329, 0, 30, 0, 0,
0, 0, 0, 0, 32, 0, 0, 463, 0, 33,
0, 71, 72, 34, 0, 586, 0, 0, 0, 0,
0, 0, 587, 0, 0, 36, 0, 37, 74, 0,
0, 38, 0, 0, 76, 0, 78, 0, 80, 39,
40, 254, 0, 41, 0, 0, 0, 0, 0, 0,
588, 0, 0, 87, 88, 0, 0, 0, 0, 0,
0, 0, 0, 1299, 0, 0, 0, 0, 89, 90,
91, 92, 93, 0, 0, 0, 0, 0, 0, 0,
95, 913, 0, 589, 0, 0, 97, 98, 99, 100,
0, 0, 0, 101, 0, 102, 0, 0, 0, 0,
0, 103, 104, 0, 0, 0, 0, 0, 0, 56,
24, 0, 25, 0, 0, 26, 253, 0, 0, 0,
27, 61, 62, 0, 28, 0, 105, 106, 107, 108,
64, 0, 0, 30, 0, 0, 0, 0, 0, 0,
32, 0, 0, 0, 0, 33, 0, 71, 72, 34,
0, 586, 0, 0, 0, 0, 0, 0, 587, 0,
0, 36, 0, 37, 74, 0, 0, 38, 0, 0,
76, 0, 78, 0, 80, 39, 40, 254, 0, 41,
0, 0, 0, 0, 0, 0, 588, 0, 0, 87,
88, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 89, 90, 91, 92, 93, 0,
0, 0, 0, 0, 0, 0, 95, 0, 0, 589,
0, 0, 97, 98, 99, 100, 0, 0, 0, 101,
0, 102, 0, 0, 0, 0, 0, 103, 104, 0,
0, 0, 0, 0, 0, 56, 24, 0, 25, 0,
0, 26, 253, 0, 0, 0, 27, 61, 62, 0,
28, 0, 105, 106, 107, 108, 64, 0, 0, 30,
0, 0, 0, 0, 0, 0, 32, 0, 0, 0,
0, 33, 0, 71, 72, 34, 0, 586, 0, 0,
0, 0, 0, 0, 587, 0, 0, 36, 0, 37,
74, 0, 0, 38, 0, 0, 76, 0, 78, 0,
80, 39, 40, 254, 0, 41, 0, 0, 0, 0,
0, 0, 588, 0, 0, 87, 88, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
89, 90, 91, 92, 93, 0, 0, 0, 0, 0,
0, 0, 95, 0, 0, 0, 0, 0, 97, 98,
99, 100, 0, 0, 0, 101, 0, 102, 0, 0,
0, 0, 0, 103, 104, 0, 0, 0, 0, 0,
0, 56, 24, 0, 25, 0, 0, 26, 253, 0,
0, 0, 27, 61, 62, 0, 28, 0, 105, 106,
107, 108, 64, 0, 0, 30, 0, 0, 0, 0,
0, 0, 32, 0, 0, 0, 0, 33, 0, 71,
72, 34, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 36, 0, 37, 74, 0, 0, 38,
0, 0, 76, 0, 78, 0, 80, 39, 40, 254,
0, 41, 0, 0, 84, 0, 0, 0, 86, 0,
0, 87, 88, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 89, 90, 91, 92,
300, 0, 0, 0, 0, 0, 0, 0, 95, 0,
0, 0, 0, 0, 97, 98, 99, 100, 0, 0,
0, 101, 0, 102, 0, 0, 0, 0, 0, 103,
104, 0, 0, 0, 0, 0, 0, 56, 24, 0,
25, 0, 0, 26, 253, 0, 0, 0, 27, 61,
62, 0, 28, 0, 105, 301, 107, 108, 64, 0,
0, 30, 0, 0, 0, 0, 0, 0, 32, 0,
0, 0, 0, 33, 0, 71, 72, 34, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 36,
0, 37, 74, 0, 0, 38, 0, 0, 76, 0,
78, 0, 80, 39, 40, 254, 0, 41, 0, 0,
0, 0, 0, 0, 86, 0, 0, 87, 88, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 89, 90, 91, 92, 300, 0, 0, 0,
0, 870, 0, 0, 95, 0, 0, 0, 0, 0,
97, 98, 99, 100, 0, 0, 0, 101, 0, 102,
0, 0, 0, 0, 0, 103, 104, 0, 0, 0,
0, 0, 0, 56, 24, 0, 25, 0, 0, 26,
253, 0, 0, 0, 27, 61, 62, 0, 28, 0,
105, 301, 107, 108, 64, 0, 0, 30, 0, 0,
0, 0, 0, 0, 32, 0, 0, 0, 0, 33,
0, 71, 72, 34, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 36, 0, 37, 74, 0,
0, 38, 0, 0, 76, 0, 78, 0, 80, 39,
40, 254, 0, 41, 0, 0, 0, 0, 0, 0,
86, 0, 0, 87, 88, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 89, 90,
91, 92, 300, 0, 0, 0, 511, 0, 0, 0,
95, 0, 0, 0, 0, 0, 97, 98, 99, 100,
0, 0, 0, 101, 0, 102, 0, 0, 0, 0,
0, 103, 104, 0, 0, 0, 0, 0, 0, 56,
24, 0, 25, 0, 0, 26, 253, 0, 0, 0,
27, 61, 62, 0, 28, 0, 105, 301, 107, 108,
64, 0, 0, 30, 0, 0, 0, 0, 0, 0,
32, 0, 0, 0, 0, 33, 0, 71, 72, 34,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 36, 0, 37, 74, 0, 0, 38, 0, 0,
76, 0, 78, 0, 80, 39, 40, 254, 0, 41,
0, 0, 0, 0, 0, 0, 86, 0, 0, 87,
88, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 89, 90, 91, 92, 300, 0,
0, 0, 505, 0, 0, 0, 95, 0, 0, 0,
0, 0, 97, 98, 99, 100, 0, 0, 0, 101,
0, 102, 0, 0, 0, 0, 0, 103, 104, 0,
0, 0, 0, 0, 0, 56, 24, 0, 25, 0,
0, 26, 253, 0, 0, 0, 27, 61, 62, 0,
28, 0, 105, 301, 107, 108, 64, 0, 0, 30,
0, 0, 0, 0, 0, 0, 32, 0, 0, 0,
0, 33, 0, 71, 72, 34, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 36, 0, 37,
74, 0, 0, 38, 0, 0, 76, 0, 78, 0,
80, 39, 40, 254, 0, 41, 0, 0, 0, 0,
0, 0, 86, 0, 0, 87, 88, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
89, 90, 91, 92, 300, 0, 0, 0, 0, 0,
0, 0, 95, 0, 0, 0, 0, 0, 97, 98,
99, 100, 0, 0, 0, 101, 0, 102, 0, 0,
0, 0, 0, 103, 104, 0, 0, 0, 0, 0,
0, 56, 24, 0, 25, 0, 0, 26, 253, 0,
0, 0, 27, 61, 62, 0, 28, 0, 105, 301,
107, 108, 64, 0, 0, 30, 0, 0, 0, 0,
0, 0, 32, 0, 0, 0, 0, 33, 0, 71,
72, 34, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 36, 0, 37, 74, 0, 0, 38,
0, 0, 76, 0, 78, 0, 80, 39, 40, 254,
0, 41, 0, 0, 0, 0, 0, 0, 86, 0,
0, 87, 88, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 89, 90, 91, 92,
93, 0, 0, 0, 0, 0, 0, 0, 95, 0,
0, 0, 0, 0, 97, 98, 99, 100, 0, 0,
0, 101, 0, 102, 0, 0, 0, 0, 0, 103,
104, 0, 0, 0, 0, 0, 0, 56, 24, 0,
25, 0, 0, 26, 253, 0, 0, 0, 27, 61,
62, 0, 28, 0, 105, 106, 107, 108, 64, 0,
0, 30, 0, 0, 0, 0, 0, 0, 32, 0,
0, 0, 0, 33, 0, 71, 72, 34, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 36,
0, 37, 74, 0, 0, 38, 0, 0, 76, 0,
78, 0, 80, 39, 40, 254, 0, 41, 0, 0,
0, 0, 0, 0, 86, 0, 0, 87, 88, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 89, 90, 91, 92, 93, 0, 0, 0,
0, 0, 0, 0, 95, 0, 0, 0, 0, 0,
97, 98, 99, 100, 0, 0, 0, 101, 0, 102,
0, 0, 0, 0, 0, 103, 104, 0, 0, 0,
0, 0, 0, 76, 76, 0, 76, 0, 0, 76,
76, 0, 0, 0, 76, 76, 76, 0, 76, 0,
105, 1025, 107, 108, 76, 0, 0, 76, 0, 0,
0, 0, 0, 0, 76, 0, 0, 0, 0, 76,
0, 76, 76, 76, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 76, 0, 76, 76, 0,
0, 76, 0, 0, 76, 0, 76, 0, 76, 76,
76, 76, 0, 76, 0, 0, 0, 0, 0, 0,
76, 0, 0, 76, 76, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 76, 76,
76, 76, 76, 0, 0, 0, 0, 0, 0, 0,
76, 0, 0, 0, 0, 0, 76, 76, 76, 76,
0, 0, 0, 76, 0, 76, 0, 0, 0, 0,
0, 76, 76, 0, 0, 0, 0, 0, 0, 133,
133, 0, 133, 0, 0, 133, 133, 0, 0, 0,
133, 133, 133, 0, 133, 0, 76, 76, 76, 76,
133, 0, 0, 133, 0, 0, 0, 0, 0, 0,
133, 0, 0, 0, 0, 133, 0, 133, 133, 133,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 133, 0, 133, 133, 0, 0, 133, 0, 0,
133, 0, 133, 0, 133, 133, 133, 133, 0, 133,
0, 0, 0, 0, 0, 0, 133, 0, 0, 133,
133, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 133, 133, 133, 133, 133, 0,
0, 0, 0, 0, 0, 0, 133, 0, 0, 0,
0, 0, 133, 133, 133, 133, 0, 0, 0, 133,
0, 133, 0, 0, 0, 0, 0, 133, 133, 0,
0, 0, 0, 0, 0, 56, 24, 0, 25, 0,
0, 26, 253, 0, 0, 0, 27, 61, 62, 0,
28, 0, 133, 133, 133, 133, 64, 0, 0, 30,
0, 0, 0, 0, 0, 0, 32, 0, 27, 0,
27, 33, 0, 71, 72, 34, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 36, 0, 37,
74, 27, 0, 38, 0, 0, 76, 0, 78, 0,
80, 39, 40, 254, 27, 41, 0, 0, 0, 27,
0, 0, 0, 0, 27, 0, 27, 27, 27, 27,
0, 0, 0, 0, 27, 0, 0, 0, 27, 0,
89, 90, 91, 255, 300, 0, 0, 0, 0, 0,
27, 0, 95, 27, 0, 27, 0, 0, 97, 98,
99, 100, 0, 0, 0, 101, 0, 102, 0, 0,
0, 0, 0, 103, 104, 0, 0, 0, 0, 27,
0, 0, 0, 0, 0, 27, 27, 0, 0, 0,
0, 0, 0, 635, 0, 635, 0, 635, 105, 256,
635, 108, 635, 635, 0, 635, 0, 635, 0, 635,
0, 635, 635, 635, 0, 0, 0, 635, 635, 0,
0, 0, 0, 635, 0, 635, 635, 0, 0, 0,
635, 0, 0, 0, 635, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 635, 635, 0, 635, 0,
0, 0, 635, 635, 0, 0, 0, 0, 0, 0,
635, 635, 56, 24, 635, 25, 0, 635, 26, 253,
0, 0, 635, 27, 61, 62, 0, 28, 0, 0,
0, 0, 0, 64, 0, 0, 30, 0, 0, 0,
0, 0, 0, 32, 635, 635, 0, 0, 33, 0,
71, 72, 34, 0, 0, 0, 0, 635, 0, 0,
0, 0, 0, 0, 36, 0, 37, 74, 0, 0,
38, 0, 0, 76, 0, 78, 0, 80, 39, 40,
254, 0, 41, 0, 0, 84, 0, 0, 0, 0,
0, 0, 24, 0, 25, 0, 0, 26, 635, 1208,
0, 0, 27, 0, 0, 0, 28, 89, 90, 91,
255, 0, 0, 0, 0, 30, 634, 0, 634, 95,
0, 634, 32, 634, 634, 0, 634, 33, 634, 1209,
634, 34, 634, 634, 634, 0, 0, 0, 634, 634,
0, 0, 0, 36, 634, 37, 634, 634, 0, 38,
1210, 634, 0, 0, 0, 634, 0, 39, 40, 0,
0, 41, 0, 0, 319, 105, 256, 634, 0, 634,
0, 0, 0, 634, 634, 0, 0, 0, 0, 0,
0, 634, 634, 0, 634, 634, 634, 0, 634, 634,
0, 634, 634, 634, 634, 0, 634, 0, 634, 0,
634, 634, 634, 0, 0, 0, 634, 634, 0, 0,
0, 0, 634, 0, 634, 634, 0, 0, 0, 634,
0, 0, 0, 634, 0, 0, 0, 0, 634, 0,
0, 0, 0, 0, 0, 634, 0, 634, 0, 0,
0, 634, 634, 0, 0, 352, 0, 0, 0, 634,
634, 0, 0, 634, 0, 0, 634, 0, 24, 0,
25, 634, 0, 26, 0, 0, 1268, 0, 27, 634,
675, 0, 28, 0, 676, 1269, 1270, 0, 0, 0,
1271, 30, 0, 0, 0, 0, 1272, 0, 32, 0,
24, 0, 25, 33, 0, 26, 0, 34, 1268, 0,
27, 0, 675, 0, 28, 0, 676, 1269, 1270, 36,
0, 37, 1271, 30, 0, 38, 0, 0, 1272, 0,
32, 0, 0, 39, 40, 33, 0, 41, 0, 34,
1273, 0, 0, 0, 46, 1274, 46, 634, 0, 46,
0, 36, 0, 37, 46, 0, 0, 38, 46, 0,
0, 0, 0, 0, 0, 39, 40, 46, 0, 41,
0, 0, 1273, 0, 46, 0, 46, 1274, 46, 46,
1275, 46, 0, 46, 0, 46, 46, 46, 0, 0,
46, 0, 46, 0, 0, 46, 0, 46, 0, 46,
0, 46, 0, 0, 46, 0, 46, 0, 0, 46,
46, 46, 0, 46, 0, 46, 46, 46, 0, 46,
46, 1276, 46, 0, 46, 46, 0, 46, 0, 46,
46, 0, 0, 46, 46, 0, 46, 0, 0, 0,
0, 46, 46, 46, 0, 46, 0, 0, 46, 0,
46, 151, 24, 1276, 25, 46, 0, 26, 0, 46,
0, 46, 27, 46, 0, 0, 28, 0, 46, 0,
0, 46, 0, 46, 0, 30, 0, 46, 0, 0,
46, 151, 32, 0, 0, 46, 46, 33, 0, 46,
0, 34, 46, 563, 0, 0, 0, 46, 0, 0,
564, 0, 0, 36, 0, 37, 0, 0, 0, 38,
0, 0, 565, 0, 0, 0, 0, 39, 40, 0,
0, 41, 0, 24, 566, 25, 0, 0, 26, 46,
0, 0, 0, 27, 0, 0, 0, 28, 0, 0,
0, 29, 24, 0, 25, 0, 30, 26, 0, 0,
0, 31, 27, 32, 0, 0, 28, 0, 33, 0,
0, 0, 34, 35, 0, 30, 0, 0, 0, 0,
0, 0, 32, 46, 36, 0, 37, 33, 0, 0,
38, 34, 0, 0, 0, 0, 0, 0, 39, 40,
0, 0, 41, 36, 0, 37, 483, 0, 483, 38,
0, 483, 0, 0, 0, 567, 483, 39, 40, 0,
483, 41, 0, 171, 319, 171, 0, 0, 171, 483,
0, 0, 0, 171, 0, 0, 483, 171, 0, 0,
0, 483, 0, 0, 0, 483, 171, 0, 0, 0,
290, 0, 0, 171, 0, 0, 0, 483, 171, 483,
0, 0, 171, 483, 0, 0, 0, 0, 0, 0,
0, 483, 483, 0, 171, 483, 171, 170, 483, 170,
171, 0, 170, 0, 0, 0, 42, 170, 171, 171,
0, 170, 171, 0, 0, 171, 0, 0, 0, 0,
170, 180, 0, 180, 0, 320, 180, 170, 0, 0,
0, 180, 170, 0, 0, 180, 170, 0, 0, 0,
0, 0, 0, 0, 180, 0, 0, 0, 170, 0,
170, 180, 0, 0, 170, 0, 180, 0, 0, 0,
180, 0, 170, 170, 0, 33, 170, 0, 0, 170,
0, 0, 180, 0, 180, 0, 33, 0, 180, 483,
0, 33, 0, 0, 0, 33, 180, 180, 33, 0,
180, 0, 0, 180, 0, 0, 171, 0, 0, 0,
33, 33, 0, 0, 0, 33, 33, 0, 31, 0,
0, 33, 0, 33, 33, 33, 33, 0, 0, 31,
0, 33, 0, 0, 31, 33, 0, 33, 31, 0,
0, 31, 0, 0, 0, 0, 0, 33, 0, 33,
33, 0, 33, 31, 31, 0, 33, 0, 31, 31,
170, 0, 0, 0, 31, 0, 31, 31, 31, 31,
0, 0, 0, 0, 31, 0, 33, 0, 31, 0,
31, 46, 33, 33, 180, 0, 0, 0, 0, 0,
31, 0, 46, 31, 0, 31, 0, 46, 0, 31,
0, 46, 0, 0, 46, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 46, 46, 0, 31,
0, 46, 46, 0, 46, 31, 31, 46, 0, 46,
46, 46, 46, 0, 0, 46, 0, 46, 0, 0,
46, 46, 0, 46, 46, 0, 0, 46, 0, 0,
0, 0, 0, 46, 0, 0, 46, 0, 46, 46,
46, 0, 46, 0, 46, 46, 46, 0, 0, 0,
46, 0, 46, 46, 46, 46, 0, 0, 0, 0,
46, 0, 46, 0, 46, 0, 46, 0, 35, 46,
0, 0, 0, 0, 0, 0, 46, 0, 0, 46,
0, 46, 46, 0, 46, 46, 0, 46, 0, 0,
0, 0, 46, 0, 46, 46, 46, 46, 0, 0,
0, 0, 46, 0, 0, 46, 46, 46, 0, 0,
0, 36, 0, 0, 0, 0, 0, 0, 46, 0,
46, 46, 46, 46, 0, 46, 0, 0, 0, 0,
46, 0, 46, 46, 46, 46, 0, 0, 0, 0,
46, 0, 0, 0, 46, 46, 0, 46, 0, 46,
46, 0, 0, 192, 0, 0, 46, 0, 46, 46,
46, 46, 46, 46, 0, 0, 0, 0, 46, 0,
46, 46, 46, 46, 0, 0, 46, 0, 46, 0,
0, 0, 46, 46, 0, 46, 0, 46, 46, 0,
0, 194, 0, 0, 46, 0, 46, 46, 46, 46,
0, 46, 0, 0, 0, 0, 46, 0, 46, 46,
46, 46, 0, 0, 0, 0, 46, 0, 0, 0,
46, 46, 0, 46, 0, 0, 0, 0, 46, 294,
46, 0, 46, 0, 46, 46, 0, 46, 0, 46,
0, 0, 0, 0, 46, 0, 46, 46, 46, 46,
0, 46, 0, 0, 46, 0, 0, 0, 46, 0,
0, 46, 0, 0, 46, 0, 0, 295, 448, 46,
46, 0, 0, 46, 46, 46, 46, 46, 46, 46,
0, 0, 46, 0, 46, 0, 0, 0, 46, 0,
0, 449, 0, 0, 0, 0, 0, 0, 448, 46,
46, 46, 46, 46, 450, 46, 0, 0, 451, 452,
0, 0, 0, 0, 453, 0, 454, 455, 456, 457,
0, 449, 0, 0, 458, 0, 0, 0, 459, 46,
0, 0, 0, 0, 450, 0, 0, 0, 0, 452,
460, 0, 0, 461, 453, 462, 454, 455, 456, 457,
0, 0, 0, 0, 458, 0, 0, 0, 459, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 463,
460, 0, 0, 461, 0, 462, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 463,
};
protected static readonly short [] yyCheck = { 17,
298, 17, 51, 17, 4, 68, 509, 20, 18, 299,
511, 17, 189, 20, 232, 465, 188, 288, 351, 84,
552, 6, 157, 247, 87, 88, 336, 485, 59, 92,
329, 318, 351, 297, 295, 919, 1094, 59, 769, 47,
736, 569, 234, 256, 58, 577, 268, 256, 113, 77,
115, 710, 256, 712, 0, 73, 256, 1129, 1130, 77,
256, 325, 256, 256, 17, 79, 113, 81, 115, 256,
256, 1215, 256, 256, 87, 88, 924, 95, 256, 268,
256, 256, 256, 256, 325, 268, 17, 1231, 256, 282,
17, 256, 256, 256, 363, 108, 256, 756, 371, 335,
759, 17, 256, 368, 1176, 872, 21, 0, 391, 172,
349, 350, 268, 294, 418, 372, 883, 17, 368, 17,
276, 314, 418, 372, 428, 306, 654, 373, 17, 17,
376, 414, 17, 256, 343, 373, 376, 52, 376, 157,
189, 157, 366, 157, 408, 339, 368, 420, 17, 418,
344, 157, 346, 256, 358, 339, 369, 17, 352, 353,
344, 17, 346, 256, 429, 340, 256, 256, 352, 353,
59, 367, 429, 369, 63, 371, 363, 418, 256, 429,
429, 381, 391, 232, 247, 339, 199, 200, 256, 429,
429, 277, 525, 429, 256, 368, 259, 87, 88, 375,
422, 374, 1050, 381, 157, 414, 505, 363, 1089, 257,
508, 429, 713, 256, 547, 223, 191, 381, 108, 428,
424, 425, 426, 427, 420, 418, 157, 423, 547, 247,
157, 418, 418, 422, 252, 429, 569, 418, 430, 422,
363, 157, 552, 228, 418, 429, 1390, 370, 261, 372,
418, 374, 317, 418, 285, 418, 321, 157, 418, 157,
323, 326, 418, 285, 295, 328, 369, 577, 157, 157,
288, 0, 157, 1417, 287, 293, 294, 363, 1009, 326,
370, 374, 262, 372, 374, 1429, 299, 1431, 157, 307,
256, 369, 314, 306, 312, 418, 314, 157, 256, 313,
318, 157, 370, 366, 367, 367, 374, 256, 256, 199,
200, 257, 330, 331, 376, 256, 325, 256, 298, 256,
336, 654, 358, 982, 256, 853, 1384, 355, 1024, 372,
336, 368, 418, 419, 256, 348, 655, 355, 351, 369,
335, 1072, 675, 373, 257, 320, 266, 266, 366, 367,
413, 414, 415, 371, 372, 373, 374, 375, 376, 377,
378, 379, 380, 381, 257, 264, 368, 1175, 349, 350,
894, 261, 385, 386, 371, 368, 372, 352, 1450, 272,
429, 418, 357, 884, 277, 403, 1194, 1271, 281, 263,
439, 339, 341, 423, 314, 314, 285, 287, 378, 379,
413, 414, 368, 296, 6, 863, 368, 1479, 374, 418,
697, 368, 372, 363, 372, 17, 306, 339, 431, 367,
369, 484, 418, 486, 431, 314, 325, 429, 436, 437,
323, 372, 445, 372, 442, 372, 429, 369, 445, 277,
343, 315, 1323, 281, 1103, 367, 509, 336, 429, 342,
783, 1110, 349, 350, 715, 375, 375, 59, 348, 683,
435, 63, 525, 485, 783, 479, 529, 429, 418, 429,
1351, 1352, 429, 1354, 1282, 976, 1135, 1001, 1286, 1003,
256, 368, 305, 256, 1365, 87, 88, 1368, 391, 507,
376, 509, 372, 511, 469, 385, 386, 256, 1199, 343,
382, 383, 1383, 1311, 342, 568, 108, 521, 522, 1419,
1420, 414, 525, 256, 396, 397, 373, 535, 525, 376,
853, 294, 540, 413, 414, 428, 1407, 256, 363, 305,
272, 418, 429, 852, 547, 277, 552, 381, 343, 281,
374, 1242, 1201, 429, 363, 559, 552, 391, 372, 429,
374, 263, 850, 339, 296, 157, 569, 372, 344, 374,
346, 577, 305, 349, 350, 1475, 352, 353, 586, 587,
414, 577, 635, 367, 637, 305, 381, 371, 877, 803,
339, 323, 416, 418, 428, 344, 391, 346, 374, 724,
256, 369, 567, 352, 353, 363, 485, 199, 200, 418,
342, 369, 376, 315, 579, 429, 581, 1139, 583, 414,
339, 1199, 363, 1199, 429, 633, 374, 881, 369, 357,
683, 639, 376, 428, 357, 363, 420, 1199, 376, 919,
1199, 369, 339, 1199, 372, 373, 374, 700, 367, 357,
373, 654, 371, 429, 373, 374, 375, 376, 386, 341,
418, 272, 381, 386, 1242, 1199, 1242, 269, 416, 261,
367, 977, 675, 552, 1199, 683, 367, 418, 386, 376,
1242, 646, 272, 1242, 286, 296, 1242, 369, 1136, 697,
418, 386, 747, 285, 715, 287, 371, 750, 577, 1005,
665, 676, 979, 991, 418, 713, 296, 299, 1242, 381,
718, 367, 323, 369, 306, 371, 372, 1242, 374, 391,
376, 339, 314, 272, 379, 357, 344, 384, 346, 782,
944, 349, 350, 323, 352, 353, 381, 369, 741, 743,
372, 373, 414, 414, 336, 798, 391, 296, 401, 369,
803, 306, 372, 761, 386, 763, 348, 428, 313, 351,
413, 764, 418, 767, 420, 769, 819, 423, 339, 414,
778, 1198, 1199, 344, 323, 346, 779, 391, 349, 350,
783, 352, 353, 428, 1289, 306, 389, 308, 827, 421,
798, 1218, 313, 385, 386, 803, 804, 1302, 806, 1060,
414, 306, 385, 374, 325, 414, 1094, 1107, 313, 817,
818, 429, 294, 400, 428, 1242, 1321, 1244, 390, 428,
325, 413, 414, 294, 306, 357, 371, 370, 373, 369,
357, 710, 835, 712, 418, 888, 1097, 890, 835, 1139,
848, 373, 850, 896, 387, 388, 373, 392, 393, 371,
853, 854, 415, 256, 386, 256, 369, 865, 429, 386,
1022, 741, 1302, 277, 872, 840, 269, 412, 381, 922,
367, 1171, 1133, 1087, 882, 420, 884, 756, 423, 376,
759, 1372, 339, 286, 764, 418, 357, 344, 367, 346,
418, 944, 363, 485, 418, 352, 353, 376, 369, 779,
368, 372, 373, 376, 428, 367, 374, 960, 371, 371,
373, 373, 374, 381, 376, 386, 919, 367, 926, 381,
928, 371, 930, 373, 374, 367, 376, 371, 893, 373,
1253, 381, 367, 525, 376, 376, 944, 1260, 941, 367,
1148, 376, 367, 1434, 941, 1206, 949, 418, 376, 367,
421, 376, 374, 415, 376, 547, 339, 1124, 376, 381,
552, 344, 367, 346, 369, 415, 349, 350, 976, 352,
353, 979, 367, 372, 854, 374, 951, 569, 953, 1470,
955, 372, 339, 374, 59, 577, 372, 344, 374, 346,
376, 1271, 349, 350, 370, 352, 353, 367, 374, 1492,
1493, 371, 373, 373, 374, 1009, 376, 376, 1016, 370,
1018, 381, 1020, 374, 394, 395, 370, 371, 93, 373,
374, 375, 97, 98, 99, 100, 101, 102, 103, 104,
398, 399, 370, 371, 1087, 1000, 374, 374, 372, 376,
374, 1031, 376, 370, 370, 372, 429, 374, 374, 294,
370, 370, 1060, 368, 374, 374, 371, 294, 373, 374,
376, 370, 654, 372, 372, 374, 1074, 1075, 1072, 949,
343, 370, 429, 372, 1082, 354, 355, 392, 393, 1087,
386, 387, 388, 675, 414, 1124, 1094, 1126, 1088, 1097,
391, 392, 393, 394, 364, 365, 1384, 412, 374, 376,
376, 1107, 370, 982, 372, 420, 1114, 418, 423, 1148,
370, 1107, 372, 1121, 370, 372, 372, 374, 710, 372,
712, 374, 414, 415, 1127, 1133, 368, 418, 374, 371,
376, 373, 374, 1139, 370, 418, 372, 1145, 1146, 370,
1179, 372, 374, 1139, 376, 374, 374, 376, 376, 741,
392, 393, 354, 355, 349, 350, 372, 373, 369, 1198,
1199, 364, 365, 261, 756, 1171, 375, 759, 1092, 1093,
412, 372, 764, 395, 396, 1171, 372, 1180, 420, 1218,
1188, 423, 389, 390, 376, 368, 284, 779, 374, 294,
372, 783, 372, 1246, 1197, 294, 1204, 374, 1206, 297,
372, 372, 372, 1242, 302, 1244, 374, 305, 371, 307,
285, 309, 310, 311, 312, 376, 256, 374, 294, 317,
295, 375, 294, 321, 1103, 300, 381, 325, 1107, 372,
356, 1110, 374, 373, 375, 333, 374, 373, 336, 418,
338, 372, 381, 376, 374, 374, 374, 423, 429, 1252,
1253, 374, 1256, 372, 381, 367, 1135, 1260, 374, 421,
1139, 853, 854, 372, 362, 1268, 1269, 373, 1271, 372,
343, 294, 374, 294, 1277, 402, 403, 404, 405, 406,
407, 408, 409, 410, 411, 0, 1289, 374, 1291, 370,
375, 1294, 1171, 418, 371, 370, 261, 418, 367, 1302,
256, 256, 256, 1307, 374, 256, 280, 382, 383, 384,
381, 1276, 387, 388, 256, 367, 372, 1197, 1321, 284,
418, 368, 1201, 1362, 343, 376, 370, 919, 371, 374,
376, 370, 297, 374, 1299, 372, 372, 302, 376, 372,
1379, 423, 307, 347, 309, 310, 311, 312, 1313, 381,
315, 351, 317, 1392, 1393, 367, 321, 949, 256, 381,
256, 381, 372, 376, 1372, 1330, 1370, 1332, 333, 368,
347, 336, 1252, 338, 370, 370, 1384, 374, 367, 370,
1419, 1420, 375, 375, 372, 348, 368, 418, 1268, 1269,
982, 374, 418, 1401, 374, 339, 372, 362, 348, 368,
367, 376, 375, 368, 369, 367, 367, 356, 368, 381,
376, 1291, 371, 337, 1294, 368, 374, 305, 256, 371,
368, 263, 368, 93, 418, 372, 1434, 97, 98, 99,
100, 101, 102, 103, 104, 371, 1475, 418, 369, 1492,
1493, 367, 371, 376, 371, 61, 371, 418, 418, 65,
66, 67, 371, 69, 70, 373, 367, 371, 74, 75,
381, 418, 1470, 369, 381, 81, 371, 83, 372, 85,
372, 374, 1476, 1477, 90, 91, 0, 374, 373, 1483,
1484, 373, 376, 374, 1492, 1493, 418, 374, 372, 372,
370, 376, 381, 372, 376, 418, 418, 372, 114, 574,
376, 367, 418, 372, 368, 370, 368, 381, 315, 372,
371, 1103, 371, 368, 372, 1107, 372, 0, 1110, 0,
367, 372, 376, 368, 0, 368, 376, 376, 372, 368,
370, 372, 418, 367, 367, 1127, 368, 372, 368, 0,
376, 256, 257, 1135, 370, 418, 261, 1139, 418, 376,
265, 372, 267, 376, 376, 270, 372, 272, 273, 376,
275, 372, 277, 368, 279, 368, 281, 282, 283, 284,
367, 372, 287, 288, 368, 368, 372, 376, 293, 1171,
295, 296, 297, 367, 373, 300, 301, 302, 1180, 304,
376, 376, 307, 376, 309, 310, 311, 312, 376, 376,
376, 316, 317, 318, 376, 1197, 321, 322, 323, 1201,
376, 315, 263, 50, 12, 330, 331, 51, 333, 334,
5, 336, 337, 338, 941, 835, 1087, 342, 1087, 1244,
300, 1424, 1218, 1387, 1440, 1375, 1370, 1404, 254, 1277,
715, 257, 856, 856, 856, 675, 852, 362, 1289, 1484,
1308, 1242, 1230, 368, 369, 689, 1478, 1393, 1397, 329,
1252, 1253, 377, 1392, 1179, 1477, 1332, 1277, 1260, 827,
1180, 803, 525, 877, 798, 587, 1268, 1269, 366, 1271,
683, 297, 71, 718, 991, 332, 715, 397, 399, 398,
402, 783, 400, 1162, 310, 401, 1252, 1171, 1107, 1291,
370, 547, 1294, 418, 157, 1052, 978, 0, 1075, 1005,
962, 1063, 382, 383, 384, 1065, 1136, 387, 388, 389,
390, 391, 392, 393, 394, 395, 396, 397, 398, 399,
400, 401, 402, 257, 898, 523, 421, 261, 1146, 1248,
833, 832, -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, -1, -1, -1,
-1, -1, 296, 297, -1, -1, -1, 301, 302, -1,
-1, -1, -1, 307, -1, 309, 310, 311, 312, -1,
-1, -1, -1, 317, -1, 256, -1, 321, -1, 323,
261, 262, -1, -1, -1, -1, -1, -1, -1, 333,
-1, 335, 336, -1, 338, -1, -1, -1, 342, -1,
-1, -1, -1, 284, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 505, 297, 298, 362, -1,
-1, 302, -1, -1, 305, 369, 307, -1, 309, 310,
311, 312, -1, -1, -1, -1, 317, -1, -1, -1,
321, -1, -1, -1, 325, 481, -1, -1, -1, -1,
-1, -1, 333, -1, -1, 336, -1, 338, 339, -1,
-1, -1, -1, 344, 0, 346, 347, 348, 349, 350,
351, 352, 353, 354, 355, 356, -1, -1, -1, -1,
-1, 362, 363, -1, 574, 521, 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, -1, -1, -1, 299, 300, -1, 302,
303, 304, -1, 0, -1, -1, -1, -1, -1, 256,
-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, 339, -1, -1, -1, -1, 344, -1, 346,
347, 348, 349, 350, 351, 352, 353, 354, 355, 356,
-1, -1, -1, -1, 417, 418, 419, 420, -1, 422,
-1, 368, -1, 370, -1, 372, 429, 374, 375, 376,
256, 257, -1, -1, -1, -1, -1, -1, 264, 265,
266, 267, 268, 390, 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, 429, -1, -1, -1, -1, -1, 314, -1,
316, -1, 318, 319, -1, -1, 322, 877, 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, -1, -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,
-1, -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, 0, 382, 383,
384, 385, 256, -1, -1, 389, 390, 261, 262, -1,
394, 395, 396, 397, 398, 399, 400, 401, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 413,
284, -1, 416, -1, 418, -1, 420, -1, -1, 423,
-1, -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,
0, -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, -1, 284, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -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, 256, -1, 362, 363, -1, -1, 262,
367, 368, -1, 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, 298, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 413, -1, 0, 416,
-1, 418, -1, 256, -1, -1, -1, -1, -1, 262,
-1, -1, 429, -1, -1, -1, -1, -1, -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, 357, 298, -1, -1, -1, -1,
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, 0,
-1, -1, -1, -1, -1, -1, 256, -1, -1, -1,
413, -1, 262, 416, -1, 418, -1, 420, -1, -1,
423, -1, -1, -1, -1, 368, 429, -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, 0, 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, 363, -1, -1, -1, 367, 368, -1,
370, 371, 372, -1, 374, 375, 376, -1, 378, 379,
-1, 0, 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, -1, -1, -1,
-1, -1, -1, 413, -1, 257, 416, -1, 418, 261,
-1, 263, -1, 265, 0, 267, -1, -1, 270, 429,
272, 273, -1, 275, -1, 277, -1, 279, -1, 281,
282, 283, 284, -1, -1, 287, 288, -1, -1, -1,
-1, 293, 294, 295, 296, 297, -1, -1, 300, 301,
302, -1, 304, -1, 306, 307, 308, 309, 310, 311,
312, 313, -1, 315, 316, 317, 318, -1, -1, 321,
322, 323, -1, 325, -1, -1, -1, 0, 330, 331,
-1, 333, 334, -1, 336, 337, 338, -1, -1, -1,
342, -1, -1, -1, -1, -1, 257, -1, -1, -1,
261, -1, -1, -1, -1, -1, -1, -1, -1, -1,
362, 272, 364, 365, -1, -1, 277, -1, -1, -1,
281, -1, -1, 284, 0, 377, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 296, 297, -1, -1, -1,
301, 302, -1, -1, -1, -1, 307, -1, 309, 310,
311, 312, -1, -1, -1, -1, 317, -1, -1, -1,
321, -1, 323, -1, -1, 257, 418, -1, -1, 261,
-1, 0, 333, -1, 335, 336, -1, 338, -1, -1,
272, 342, -1, -1, -1, 277, -1, -1, -1, 281,
-1, -1, 284, -1, -1, -1, -1, -1, -1, -1,
-1, 362, -1, -1, 296, 297, -1, 368, 369, 301,
302, -1, -1, -1, -1, 307, -1, 309, 310, 311,
312, -1, -1, -1, -1, 317, -1, -1, 257, 321,
-1, 323, 261, -1, 0, -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, 368, 369, 307, -1,
309, 310, 311, 312, -1, -1, 272, -1, 317, -1,
-1, 277, 321, -1, 323, 281, -1, 0, 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, -1, 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, -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, -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, -1, 301, 302, -1, -1, -1,
-1, 307, -1, 309, 310, 311, 312, -1, -1, -1,
-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, -1, 301, 302,
-1, -1, -1, -1, 307, -1, 309, 310, 311, 312,
-1, -1, -1, -1, 317, -1, -1, -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, -1, -1, -1, -1, -1,
-1, -1, -1, 417, 418, 419, 420, -1, -1, -1,
-1, 285, 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, -1, -1, -1,
-1, 368, 369, 370, 371, 372, 373, 374, 375, 376,
256, 378, 379, 327, 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, 377, 378, 379, 380, -1, 382, 383,
384, 385, 386, 387, 388, 389, -1, -1, 392, 393,
394, 395, 396, 397, 398, 399, -1, -1, -1, -1,
298, -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, -1, 368, -1, 370, -1, 372, -1, 374, 375,
376, 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, 256,
378, 379, -1, 381, 382, 383, 384, 385, 386, 387,
388, 389, 390, 429, 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, -1, 420, 262, -1, -1, -1, -1, -1, -1,
-1, 429, -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, 298,
-1, -1, 339, -1, -1, -1, -1, 344, -1, 346,
347, 348, 349, 350, 351, 352, 353, 354, 355, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 256, -1,
-1, 368, -1, 370, 262, 372, -1, 374, 375, 376,
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, 429, 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,
-1, 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, 363, -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, 262, -1, -1,
-1, 266, -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, 298, -1, -1, -1, -1, -1, -1,
368, -1, 370, -1, 372, 429, 374, 375, 376, 314,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 390, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 401, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 413, -1, -1, -1, -1,
-1, -1, 357, -1, -1, -1, -1, -1, 363, -1,
-1, 429, -1, -1, 369, -1, 371, -1, 373, -1,
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, 256, -1, 418, -1, 420, -1, -1, 423, 264,
265, 266, 267, -1, 429, 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, 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, 256, -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, -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,
256, -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, -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, 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, 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, -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, -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, 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, -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, -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,
-1, 336, 337, 338, 297, -1, -1, 342, -1, 302,
-1, -1, 305, -1, 307, -1, 309, 310, 311, 312,
-1, -1, -1, -1, 317, -1, -1, 362, 321, -1,
-1, -1, 325, 368, -1, -1, 261, -1, -1, -1,
333, -1, -1, 336, -1, 338, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 284,
-1, -1, -1, -1, 357, -1, -1, -1, -1, 362,
-1, -1, 297, -1, -1, -1, 369, 302, 371, -1,
373, -1, 307, 418, 309, 310, 311, 312, -1, -1,
-1, -1, 317, 386, -1, -1, 321, -1, -1, -1,
325, -1, -1, 264, 265, -1, 267, -1, 333, 270,
271, 336, -1, 338, 275, 276, 277, -1, 279, -1,
-1, -1, -1, -1, 285, 418, -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,
263, 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, -1, -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, -1, 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, -1, 316, 300, 318,
-1, -1, 304, 322, -1, -1, -1, -1, -1, -1,
-1, 330, 331, -1, 316, 334, 318, 265, 337, 267,
322, -1, 270, -1, -1, -1, 418, 275, 330, 331,
-1, 279, 334, -1, -1, 337, -1, -1, -1, -1,
288, 265, -1, 267, -1, 418, 270, 295, -1, -1,
-1, 275, 300, -1, -1, 279, 304, -1, -1, -1,
-1, -1, -1, -1, 288, -1, -1, -1, 316, -1,
318, 295, -1, -1, 322, -1, 300, -1, -1, -1,
304, -1, 330, 331, -1, 261, 334, -1, -1, 337,
-1, -1, 316, -1, 318, -1, 272, -1, 322, 418,
-1, 277, -1, -1, -1, 281, 330, 331, 284, -1,
334, -1, -1, 337, -1, -1, 418, -1, -1, -1,
296, 297, -1, -1, -1, 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, 335,
336, -1, 338, 296, 297, -1, 342, -1, 301, 302,
418, -1, -1, -1, 307, -1, 309, 310, 311, 312,
-1, -1, -1, -1, 317, -1, 362, -1, 321, -1,
323, 261, 368, 369, 418, -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, 261, 368, 369, 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, 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, -1, 302, -1, -1, -1, -1,
307, -1, 309, 310, 311, 312, -1, -1, -1, -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, 315, -1, 317, -1,
-1, -1, 321, 284, -1, 362, -1, 364, 365, -1,
-1, 368, -1, -1, 333, -1, 297, 336, 261, 338,
-1, 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,
263, -1, 333, -1, 297, 336, -1, 338, -1, 302,
-1, -1, -1, -1, 307, -1, 309, 310, 311, 312,
-1, 284, -1, -1, 317, -1, -1, -1, 321, -1,
-1, 362, -1, -1, 297, -1, -1, 368, 261, 302,
333, -1, -1, 336, 307, 338, 309, 310, 311, 312,
-1, -1, 315, -1, 317, -1, -1, -1, 321, -1,
-1, 284, -1, -1, -1, -1, -1, -1, 261, 362,
333, 364, 365, 336, 297, 338, -1, -1, 301, 302,
-1, -1, -1, -1, 307, -1, 309, 310, 311, 312,
-1, 284, -1, -1, 317, -1, -1, -1, 321, 362,
-1, -1, -1, -1, 297, -1, -1, -1, -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 6449 "cs-parser.jay"
// <summary>
// A class used to hold info about an operator declarator
// </summary>
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);
}
TypeContainer pop_current_class ()
{
var retval = current_class;
current_class = current_class.Parent;
current_container = current_class.PartialContainer;
ubag.PopTypeDeclaration ();
return retval;
}
// <summary>
// Given the @class_name name, it creates a fully qualified name
// based on the containing declaration space
// </summary>
MemberName
MakeName (MemberName class_name)
{
if (current_container == module) {
if (current_namespace.MemberName != MemberName.Null)
return new MemberName (current_namespace.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<Tuple<Modifiers, Location>> ();
mod_locations.Add (Tuple.Create ((Modifiers) token, loc));
}
List<Tuple<Modifiers, Location>> 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<object> ();
}
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 (loc);
} else {
if (lang_version == LanguageVersion.ISO_1)
FeatureIsNotAvailable (loc, "anonymous methods");
current_anonymous_method = new AnonymousMethodExpression (loc);
}
current_anonymous_method.IsAsync = isAsync;
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);
}
void Error_SyntaxError (int error_code, int token)
{
Error_SyntaxError (error_code, 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<string> (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 == "<internal>")
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 "<operator>";
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 "<internal>";
// 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