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.
15460 lines
571 KiB
15460 lines
571 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-2012 Xamarin Inc. |
|
// |
|
|
|
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; |
|
TypeDefinition current_type; |
|
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. |
|
/// |
|
Stack<object> oob_stack; |
|
|
|
/// |
|
/// Controls the verbosity of the errors produced by the parser |
|
/// |
|
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 |
|
// |
|
List<Parameter> parameters_bucket; |
|
|
|
// |
|
// Full AST support members |
|
// |
|
LocationsBag lbag; |
|
List<Tuple<Modifiers, Location>> mod_locations; |
|
Location parameterModifierLocation, savedLocation, savedOpenLocation, savedCloseLocation, savedEventAssignLocation; |
|
Location savedAttrParenOpenLocation, savedAttrParenCloseLocation, savedOperatorLocation; |
|
Stack<List<Location>> locationListStack = new Stack<List<Location>> (); // used for type parameters |
|
Stack<Location> opt_intoStack = new Stack<Location> (); |
|
|
|
bool HadAttributeParens; |
|
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); |
|
} |
|
#pragma warning disable 649 |
|
/* An EOF token */ |
|
public int eof_token; |
|
#pragma warning restore 649 |
|
/** (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_error", |
|
//t "namespace_declaration : opt_attributes NAMESPACE namespace_name", |
|
//t "opt_semicolon_error :", |
|
//t "opt_semicolon_error : SEMICOLON", |
|
//t "opt_semicolon_error : error", |
|
//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 "namespace_or_type_declaration : attribute_sections CLOSE_BRACE", |
|
//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 : attributes_without_members", |
|
//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 "constant_declaration : opt_attributes opt_modifiers CONST type error", |
|
//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_header : opt_attributes opt_modifiers member_type method_declaration_name error", |
|
//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_inside_body", |
|
//t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type identifier_inside_body OPEN_BRACKET CLOSE_BRACKET", |
|
//t "fixed_parameter : attribute_sections error", |
|
//t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type error", |
|
//t "$$26 :", |
|
//t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type identifier_inside_body 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 $$31 OPEN_BRACE 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 : COLON error", |
|
//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 "event_declaration : opt_attributes opt_modifiers EVENT type error", |
|
//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 "attributes_without_members : attribute_sections CLOSE_BRACE", |
|
//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 "enum_member_declaration : opt_attributes IDENTIFIER error", |
|
//t "enum_member_declaration : attributes_without_members", |
|
//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 "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_inside_body opt_type_argument_list", |
|
//t "member_access : builtin_types DOT identifier_inside_body opt_type_argument_list", |
|
//t "member_access : BASE DOT identifier_inside_body opt_type_argument_list", |
|
//t "member_access : qualified_alias_member identifier_inside_body 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 "invocation_expression : primary_expression open_parens_any argument_list error", |
|
//t "invocation_expression : primary_expression open_parens_any error", |
|
//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 : AWAIT 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 error", |
|
//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_inside_body ASSIGN variable_initializer", |
|
//t "anonymous_type_parameter : identifier_inside_body", |
|
//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 "sizeof_expression : SIZEOF open_parens_any type error", |
|
//t "checked_expression : CHECKED open_parens_any expression CLOSE_PARENS", |
|
//t "checked_expression : CHECKED error", |
|
//t "unchecked_expression : UNCHECKED open_parens_any expression CLOSE_PARENS", |
|
//t "unchecked_expression : UNCHECKED error", |
|
//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 "unary_expression : BANG error", |
|
//t "unary_expression : TILDE error", |
|
//t "unary_expression : OPEN_PARENS_CAST type CLOSE_PARENS error", |
|
//t "unary_expression : AWAIT error", |
|
//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 "prefixed_unary_expression : PLUS error", |
|
//t "prefixed_unary_expression : MINUS error", |
|
//t "prefixed_unary_expression : OP_INC error", |
|
//t "prefixed_unary_expression : OP_DEC error", |
|
//t "prefixed_unary_expression : STAR error", |
|
//t "prefixed_unary_expression : BITWISE_AND error", |
|
//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 "multiplicative_expression : multiplicative_expression STAR error", |
|
//t "multiplicative_expression : multiplicative_expression DIV error", |
|
//t "multiplicative_expression : multiplicative_expression PERCENT error", |
|
//t "additive_expression : multiplicative_expression", |
|
//t "additive_expression : additive_expression PLUS multiplicative_expression", |
|
//t "additive_expression : additive_expression MINUS multiplicative_expression", |
|
//t "additive_expression : additive_expression AS type", |
|
//t "additive_expression : additive_expression IS type", |
|
//t "additive_expression : additive_expression PLUS error", |
|
//t "additive_expression : additive_expression MINUS error", |
|
//t "additive_expression : additive_expression AS error", |
|
//t "additive_expression : additive_expression IS error", |
|
//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 "shift_expression : shift_expression OP_SHIFT_LEFT error", |
|
//t "shift_expression : shift_expression OP_SHIFT_RIGHT error", |
|
//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 "relational_expression : relational_expression OP_LT error", |
|
//t "relational_expression : relational_expression OP_GT error", |
|
//t "relational_expression : relational_expression OP_LE error", |
|
//t "relational_expression : relational_expression OP_GE error", |
|
//t "equality_expression : relational_expression", |
|
//t "equality_expression : equality_expression OP_EQ relational_expression", |
|
//t "equality_expression : equality_expression OP_NE relational_expression", |
|
//t "equality_expression : equality_expression OP_EQ error", |
|
//t "equality_expression : equality_expression OP_NE error", |
|
//t "and_expression : equality_expression", |
|
//t "and_expression : and_expression BITWISE_AND equality_expression", |
|
//t "and_expression : and_expression BITWISE_AND error", |
|
//t "exclusive_or_expression : and_expression", |
|
//t "exclusive_or_expression : exclusive_or_expression CARRET and_expression", |
|
//t "exclusive_or_expression : exclusive_or_expression CARRET error", |
|
//t "inclusive_or_expression : exclusive_or_expression", |
|
//t "inclusive_or_expression : inclusive_or_expression BITWISE_OR exclusive_or_expression", |
|
//t "inclusive_or_expression : inclusive_or_expression BITWISE_OR error", |
|
//t "conditional_and_expression : inclusive_or_expression", |
|
//t "conditional_and_expression : conditional_and_expression OP_AND inclusive_or_expression", |
|
//t "conditional_and_expression : conditional_and_expression OP_AND error", |
|
//t "conditional_or_expression : conditional_and_expression", |
|
//t "conditional_or_expression : conditional_or_expression OP_OR conditional_and_expression", |
|
//t "conditional_or_expression : conditional_or_expression OP_OR error", |
|
//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 "conditional_expression : null_coalescing_expression INTERR expression error", |
|
//t "conditional_expression : null_coalescing_expression INTERR expression COLON error", |
|
//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 "lambda_parameter : AWAIT", |
|
//t "opt_lambda_parameter_list :", |
|
//t "opt_lambda_parameter_list : lambda_parameter_list", |
|
//t "$$69 :", |
|
//t "lambda_expression_body : $$69 expression", |
|
//t "lambda_expression_body : block", |
|
//t "lambda_expression_body : 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 : AWAIT ARROW $$71 lambda_expression_body", |
|
//t "$$72 :", |
|
//t "lambda_expression : ASYNC identifier_inside_body ARROW $$72 lambda_expression_body", |
|
//t "$$73 :", |
|
//t "$$74 :", |
|
//t "lambda_expression : OPEN_PARENS_LAMBDA $$73 opt_lambda_parameter_list CLOSE_PARENS ARROW $$74 lambda_expression_body", |
|
//t "$$75 :", |
|
//t "$$76 :", |
|
//t "lambda_expression : ASYNC OPEN_PARENS_LAMBDA $$75 opt_lambda_parameter_list CLOSE_PARENS ARROW $$76 lambda_expression_body", |
|
//t "expression : assignment_expression", |
|
//t "expression : non_assignment_expression", |
|
//t "non_assignment_expression : conditional_expression", |
|
//t "non_assignment_expression : lambda_expression", |
|
//t "non_assignment_expression : query_expression", |
|
//t "non_assignment_expression : ARGLIST", |
|
//t "undocumented_expressions : REFVALUE OPEN_PARENS non_assignment_expression COMMA type CLOSE_PARENS", |
|
//t "undocumented_expressions : REFTYPE open_parens_any expression CLOSE_PARENS", |
|
//t "undocumented_expressions : MAKEREF open_parens_any expression CLOSE_PARENS", |
|
//t "constant_expression : expression", |
|
//t "boolean_expression : expression", |
|
//t "$$77 :", |
|
//t "$$78 :", |
|
//t "$$79 :", |
|
//t "$$80 :", |
|
//t "class_declaration : opt_attributes opt_modifiers opt_partial CLASS $$77 type_declaration_name $$78 opt_class_base opt_type_parameter_constraints_clauses $$79 OPEN_BRACE opt_class_member_declarations CLOSE_BRACE $$80 opt_semicolon", |
|
//t "opt_partial :", |
|
//t "opt_partial : PARTIAL", |
|
//t "opt_modifiers :", |
|
//t "opt_modifiers : modifiers", |
|
//t "modifiers : modifier", |
|
//t "modifiers : modifiers modifier", |
|
//t "modifier : NEW", |
|
//t "modifier : PUBLIC", |
|
//t "modifier : PROTECTED", |
|
//t "modifier : INTERNAL", |
|
//t "modifier : PRIVATE", |
|
//t "modifier : ABSTRACT", |
|
//t "modifier : SEALED", |
|
//t "modifier : STATIC", |
|
//t "modifier : READONLY", |
|
//t "modifier : VIRTUAL", |
|
//t "modifier : OVERRIDE", |
|
//t "modifier : EXTERN", |
|
//t "modifier : VOLATILE", |
|
//t "modifier : UNSAFE", |
|
//t "modifier : ASYNC", |
|
//t "opt_class_base :", |
|
//t "opt_class_base : COLON type_list", |
|
//t "opt_class_base : COLON type_list error", |
|
//t "opt_type_parameter_constraints_clauses :", |
|
//t "opt_type_parameter_constraints_clauses : type_parameter_constraints_clauses", |
|
//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_clause : WHERE IDENTIFIER error", |
|
//t "type_parameter_constraints : type_parameter_constraint", |
|
//t "type_parameter_constraints : type_parameter_constraints COMMA type_parameter_constraint", |
|
//t "type_parameter_constraint : type", |
|
//t "type_parameter_constraint : NEW OPEN_PARENS CLOSE_PARENS", |
|
//t "type_parameter_constraint : CLASS", |
|
//t "type_parameter_constraint : STRUCT", |
|
//t "opt_type_parameter_variance :", |
|
//t "opt_type_parameter_variance : type_parameter_variance", |
|
//t "type_parameter_variance : OUT", |
|
//t "type_parameter_variance : IN", |
|
//t "$$81 :", |
|
//t "block : OPEN_BRACE $$81 opt_statement_list block_end", |
|
//t "block_end : CLOSE_BRACE", |
|
//t "block_end : COMPLETE_COMPLETION", |
|
//t "$$82 :", |
|
//t "block_prepared : OPEN_BRACE $$82 opt_statement_list CLOSE_BRACE", |
|
//t "block_prepared : CLOSE_BRACE", |
|
//t "$$83 :", |
|
//t "block_prepared_strict : OPEN_BRACE $$83 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 "$$84 :", |
|
//t "labeled_statement : identifier_inside_body COLON $$84 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 "$$85 :", |
|
//t "block_variable_declaration : variable_type identifier_inside_body $$85 opt_local_variable_initializer opt_variable_declarators semicolon_or_handle_error_close_brace", |
|
//t "$$86 :", |
|
//t "block_variable_declaration : CONST variable_type identifier_inside_body $$86 const_variable_initializer opt_const_declarators SEMICOLON", |
|
//t "semicolon_or_handle_error_close_brace : SEMICOLON", |
|
//t "semicolon_or_handle_error_close_brace : CLOSE_BRACE", |
|
//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 "expression_statement : statement_expression CLOSE_BRACE", |
|
//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 "$$87 :", |
|
//t "switch_statement : SWITCH open_parens_any expression CLOSE_PARENS OPEN_BRACE $$87 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 "$$88 :", |
|
//t "switch_section : switch_labels $$88 statement_list", |
|
//t "switch_labels : switch_label", |
|
//t "switch_labels : switch_labels switch_label", |
|
//t "switch_label : CASE constant_expression COLON", |
|
//t "switch_label : CASE constant_expression error", |
|
//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 "$$89 :", |
|
//t "for_statement : FOR open_parens_any $$89 for_statement_cont", |
|
//t "$$90 :", |
|
//t "for_statement_cont : opt_for_initializer SEMICOLON $$90 for_statement_condition", |
|
//t "for_statement_cont : opt_for_initializer CLOSE_PARENS", |
|
//t "$$91 :", |
|
//t "for_statement_condition : opt_for_condition SEMICOLON $$91 for_statement_end", |
|
//t "for_statement_condition : boolean_expression CLOSE_PARENS", |
|
//t "for_statement_end : opt_for_iterator CLOSE_PARENS embedded_statement", |
|
//t "for_statement_end : error", |
|
//t "opt_for_initializer :", |
|
//t "opt_for_initializer : for_initializer", |
|
//t "$$92 :", |
|
//t "for_initializer : variable_type identifier_inside_body $$92 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 "$$93 :", |
|
//t "foreach_statement : FOREACH open_parens_any type identifier_inside_body IN expression CLOSE_PARENS $$93 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 "continue_statement : CONTINUE error", |
|
//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 "return_statement : RETURN expression error", |
|
//t "return_statement : RETURN error", |
|
//t "throw_statement : THROW opt_expression SEMICOLON", |
|
//t "throw_statement : THROW error", |
|
//t "yield_statement : identifier_inside_body RETURN opt_expression SEMICOLON", |
|
//t "yield_statement : identifier_inside_body RETURN expression error", |
|
//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 "$$94 :", |
|
//t "catch_clause : CATCH open_parens_any type opt_identifier CLOSE_PARENS $$94 block_prepared_strict", |
|
//t "catch_clause : CATCH open_parens_any error", |
|
//t "catch_clause : CATCH open_parens_any type opt_identifier CLOSE_PARENS error", |
|
//t "checked_statement : CHECKED block", |
|
//t "unchecked_statement : UNCHECKED block", |
|
//t "$$95 :", |
|
//t "unsafe_statement : UNSAFE $$95 block", |
|
//t "lock_statement : LOCK open_parens_any expression CLOSE_PARENS embedded_statement", |
|
//t "lock_statement : LOCK open_parens_any expression error", |
|
//t "$$96 :", |
|
//t "$$97 :", |
|
//t "fixed_statement : FIXED open_parens_any variable_type identifier_inside_body $$96 using_or_fixed_variable_initializer opt_using_or_fixed_variable_declarators CLOSE_PARENS $$97 embedded_statement", |
|
//t "$$98 :", |
|
//t "$$99 :", |
|
//t "using_statement : USING open_parens_any variable_type identifier_inside_body $$98 using_initialization CLOSE_PARENS $$99 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 "$$100 :", |
|
//t "from_clause : FROM identifier_inside_body IN $$100 expression_or_error", |
|
//t "$$101 :", |
|
//t "from_clause : FROM type identifier_inside_body IN $$101 expression_or_error", |
|
//t "query_body : query_body_clauses select_or_group_clause opt_query_continuation", |
|
//t "query_body : select_or_group_clause opt_query_continuation", |
|
//t "query_body : query_body_clauses COMPLETE_COMPLETION", |
|
//t "query_body : query_body_clauses error", |
|
//t "query_body : error", |
|
//t "$$102 :", |
|
//t "select_or_group_clause : SELECT $$102 expression_or_error", |
|
//t "$$103 :", |
|
//t "$$104 :", |
|
//t "select_or_group_clause : GROUP $$103 expression_or_error $$104 BY expression_or_error", |
|
//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 "$$105 :", |
|
//t "let_clause : LET identifier_inside_body ASSIGN $$105 expression_or_error", |
|
//t "$$106 :", |
|
//t "where_clause : WHERE $$106 expression_or_error", |
|
//t "$$107 :", |
|
//t "$$108 :", |
|
//t "$$109 :", |
|
//t "join_clause : JOIN identifier_inside_body IN $$107 expression_or_error ON $$108 expression_or_error EQUALS $$109 expression_or_error opt_join_into", |
|
//t "$$110 :", |
|
//t "$$111 :", |
|
//t "$$112 :", |
|
//t "join_clause : JOIN type identifier_inside_body IN $$110 expression_or_error ON $$111 expression_or_error EQUALS $$112 expression_or_error opt_join_into", |
|
//t "opt_join_into :", |
|
//t "opt_join_into : INTO identifier_inside_body", |
|
//t "$$113 :", |
|
//t "orderby_clause : ORDERBY $$113 orderings", |
|
//t "orderings : order_by", |
|
//t "$$114 :", |
|
//t "orderings : order_by COMMA $$114 orderings_then_by", |
|
//t "orderings_then_by : then_by", |
|
//t "$$115 :", |
|
//t "orderings_then_by : orderings_then_by COMMA $$115 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 "$$116 :", |
|
//t "opt_query_continuation : INTO identifier_inside_body $$116 query_body", |
|
//t "interactive_parsing : EVAL_STATEMENT_PARSER EOF", |
|
//t "interactive_parsing : EVAL_USING_DECLARATIONS_UNIT_PARSER using_directives opt_COMPLETE_COMPLETION", |
|
//t "$$117 :", |
|
//t "interactive_parsing : EVAL_STATEMENT_PARSER $$117 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 "$$118 :", |
|
//t "doc_cref : doc_type_declaration_name DOT THIS OPEN_BRACKET $$118 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 "$$119 :", |
|
//t "opt_doc_method_sig : OPEN_PARENS $$119 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 } |
|
|
|
#pragma warning disable 414 |
|
int yyExpectingState; |
|
#pragma warning restore 414 |
|
/** 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; |
|
#pragma warning disable 649 |
|
protected bool use_global_stacks; |
|
#pragma warning restore 649 |
|
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 385 "cs-parser.jay" |
|
{ |
|
Lexer.check_incorrect_doc_comment (); |
|
} |
|
break; |
|
case 2: |
|
#line 386 "cs-parser.jay" |
|
{ Lexer.CompleteOnEOF = false; } |
|
break; |
|
case 6: |
|
case_6(); |
|
break; |
|
case 7: |
|
#line 405 "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 450 "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 27: |
|
case_27(); |
|
break; |
|
case 28: |
|
case_28(); |
|
break; |
|
case 29: |
|
case_29(); |
|
break; |
|
case 30: |
|
case_30(); |
|
break; |
|
case 43: |
|
case_43(); |
|
break; |
|
case 44: |
|
#line 635 "cs-parser.jay" |
|
{ |
|
current_namespace.DeclarationFound = true; |
|
} |
|
break; |
|
case 45: |
|
case_45(); |
|
break; |
|
case 53: |
|
case_53(); |
|
break; |
|
case 54: |
|
case_54(); |
|
break; |
|
case 55: |
|
case_55(); |
|
break; |
|
case 56: |
|
case_56(); |
|
break; |
|
case 57: |
|
case_57(); |
|
break; |
|
case 58: |
|
case_58(); |
|
break; |
|
case 59: |
|
case_59(); |
|
break; |
|
case 60: |
|
case_60(); |
|
break; |
|
case 61: |
|
#line 749 "cs-parser.jay" |
|
{ yyVal = "event"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 62: |
|
#line 750 "cs-parser.jay" |
|
{ yyVal = "return"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 63: |
|
case_63(); |
|
break; |
|
case 64: |
|
#line 767 "cs-parser.jay" |
|
{ |
|
yyVal = new List<Attribute> (4) { (Attribute) yyVals[0+yyTop] }; |
|
} |
|
break; |
|
case 65: |
|
case_65(); |
|
break; |
|
case 66: |
|
#line 782 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 67: |
|
case_67(); |
|
break; |
|
case 69: |
|
#line 810 "cs-parser.jay" |
|
{ yyVal = null; HadAttributeParens = false; } |
|
break; |
|
case 70: |
|
case_70(); |
|
break; |
|
case 71: |
|
#line 822 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 72: |
|
case_72(); |
|
break; |
|
case 73: |
|
case_73(); |
|
break; |
|
case 74: |
|
case_74(); |
|
break; |
|
case 75: |
|
case_75(); |
|
break; |
|
case 76: |
|
#line 866 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 78: |
|
#line 874 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 79: |
|
case_79(); |
|
break; |
|
case 80: |
|
case_80(); |
|
break; |
|
case 81: |
|
#line 900 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 82: |
|
#line 904 "cs-parser.jay" |
|
{ |
|
yyVal = Argument.AType.Ref; |
|
} |
|
break; |
|
case 83: |
|
#line 908 "cs-parser.jay" |
|
{ |
|
yyVal = Argument.AType.Out; |
|
} |
|
break; |
|
case 86: |
|
#line 920 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 87: |
|
#line 924 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 99: |
|
case_99(); |
|
break; |
|
case 100: |
|
#line 954 "cs-parser.jay" |
|
{ |
|
} |
|
break; |
|
case 101: |
|
case_101(); |
|
break; |
|
case 102: |
|
case_102(); |
|
break; |
|
case 103: |
|
case_103(); |
|
break; |
|
case 104: |
|
case_104(); |
|
break; |
|
case 105: |
|
case_105(); |
|
break; |
|
case 106: |
|
#line 998 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
} |
|
break; |
|
case 107: |
|
case_107(); |
|
break; |
|
case 108: |
|
case_108(); |
|
break; |
|
case 109: |
|
case_109(); |
|
break; |
|
case 112: |
|
#line 1047 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 113: |
|
#line 1051 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 114: |
|
case_114(); |
|
break; |
|
case 115: |
|
#line 1067 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 116: |
|
case_116(); |
|
break; |
|
case 117: |
|
case_117(); |
|
break; |
|
case 120: |
|
case_120(); |
|
break; |
|
case 121: |
|
case_121(); |
|
break; |
|
case 122: |
|
case_122(); |
|
break; |
|
case 123: |
|
case_123(); |
|
break; |
|
case 124: |
|
#line 1146 "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 126: |
|
case_126(); |
|
break; |
|
case 127: |
|
case_127(); |
|
break; |
|
case 130: |
|
#line 1176 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 131: |
|
#line 1180 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 132: |
|
case_132(); |
|
break; |
|
case 133: |
|
#line 1193 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 134: |
|
case_134(); |
|
break; |
|
case 137: |
|
#line 1212 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 138: |
|
#line 1216 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 139: |
|
case_139(); |
|
break; |
|
case 140: |
|
#line 1232 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 141: |
|
case_141(); |
|
break; |
|
case 142: |
|
case_142(); |
|
break; |
|
case 145: |
|
case_145(); |
|
break; |
|
case 146: |
|
case_146(); |
|
break; |
|
case 147: |
|
case_147(); |
|
break; |
|
case 148: |
|
#line 1300 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
break; |
|
case 149: |
|
case_149(); |
|
break; |
|
case 150: |
|
case_150(); |
|
break; |
|
case 151: |
|
#line 1339 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
break; |
|
case 152: |
|
case_152(); |
|
break; |
|
case 153: |
|
#line 1349 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 154: |
|
case_154(); |
|
break; |
|
case 155: |
|
case_155(); |
|
break; |
|
case 156: |
|
case_156(); |
|
break; |
|
case 158: |
|
#line 1420 "cs-parser.jay" |
|
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } |
|
break; |
|
case 159: |
|
#line 1424 "cs-parser.jay" |
|
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; } |
|
break; |
|
case 161: |
|
case_161(); |
|
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 1496 "cs-parser.jay" |
|
{ |
|
yyVal = new ParametersCompiled (new Parameter[] { (Parameter) yyVals[0+yyTop] } ); |
|
} |
|
break; |
|
case 169: |
|
#line 1500 "cs-parser.jay" |
|
{ |
|
yyVal = new ParametersCompiled (new Parameter [] { new ArglistParameter (GetLocation (yyVals[0+yyTop])) }, true); |
|
} |
|
break; |
|
case 170: |
|
case_170(); |
|
break; |
|
case 171: |
|
case_171(); |
|
break; |
|
case 172: |
|
case_172(); |
|
break; |
|
case 173: |
|
case_173(); |
|
break; |
|
case 174: |
|
case_174(); |
|
break; |
|
case 175: |
|
case_175(); |
|
break; |
|
case 176: |
|
case_176(); |
|
break; |
|
case 177: |
|
#line 1581 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 178: |
|
case_178(); |
|
break; |
|
case 179: |
|
#line 1622 "cs-parser.jay" |
|
{ yyVal = Parameter.Modifier.NONE; } |
|
break; |
|
case 181: |
|
#line 1630 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 182: |
|
case_182(); |
|
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: |
|
case_188(); |
|
break; |
|
case 189: |
|
case_189(); |
|
break; |
|
case 190: |
|
case_190(); |
|
break; |
|
case 191: |
|
#line 1724 "cs-parser.jay" |
|
{ |
|
Error_DuplicateParameterModifier (GetLocation (yyVals[-1+yyTop]), Parameter.Modifier.PARAMS); |
|
} |
|
break; |
|
case 192: |
|
case_192(); |
|
break; |
|
case 193: |
|
case_193(); |
|
break; |
|
case 194: |
|
case_194(); |
|
break; |
|
case 195: |
|
case_195(); |
|
break; |
|
case 196: |
|
case_196(); |
|
break; |
|
case 197: |
|
#line 1778 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Params | ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 198: |
|
case_198(); |
|
break; |
|
case 199: |
|
#line 1807 "cs-parser.jay" |
|
{ |
|
lexer.PropertyParsing = false; |
|
} |
|
break; |
|
case 200: |
|
case_200(); |
|
break; |
|
case 205: |
|
case_205(); |
|
break; |
|
case 206: |
|
case_206(); |
|
break; |
|
case 207: |
|
case_207(); |
|
break; |
|
case 208: |
|
case_208(); |
|
break; |
|
case 209: |
|
case_209(); |
|
break; |
|
case 211: |
|
case_211(); |
|
break; |
|
case 212: |
|
case_212(); |
|
break; |
|
case 213: |
|
#line 1955 "cs-parser.jay" |
|
{ |
|
} |
|
break; |
|
case 214: |
|
case_214(); |
|
break; |
|
case 215: |
|
case_215(); |
|
break; |
|
case 216: |
|
case_216(); |
|
break; |
|
case 217: |
|
case_217(); |
|
break; |
|
case 218: |
|
#line 1995 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
} |
|
break; |
|
case 221: |
|
#line 2007 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 222: |
|
#line 2011 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 223: |
|
#line 2018 "cs-parser.jay" |
|
{ |
|
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); |
|
} |
|
break; |
|
case 224: |
|
#line 2022 "cs-parser.jay" |
|
{ |
|
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); |
|
} |
|
break; |
|
case 229: |
|
#line 2030 "cs-parser.jay" |
|
{ |
|
report.Error (567, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain operators"); |
|
} |
|
break; |
|
case 230: |
|
#line 2034 "cs-parser.jay" |
|
{ |
|
report.Error (526, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain contructors"); |
|
} |
|
break; |
|
case 231: |
|
#line 2038 "cs-parser.jay" |
|
{ |
|
report.Error (524, GetLocation (yyVals[0+yyTop]), "Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations"); |
|
} |
|
break; |
|
case 232: |
|
#line 2044 "cs-parser.jay" |
|
{ |
|
} |
|
break; |
|
case 233: |
|
case_233(); |
|
break; |
|
case 235: |
|
#line 2077 "cs-parser.jay" |
|
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } |
|
break; |
|
case 237: |
|
case_237(); |
|
break; |
|
case 238: |
|
#line 2093 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 239: |
|
case_239(); |
|
break; |
|
case 241: |
|
#line 2139 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LogicalNot; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 242: |
|
#line 2140 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.OnesComplement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 243: |
|
#line 2141 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Increment; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 244: |
|
#line 2142 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Decrement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 245: |
|
#line 2143 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.True; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 246: |
|
#line 2144 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.False; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 247: |
|
#line 2146 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Addition; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 248: |
|
#line 2147 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Subtraction; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 249: |
|
#line 2149 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Multiply; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 250: |
|
#line 2150 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Division; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 251: |
|
#line 2151 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Modulus; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 252: |
|
#line 2152 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.BitwiseAnd; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 253: |
|
#line 2153 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.BitwiseOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 254: |
|
#line 2154 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.ExclusiveOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 255: |
|
#line 2155 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LeftShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 256: |
|
#line 2156 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.RightShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 257: |
|
#line 2157 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Equality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 258: |
|
#line 2158 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Inequality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 259: |
|
#line 2159 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.GreaterThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 260: |
|
#line 2160 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LessThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 261: |
|
#line 2161 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.GreaterThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 262: |
|
#line 2162 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LessThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 263: |
|
#line 2169 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 264: |
|
case_264(); |
|
break; |
|
case 265: |
|
#line 2192 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 266: |
|
case_266(); |
|
break; |
|
case 267: |
|
case_267(); |
|
break; |
|
case 268: |
|
case_268(); |
|
break; |
|
case 269: |
|
case_269(); |
|
break; |
|
case 270: |
|
case_270(); |
|
break; |
|
case 271: |
|
case_271(); |
|
break; |
|
case 272: |
|
case_272(); |
|
break; |
|
case 274: |
|
#line 2302 "cs-parser.jay" |
|
{ current_block = null; yyVal = null; } |
|
break; |
|
case 277: |
|
#line 2314 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 278: |
|
case_278(); |
|
break; |
|
case 279: |
|
#line 2324 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 280: |
|
case_280(); |
|
break; |
|
case 281: |
|
case_281(); |
|
break; |
|
case 282: |
|
case_282(); |
|
break; |
|
case 283: |
|
case_283(); |
|
break; |
|
case 284: |
|
case_284(); |
|
break; |
|
case 285: |
|
case_285(); |
|
break; |
|
case 286: |
|
case_286(); |
|
break; |
|
case 287: |
|
case_287(); |
|
break; |
|
case 288: |
|
case_288(); |
|
break; |
|
case 289: |
|
case_289(); |
|
break; |
|
case 290: |
|
case_290(); |
|
break; |
|
case 292: |
|
#line 2451 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 293: |
|
case_293(); |
|
break; |
|
case 296: |
|
#line 2469 "cs-parser.jay" |
|
{ |
|
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 297: |
|
#line 2473 "cs-parser.jay" |
|
{ |
|
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 298: |
|
case_298(); |
|
break; |
|
case 299: |
|
#line 2486 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 300: |
|
case_300(); |
|
break; |
|
case 301: |
|
case_301(); |
|
break; |
|
case 302: |
|
#line 2511 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 305: |
|
case_305(); |
|
break; |
|
case 306: |
|
case_306(); |
|
break; |
|
case 307: |
|
case_307(); |
|
break; |
|
case 308: |
|
case_308(); |
|
break; |
|
case 309: |
|
case_309(); |
|
break; |
|
case 310: |
|
case_310(); |
|
break; |
|
case 311: |
|
case_311(); |
|
break; |
|
case 312: |
|
case_312(); |
|
break; |
|
case 314: |
|
case_314(); |
|
break; |
|
case 315: |
|
case_315(); |
|
break; |
|
case 316: |
|
case_316(); |
|
break; |
|
case 317: |
|
case_317(); |
|
break; |
|
case 318: |
|
case_318(); |
|
break; |
|
case 320: |
|
case_320(); |
|
break; |
|
case 321: |
|
case_321(); |
|
break; |
|
case 324: |
|
#line 2679 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 326: |
|
case_326(); |
|
break; |
|
case 327: |
|
case_327(); |
|
break; |
|
case 328: |
|
case_328(); |
|
break; |
|
case 329: |
|
case_329(); |
|
break; |
|
case 330: |
|
case_330(); |
|
break; |
|
case 332: |
|
#line 2753 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out | ParameterModifierType.Params | ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 333: |
|
case_333(); |
|
break; |
|
case 334: |
|
#line 2772 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
} |
|
break; |
|
case 335: |
|
case_335(); |
|
break; |
|
case 337: |
|
case_337(); |
|
break; |
|
case 339: |
|
case_339(); |
|
break; |
|
case 341: |
|
case_341(); |
|
break; |
|
case 342: |
|
case_342(); |
|
break; |
|
case 344: |
|
case_344(); |
|
break; |
|
case 345: |
|
case_345(); |
|
break; |
|
case 346: |
|
case_346(); |
|
break; |
|
case 347: |
|
case_347(); |
|
break; |
|
case 348: |
|
#line 2879 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
break; |
|
case 349: |
|
case_349(); |
|
break; |
|
case 350: |
|
case_350(); |
|
break; |
|
case 352: |
|
case_352(); |
|
break; |
|
case 353: |
|
case_353(); |
|
break; |
|
case 354: |
|
case_354(); |
|
break; |
|
case 355: |
|
case_355(); |
|
break; |
|
case 356: |
|
case_356(); |
|
break; |
|
case 357: |
|
case_357(); |
|
break; |
|
case 359: |
|
case_359(); |
|
break; |
|
case 360: |
|
case_360(); |
|
break; |
|
case 361: |
|
case_361(); |
|
break; |
|
case 362: |
|
case_362(); |
|
break; |
|
case 363: |
|
case_363(); |
|
break; |
|
case 365: |
|
#line 3004 "cs-parser.jay" |
|
{ |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 366: |
|
#line 3011 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
break; |
|
case 368: |
|
case_368(); |
|
break; |
|
case 370: |
|
case_370(); |
|
break; |
|
case 372: |
|
case_372(); |
|
break; |
|
case 374: |
|
#line 3049 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 375: |
|
case_375(); |
|
break; |
|
case 376: |
|
#line 3068 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((ATypeNameExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 377: |
|
case_377(); |
|
break; |
|
case 378: |
|
#line 3077 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 379: |
|
#line 3081 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 380: |
|
case_380(); |
|
break; |
|
case 381: |
|
case_381(); |
|
break; |
|
case 382: |
|
case_382(); |
|
break; |
|
case 383: |
|
#line 3115 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Object, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 384: |
|
#line 3116 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.String, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 385: |
|
#line 3117 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Bool, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 386: |
|
#line 3118 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Decimal, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 387: |
|
#line 3119 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Float, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 388: |
|
#line 3120 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Double, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 390: |
|
#line 3125 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.SByte, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 391: |
|
#line 3126 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Byte, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 392: |
|
#line 3127 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Short, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 393: |
|
#line 3128 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UShort, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 394: |
|
#line 3129 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Int, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 395: |
|
#line 3130 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UInt, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 396: |
|
#line 3131 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Long, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 397: |
|
#line 3132 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.ULong, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 398: |
|
#line 3133 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Char, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 419: |
|
case_419(); |
|
break; |
|
case 420: |
|
case_420(); |
|
break; |
|
case 424: |
|
#line 3180 "cs-parser.jay" |
|
{ yyVal = new NullLiteral (GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 425: |
|
#line 3184 "cs-parser.jay" |
|
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, true, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 426: |
|
#line 3185 "cs-parser.jay" |
|
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, false, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 431: |
|
case_431(); |
|
break; |
|
case 432: |
|
#line 3218 "cs-parser.jay" |
|
{ |
|
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); |
|
} |
|
break; |
|
case 433: |
|
case_433(); |
|
break; |
|
case 434: |
|
case_434(); |
|
break; |
|
case 435: |
|
case_435(); |
|
break; |
|
case 436: |
|
case_436(); |
|
break; |
|
case 437: |
|
#line 3253 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null,GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 438: |
|
case_438(); |
|
break; |
|
case 439: |
|
#line 3261 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null, lexer.Location); |
|
} |
|
break; |
|
case 440: |
|
case_440(); |
|
break; |
|
case 441: |
|
case_441(); |
|
break; |
|
case 442: |
|
case_442(); |
|
break; |
|
case 443: |
|
case_443(); |
|
break; |
|
case 444: |
|
#line 3291 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 446: |
|
case_446(); |
|
break; |
|
case 447: |
|
case_447(); |
|
break; |
|
case 448: |
|
#line 3313 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 449: |
|
#line 3317 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 450: |
|
case_450(); |
|
break; |
|
case 451: |
|
case_451(); |
|
break; |
|
case 452: |
|
case_452(); |
|
break; |
|
case 453: |
|
case_453(); |
|
break; |
|
case 454: |
|
case_454(); |
|
break; |
|
case 455: |
|
#line 3356 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionElementInitializer (null, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 456: |
|
case_456(); |
|
break; |
|
case 457: |
|
case_457(); |
|
break; |
|
case 458: |
|
case_458(); |
|
break; |
|
case 461: |
|
#line 3387 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 463: |
|
case_463(); |
|
break; |
|
case 464: |
|
case_464(); |
|
break; |
|
case 465: |
|
case_465(); |
|
break; |
|
case 466: |
|
case_466(); |
|
break; |
|
case 467: |
|
case_467(); |
|
break; |
|
case 468: |
|
#line 3441 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 472: |
|
case_472(); |
|
break; |
|
case 473: |
|
case_473(); |
|
break; |
|
case 474: |
|
case_474(); |
|
break; |
|
case 475: |
|
case_475(); |
|
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: |
|
case_483(); |
|
break; |
|
case 484: |
|
case_484(); |
|
break; |
|
case 485: |
|
#line 3538 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 487: |
|
#line 3546 "cs-parser.jay" |
|
{ |
|
yyVal = new This (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 488: |
|
case_488(); |
|
break; |
|
case 489: |
|
case_489(); |
|
break; |
|
case 490: |
|
#line 3566 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PostIncrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 491: |
|
#line 3573 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PostDecrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 492: |
|
case_492(); |
|
break; |
|
case 493: |
|
case_493(); |
|
break; |
|
case 494: |
|
case_494(); |
|
break; |
|
case 495: |
|
case_495(); |
|
break; |
|
case 496: |
|
case_496(); |
|
break; |
|
case 497: |
|
case_497(); |
|
break; |
|
case 498: |
|
case_498(); |
|
break; |
|
case 499: |
|
#line 3640 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_type; |
|
} |
|
break; |
|
case 500: |
|
case_500(); |
|
break; |
|
case 501: |
|
case_501(); |
|
break; |
|
case 504: |
|
#line 3667 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 506: |
|
case_506(); |
|
break; |
|
case 507: |
|
case_507(); |
|
break; |
|
case 508: |
|
case_508(); |
|
break; |
|
case 509: |
|
case_509(); |
|
break; |
|
case 510: |
|
case_510(); |
|
break; |
|
case 511: |
|
case_511(); |
|
break; |
|
case 515: |
|
case_515(); |
|
break; |
|
case 516: |
|
case_516(); |
|
break; |
|
case 517: |
|
case_517(); |
|
break; |
|
case 518: |
|
#line 3745 "cs-parser.jay" |
|
{ |
|
yyVal = 2; |
|
} |
|
break; |
|
case 519: |
|
#line 3749 "cs-parser.jay" |
|
{ |
|
yyVal = ((int) yyVals[-1+yyTop]) + 1; |
|
} |
|
break; |
|
case 520: |
|
#line 3756 "cs-parser.jay" |
|
{ |
|
yyVal = null; |
|
} |
|
break; |
|
case 521: |
|
#line 3760 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 522: |
|
case_522(); |
|
break; |
|
case 523: |
|
case_523(); |
|
break; |
|
case 524: |
|
case_524(); |
|
break; |
|
case 525: |
|
case_525(); |
|
break; |
|
case 526: |
|
#line 3804 "cs-parser.jay" |
|
{ |
|
lexer.TypeOfParsing = true; |
|
} |
|
break; |
|
case 527: |
|
case_527(); |
|
break; |
|
case 530: |
|
case_530(); |
|
break; |
|
case 531: |
|
case_531(); |
|
break; |
|
case 532: |
|
case_532(); |
|
break; |
|
case 533: |
|
case_533(); |
|
break; |
|
case 534: |
|
case_534(); |
|
break; |
|
case 535: |
|
case_535(); |
|
break; |
|
case 536: |
|
case_536(); |
|
break; |
|
case 537: |
|
case_537(); |
|
break; |
|
case 538: |
|
case_538(); |
|
break; |
|
case 539: |
|
case_539(); |
|
break; |
|
case 540: |
|
case_540(); |
|
break; |
|
case 541: |
|
case_541(); |
|
break; |
|
case 542: |
|
case_542(); |
|
break; |
|
case 543: |
|
case_543(); |
|
break; |
|
case 544: |
|
case_544(); |
|
break; |
|
case 545: |
|
#line 3949 "cs-parser.jay" |
|
{ |
|
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], false, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 546: |
|
case_546(); |
|
break; |
|
case 547: |
|
#line 3962 "cs-parser.jay" |
|
{ |
|
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], true, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
break; |
|
case 548: |
|
case_548(); |
|
break; |
|
case 549: |
|
#line 3979 "cs-parser.jay" |
|
{ |
|
yyVal = ParametersCompiled.Undefined; |
|
} |
|
break; |
|
case 551: |
|
#line 3987 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 552: |
|
case_552(); |
|
break; |
|
case 553: |
|
case_553(); |
|
break; |
|
case 555: |
|
#line 4013 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.LogicalNot, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 556: |
|
#line 4017 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.OnesComplement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 557: |
|
case_557(); |
|
break; |
|
case 558: |
|
case_558(); |
|
break; |
|
case 559: |
|
case_559(); |
|
break; |
|
case 560: |
|
case_560(); |
|
break; |
|
case 561: |
|
case_561(); |
|
break; |
|
case 562: |
|
case_562(); |
|
break; |
|
case 564: |
|
#line 4078 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.UnaryPlus, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 565: |
|
#line 4082 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.UnaryNegation, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 566: |
|
#line 4086 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreIncrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 567: |
|
#line 4090 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreDecrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 568: |
|
#line 4094 "cs-parser.jay" |
|
{ |
|
yyVal = new Indirection ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 569: |
|
#line 4098 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.AddressOf, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 570: |
|
case_570(); |
|
break; |
|
case 571: |
|
case_571(); |
|
break; |
|
case 572: |
|
case_572(); |
|
break; |
|
case 573: |
|
case_573(); |
|
break; |
|
case 574: |
|
case_574(); |
|
break; |
|
case 575: |
|
case_575(); |
|
break; |
|
case 577: |
|
case_577(); |
|
break; |
|
case 578: |
|
case_578(); |
|
break; |
|
case 579: |
|
case_579(); |
|
break; |
|
case 580: |
|
case_580(); |
|
break; |
|
case 581: |
|
case_581(); |
|
break; |
|
case 582: |
|
case_582(); |
|
break; |
|
case 584: |
|
case_584(); |
|
break; |
|
case 585: |
|
case_585(); |
|
break; |
|
case 586: |
|
#line 4192 "cs-parser.jay" |
|
{ |
|
yyVal = new As ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 587: |
|
#line 4196 "cs-parser.jay" |
|
{ |
|
yyVal = new Is ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 588: |
|
case_588(); |
|
break; |
|
case 589: |
|
case_589(); |
|
break; |
|
case 590: |
|
case_590(); |
|
break; |
|
case 591: |
|
case_591(); |
|
break; |
|
case 593: |
|
case_593(); |
|
break; |
|
case 594: |
|
case_594(); |
|
break; |
|
case 595: |
|
case_595(); |
|
break; |
|
case 596: |
|
case_596(); |
|
break; |
|
case 598: |
|
case_598(); |
|
break; |
|
case 599: |
|
case_599(); |
|
break; |
|
case 600: |
|
case_600(); |
|
break; |
|
case 601: |
|
case_601(); |
|
break; |
|
case 602: |
|
case_602(); |
|
break; |
|
case 603: |
|
case_603(); |
|
break; |
|
case 604: |
|
case_604(); |
|
break; |
|
case 605: |
|
case_605(); |
|
break; |
|
case 607: |
|
case_607(); |
|
break; |
|
case 608: |
|
case_608(); |
|
break; |
|
case 609: |
|
case_609(); |
|
break; |
|
case 610: |
|
case_610(); |
|
break; |
|
case 612: |
|
case_612(); |
|
break; |
|
case 613: |
|
case_613(); |
|
break; |
|
case 615: |
|
case_615(); |
|
break; |
|
case 616: |
|
case_616(); |
|
break; |
|
case 618: |
|
case_618(); |
|
break; |
|
case 619: |
|
case_619(); |
|
break; |
|
case 621: |
|
case_621(); |
|
break; |
|
case 622: |
|
case_622(); |
|
break; |
|
case 624: |
|
case_624(); |
|
break; |
|
case 625: |
|
case_625(); |
|
break; |
|
case 627: |
|
case_627(); |
|
break; |
|
case 629: |
|
case_629(); |
|
break; |
|
case 630: |
|
case_630(); |
|
break; |
|
case 631: |
|
case_631(); |
|
break; |
|
case 632: |
|
case_632(); |
|
break; |
|
case 633: |
|
case_633(); |
|
break; |
|
case 634: |
|
case_634(); |
|
break; |
|
case 635: |
|
case_635(); |
|
break; |
|
case 636: |
|
case_636(); |
|
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: |
|
#line 4554 "cs-parser.jay" |
|
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; } |
|
break; |
|
case 650: |
|
case_650(); |
|
break; |
|
case 651: |
|
#line 4565 "cs-parser.jay" |
|
{ |
|
start_block (Location.Null); |
|
} |
|
break; |
|
case 652: |
|
case_652(); |
|
break; |
|
case 654: |
|
case_654(); |
|
break; |
|
case 656: |
|
case_656(); |
|
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: |
|
#line 4632 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 664: |
|
case_664(); |
|
break; |
|
case 665: |
|
case_665(); |
|
break; |
|
case 666: |
|
#line 4646 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 667: |
|
case_667(); |
|
break; |
|
case 668: |
|
case_668(); |
|
break; |
|
case 674: |
|
#line 4671 "cs-parser.jay" |
|
{ |
|
yyVal = new ArglistAccess (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 675: |
|
case_675(); |
|
break; |
|
case 676: |
|
case_676(); |
|
break; |
|
case 677: |
|
case_677(); |
|
break; |
|
case 679: |
|
#line 4700 "cs-parser.jay" |
|
{ |
|
yyVal = new BooleanExpression ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 680: |
|
#line 4712 "cs-parser.jay" |
|
{ |
|
} |
|
break; |
|
case 681: |
|
case_681(); |
|
break; |
|
case 682: |
|
case_682(); |
|
break; |
|
case 683: |
|
case_683(); |
|
break; |
|
case 684: |
|
case_684(); |
|
break; |
|
case 685: |
|
#line 4759 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 686: |
|
#line 4761 "cs-parser.jay" |
|
{ yyVal = yyVals[0+yyTop]; StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 687: |
|
case_687(); |
|
break; |
|
case 688: |
|
#line 4774 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = false; |
|
} |
|
break; |
|
case 690: |
|
case_690(); |
|
break; |
|
case 691: |
|
case_691(); |
|
break; |
|
case 692: |
|
case_692(); |
|
break; |
|
case 693: |
|
case_693(); |
|
break; |
|
case 694: |
|
case_694(); |
|
break; |
|
case 695: |
|
case_695(); |
|
break; |
|
case 696: |
|
case_696(); |
|
break; |
|
case 697: |
|
case_697(); |
|
break; |
|
case 698: |
|
case_698(); |
|
break; |
|
case 699: |
|
case_699(); |
|
break; |
|
case 700: |
|
case_700(); |
|
break; |
|
case 701: |
|
case_701(); |
|
break; |
|
case 702: |
|
case_702(); |
|
break; |
|
case 703: |
|
case_703(); |
|
break; |
|
case 704: |
|
case_704(); |
|
break; |
|
case 705: |
|
case_705(); |
|
break; |
|
case 707: |
|
case_707(); |
|
break; |
|
case 708: |
|
case_708(); |
|
break; |
|
case 710: |
|
#line 4900 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 711: |
|
case_711(); |
|
break; |
|
case 712: |
|
case_712(); |
|
break; |
|
case 713: |
|
case_713(); |
|
break; |
|
case 714: |
|
case_714(); |
|
break; |
|
case 715: |
|
case_715(); |
|
break; |
|
case 716: |
|
case_716(); |
|
break; |
|
case 717: |
|
case_717(); |
|
break; |
|
case 718: |
|
case_718(); |
|
break; |
|
case 719: |
|
#line 4993 "cs-parser.jay" |
|
{ |
|
yyVal = new SpecialContraintExpr (SpecialConstraint.Class, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 720: |
|
#line 4997 "cs-parser.jay" |
|
{ |
|
yyVal = new SpecialContraintExpr (SpecialConstraint.Struct, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 721: |
|
#line 5004 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.None; |
|
} |
|
break; |
|
case 722: |
|
case_722(); |
|
break; |
|
case 723: |
|
case_723(); |
|
break; |
|
case 724: |
|
case_724(); |
|
break; |
|
case 725: |
|
case_725(); |
|
break; |
|
case 726: |
|
#line 5049 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 727: |
|
case_727(); |
|
break; |
|
case 728: |
|
case_728(); |
|
break; |
|
case 729: |
|
case_729(); |
|
break; |
|
case 730: |
|
case_730(); |
|
break; |
|
case 731: |
|
case_731(); |
|
break; |
|
case 732: |
|
case_732(); |
|
break; |
|
case 733: |
|
case_733(); |
|
break; |
|
case 738: |
|
#line 5111 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 739: |
|
#line 5115 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 741: |
|
case_741(); |
|
break; |
|
case 742: |
|
case_742(); |
|
break; |
|
case 745: |
|
#line 5149 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 746: |
|
#line 5153 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 775: |
|
case_775(); |
|
break; |
|
case 776: |
|
case_776(); |
|
break; |
|
case 777: |
|
case_777(); |
|
break; |
|
case 778: |
|
case_778(); |
|
break; |
|
case 779: |
|
case_779(); |
|
break; |
|
case 782: |
|
case_782(); |
|
break; |
|
case 783: |
|
case_783(); |
|
break; |
|
case 784: |
|
case_784(); |
|
break; |
|
case 785: |
|
case_785(); |
|
break; |
|
case 786: |
|
#line 5297 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 787: |
|
#line 5301 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 788: |
|
case_788(); |
|
break; |
|
case 790: |
|
case_790(); |
|
break; |
|
case 791: |
|
#line 5322 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreatePointer (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 793: |
|
#line 5330 "cs-parser.jay" |
|
{ |
|
yyVal = Error_AwaitAsIdentifier (yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 794: |
|
case_794(); |
|
break; |
|
case 795: |
|
case_795(); |
|
break; |
|
case 796: |
|
case_796(); |
|
break; |
|
case 797: |
|
case_797(); |
|
break; |
|
case 799: |
|
case_799(); |
|
break; |
|
case 801: |
|
case_801(); |
|
break; |
|
case 802: |
|
case_802(); |
|
break; |
|
case 803: |
|
case_803(); |
|
break; |
|
case 807: |
|
case_807(); |
|
break; |
|
case 810: |
|
case_810(); |
|
break; |
|
case 811: |
|
case_811(); |
|
break; |
|
case 812: |
|
#line 5454 "cs-parser.jay" |
|
{ |
|
report.Error (145, lexer.Location, "A const field requires a value to be provided"); |
|
} |
|
break; |
|
case 813: |
|
case_813(); |
|
break; |
|
case 818: |
|
case_818(); |
|
break; |
|
case 820: |
|
case_820(); |
|
break; |
|
case 821: |
|
case_821(); |
|
break; |
|
case 822: |
|
case_822(); |
|
break; |
|
case 823: |
|
#line 5504 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
break; |
|
case 824: |
|
case_824(); |
|
break; |
|
case 825: |
|
#line 5514 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
break; |
|
case 826: |
|
#line 5515 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
break; |
|
case 827: |
|
case_827(); |
|
break; |
|
case 828: |
|
case_828(); |
|
break; |
|
case 829: |
|
case_829(); |
|
break; |
|
case 832: |
|
case_832(); |
|
break; |
|
case 833: |
|
case_833(); |
|
break; |
|
case 834: |
|
case_834(); |
|
break; |
|
case 835: |
|
#line 5591 "cs-parser.jay" |
|
{ |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 836: |
|
case_836(); |
|
break; |
|
case 837: |
|
case_837(); |
|
break; |
|
case 838: |
|
case_838(); |
|
break; |
|
case 840: |
|
case_840(); |
|
break; |
|
case 841: |
|
case_841(); |
|
break; |
|
case 842: |
|
case_842(); |
|
break; |
|
case 843: |
|
#line 5642 "cs-parser.jay" |
|
{ |
|
current_block = current_block.CreateSwitchBlock (lexer.Location); |
|
} |
|
break; |
|
case 844: |
|
#line 5646 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchSection ((List<SwitchLabel>) yyVals[-2+yyTop], current_block); |
|
} |
|
break; |
|
case 845: |
|
case_845(); |
|
break; |
|
case 846: |
|
case_846(); |
|
break; |
|
case 847: |
|
case_847(); |
|
break; |
|
case 848: |
|
case_848(); |
|
break; |
|
case 849: |
|
#line 5680 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchLabel (null, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 854: |
|
case_854(); |
|
break; |
|
case 855: |
|
case_855(); |
|
break; |
|
case 856: |
|
case_856(); |
|
break; |
|
case 857: |
|
case_857(); |
|
break; |
|
case 858: |
|
case_858(); |
|
break; |
|
case 859: |
|
case_859(); |
|
break; |
|
case 860: |
|
#line 5741 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 861: |
|
case_861(); |
|
break; |
|
case 862: |
|
#line 5756 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 863: |
|
case_863(); |
|
break; |
|
case 864: |
|
case_864(); |
|
break; |
|
case 865: |
|
#line 5777 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 866: |
|
case_866(); |
|
break; |
|
case 867: |
|
case_867(); |
|
break; |
|
case 868: |
|
case_868(); |
|
break; |
|
case 869: |
|
#line 5811 "cs-parser.jay" |
|
{ yyVal = new EmptyStatement (lexer.Location); } |
|
break; |
|
case 871: |
|
case_871(); |
|
break; |
|
case 872: |
|
case_872(); |
|
break; |
|
case 874: |
|
#line 5832 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 876: |
|
#line 5837 "cs-parser.jay" |
|
{ yyVal = new EmptyStatement (lexer.Location); } |
|
break; |
|
case 880: |
|
case_880(); |
|
break; |
|
case 881: |
|
case_881(); |
|
break; |
|
case 882: |
|
case_882(); |
|
break; |
|
case 883: |
|
case_883(); |
|
break; |
|
case 884: |
|
case_884(); |
|
break; |
|
case 885: |
|
case_885(); |
|
break; |
|
case 886: |
|
case_886(); |
|
break; |
|
case 893: |
|
case_893(); |
|
break; |
|
case 894: |
|
case_894(); |
|
break; |
|
case 895: |
|
case_895(); |
|
break; |
|
case 896: |
|
case_896(); |
|
break; |
|
case 897: |
|
case_897(); |
|
break; |
|
case 898: |
|
case_898(); |
|
break; |
|
case 899: |
|
case_899(); |
|
break; |
|
case 900: |
|
case_900(); |
|
break; |
|
case 901: |
|
case_901(); |
|
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 909: |
|
#line 6077 "cs-parser.jay" |
|
{ |
|
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], (List<Catch>) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), false); |
|
} |
|
break; |
|
case 910: |
|
case_910(); |
|
break; |
|
case 911: |
|
case_911(); |
|
break; |
|
case 912: |
|
case_912(); |
|
break; |
|
case 913: |
|
case_913(); |
|
break; |
|
case 914: |
|
case_914(); |
|
break; |
|
case 917: |
|
#line 6126 "cs-parser.jay" |
|
{ |
|
yyVal = new Catch ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 918: |
|
case_918(); |
|
break; |
|
case 919: |
|
#line 6145 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
break; |
|
case 920: |
|
case_920(); |
|
break; |
|
case 921: |
|
case_921(); |
|
break; |
|
case 922: |
|
#line 6186 "cs-parser.jay" |
|
{ |
|
yyVal = new Checked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 923: |
|
#line 6193 "cs-parser.jay" |
|
{ |
|
yyVal = new Unchecked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 924: |
|
case_924(); |
|
break; |
|
case 925: |
|
#line 6203 "cs-parser.jay" |
|
{ |
|
yyVal = new Unsafe ((Block) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
break; |
|
case 926: |
|
case_926(); |
|
break; |
|
case 927: |
|
case_927(); |
|
break; |
|
case 928: |
|
case_928(); |
|
break; |
|
case 929: |
|
case_929(); |
|
break; |
|
case 930: |
|
case_930(); |
|
break; |
|
case 931: |
|
case_931(); |
|
break; |
|
case 932: |
|
case_932(); |
|
break; |
|
case 933: |
|
case_933(); |
|
break; |
|
case 934: |
|
case_934(); |
|
break; |
|
case 935: |
|
case_935(); |
|
break; |
|
case 937: |
|
case_937(); |
|
break; |
|
case 938: |
|
#line 6308 "cs-parser.jay" |
|
{ |
|
Error_MissingInitializer (lexer.Location); |
|
} |
|
break; |
|
case 939: |
|
case_939(); |
|
break; |
|
case 940: |
|
case_940(); |
|
break; |
|
case 941: |
|
case_941(); |
|
break; |
|
case 942: |
|
case_942(); |
|
break; |
|
case 943: |
|
case_943(); |
|
break; |
|
case 944: |
|
case_944(); |
|
break; |
|
case 945: |
|
case_945(); |
|
break; |
|
case 946: |
|
case_946(); |
|
break; |
|
case 947: |
|
case_947(); |
|
break; |
|
case 948: |
|
#line 6413 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 949: |
|
case_949(); |
|
break; |
|
case 950: |
|
#line 6429 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 951: |
|
case_951(); |
|
break; |
|
case 952: |
|
case_952(); |
|
break; |
|
case 953: |
|
case_953(); |
|
break; |
|
case 955: |
|
case_955(); |
|
break; |
|
case 956: |
|
case_956(); |
|
break; |
|
case 957: |
|
#line 6493 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 958: |
|
case_958(); |
|
break; |
|
case 959: |
|
case_959(); |
|
break; |
|
case 960: |
|
case_960(); |
|
break; |
|
case 961: |
|
case_961(); |
|
break; |
|
case 963: |
|
case_963(); |
|
break; |
|
case 969: |
|
#line 6547 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 970: |
|
case_970(); |
|
break; |
|
case 971: |
|
#line 6566 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 972: |
|
case_972(); |
|
break; |
|
case 973: |
|
case_973(); |
|
break; |
|
case 974: |
|
case_974(); |
|
break; |
|
case 975: |
|
case_975(); |
|
break; |
|
case 976: |
|
case_976(); |
|
break; |
|
case 977: |
|
case_977(); |
|
break; |
|
case 978: |
|
case_978(); |
|
break; |
|
case 979: |
|
case_979(); |
|
break; |
|
case 980: |
|
case_980(); |
|
break; |
|
case 982: |
|
case_982(); |
|
break; |
|
case 983: |
|
case_983(); |
|
break; |
|
case 984: |
|
case_984(); |
|
break; |
|
case 986: |
|
case_986(); |
|
break; |
|
case 987: |
|
case_987(); |
|
break; |
|
case 989: |
|
case_989(); |
|
break; |
|
case 990: |
|
case_990(); |
|
break; |
|
case 991: |
|
#line 6767 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 992: |
|
case_992(); |
|
break; |
|
case 993: |
|
case_993(); |
|
break; |
|
case 994: |
|
#line 6784 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 995: |
|
case_995(); |
|
break; |
|
case 996: |
|
case_996(); |
|
break; |
|
case 998: |
|
case_998(); |
|
break; |
|
case 999: |
|
case_999(); |
|
break; |
|
case 1002: |
|
case_1002(); |
|
break; |
|
case 1003: |
|
case_1003(); |
|
break; |
|
case 1011: |
|
#line 6906 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedName = (MemberName) yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 1012: |
|
#line 6913 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 1013: |
|
case_1013(); |
|
break; |
|
case 1014: |
|
case_1014(); |
|
break; |
|
case 1015: |
|
#line 6930 "cs-parser.jay" |
|
{ |
|
yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], MemberCache.IndexerNameAlias, Location.Null); |
|
} |
|
break; |
|
case 1016: |
|
#line 6934 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 1017: |
|
case_1017(); |
|
break; |
|
case 1018: |
|
case_1018(); |
|
break; |
|
case 1019: |
|
case_1019(); |
|
break; |
|
case 1020: |
|
case_1020(); |
|
break; |
|
case 1022: |
|
#line 6970 "cs-parser.jay" |
|
{ |
|
yyVal = new MemberName (((MemberName) yyVals[-2+yyTop]), (MemberName) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 1024: |
|
#line 6978 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 1025: |
|
#line 6982 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
break; |
|
case 1026: |
|
#line 6989 "cs-parser.jay" |
|
{ |
|
yyVal = new List<DocumentationParameter> (0); |
|
} |
|
break; |
|
case 1028: |
|
case_1028(); |
|
break; |
|
case 1029: |
|
case_1029(); |
|
break; |
|
case 1030: |
|
case_1030(); |
|
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 393 "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"); |
|
|
|
current_namespace.UnattachedAttributes = attrs; |
|
} |
|
} |
|
|
|
void case_8() |
|
#line 407 "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 427 "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 460 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_18() |
|
#line 468 "cs-parser.jay" |
|
{ |
|
var un = new UsingNamespace ((ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
current_namespace.AddUsing (un); |
|
|
|
lbag.AddLocation (un, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_19() |
|
#line 475 "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); |
|
lbag.AddLocation (un, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_20() |
|
#line 487 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_21() |
|
#line 500 "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)) { |
|
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); |
|
|
|
var ns = new NamespaceContainer (name, current_namespace); |
|
current_namespace.AddTypeContainer (ns); |
|
current_container = current_namespace = ns; |
|
} |
|
|
|
void case_22() |
|
#line 528 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_23() |
|
#line 533 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] != null) |
|
lbag.AddLocation (current_container, GetLocation (yyVals[-9+yyTop]), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
else |
|
lbag.AddLocation (current_container, GetLocation (yyVals[-9+yyTop]), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-1+yyTop])); |
|
|
|
current_container = current_namespace = current_namespace.Parent; |
|
} |
|
|
|
void case_24() |
|
#line 542 "cs-parser.jay" |
|
{ |
|
report.Error (1514, lexer.Location, "Unexpected symbol `{0}', expecting `.' or `{{'", GetSymbolName (yyToken)); |
|
|
|
var name = (MemberName) yyVals[0+yyTop]; |
|
var ns = new NamespaceContainer (name, current_namespace); |
|
lbag.AddLocation (ns, GetLocation (yyVals[-1+yyTop])); |
|
current_namespace.AddTypeContainer (ns); |
|
} |
|
|
|
void case_27() |
|
#line 556 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_28() |
|
#line 564 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new MemberName (lt.Value, lt.Location); |
|
} |
|
|
|
void case_29() |
|
#line 569 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], lt.Value, lt.Location) { |
|
DotLocation = GetLocation (yyVals[-1+yyTop]) |
|
}; |
|
} |
|
|
|
void case_30() |
|
#line 576 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new MemberName ("<invalid>", lexer.Location); |
|
} |
|
|
|
void case_43() |
|
#line 614 "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); |
|
} |
|
} |
|
current_namespace.DeclarationFound = true; |
|
} |
|
|
|
void case_45() |
|
#line 636 "cs-parser.jay" |
|
{ |
|
current_namespace.UnattachedAttributes = (Attributes) yyVals[-1+yyTop]; |
|
report.Error (1518, lexer.Location, "Attributes must be attached to class, delegate, enum, interface or struct"); |
|
lexer.putback ('}'); |
|
} |
|
|
|
void case_53() |
|
#line 669 "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_54() |
|
#line 680 "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_55() |
|
#line 696 "cs-parser.jay" |
|
{ |
|
lexer.parsing_attribute_section = true; |
|
savedOpenLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_56() |
|
#line 701 "cs-parser.jay" |
|
{ |
|
lexer.parsing_attribute_section = false; |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_57() |
|
#line 709 "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_58() |
|
#line 716 "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_59() |
|
#line 732 "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_60() |
|
#line 744 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = CheckAttributeTarget (lt.Value, lt.Location); |
|
savedCloseLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_63() |
|
#line 752 "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_65() |
|
#line 769 "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_67() |
|
#line 784 "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 (); |
|
} else if (HadAttributeParens) { |
|
lbag.AddLocation (yyVal, savedAttrParenOpenLocation, savedAttrParenCloseLocation); |
|
} |
|
} |
|
|
|
void case_70() |
|
#line 812 "cs-parser.jay" |
|
{ |
|
savedAttrParenOpenLocation = GetLocation (yyVals[-2+yyTop]); |
|
savedAttrParenCloseLocation = GetLocation (yyVals[0+yyTop]); |
|
yyVal = yyVals[-1+yyTop]; |
|
HadAttributeParens = true; |
|
} |
|
|
|
void case_72() |
|
#line 824 "cs-parser.jay" |
|
{ |
|
Arguments a = new Arguments (4); |
|
a.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = new Arguments [] { a, null }; |
|
} |
|
|
|
void case_73() |
|
#line 830 "cs-parser.jay" |
|
{ |
|
Arguments a = new Arguments (4); |
|
a.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = new Arguments [] { null, a }; |
|
} |
|
|
|
void case_74() |
|
#line 836 "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_75() |
|
#line 851 "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_79() |
|
#line 876 "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_80() |
|
#line 886 "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_99() |
|
#line 940 "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_101() |
|
#line 956 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
push_current_container (new Struct (current_container, (MemberName) yyVals[0+yyTop], (Modifiers) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop]), yyVals[-3+yyTop]); |
|
lbag.AddMember (current_container, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_102() |
|
#line 963 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
|
|
if (yyVals[0+yyTop] != null) |
|
current_container.SetConstraints ((List<Constraints>) yyVals[0+yyTop]); |
|
|
|
if (doc_support) |
|
current_container.PartialContainer.DocComment = Lexer.consume_doc_comment (); |
|
|
|
|
|
lexer.parsing_modifiers = true; |
|
} |
|
|
|
void case_103() |
|
#line 976 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_104() |
|
#line 981 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_105() |
|
#line 987 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] == null) { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} else { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
yyVal = pop_current_class (); |
|
} |
|
|
|
void case_107() |
|
#line 1005 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
var mod = (Modifiers) yyVals[-3+yyTop]; |
|
current_field = new Const (current_type, (FullNamedExpression) yyVals[-1+yyTop], mod, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-4+yyTop]); |
|
current_type.AddMember (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_108() |
|
#line 1018 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
current_field.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
current_field.Initializer = (ConstInitializer) yyVals[-2+yyTop]; |
|
lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
current_field = null; |
|
} |
|
|
|
void case_109() |
|
#line 1031 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
current_type.AddMember (new Const (current_type, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], MemberName.Null, (Attributes) yyVals[-4+yyTop])); |
|
} |
|
|
|
void case_114() |
|
#line 1056 "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_116() |
|
#line 1069 "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_117() |
|
#line 1075 "cs-parser.jay" |
|
{ |
|
report.Error (145, lexer.Location, "A const field requires a value to be provided"); |
|
yyVal = null; |
|
} |
|
|
|
void case_120() |
|
#line 1090 "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_type, type, (Modifiers) yyVals[-2+yyTop], new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-3+yyTop]); |
|
current_type.AddField (current_field); |
|
yyVal = current_field; |
|
} |
|
|
|
void case_121() |
|
#line 1105 "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_122() |
|
#line 1118 "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_type, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], |
|
new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-4+yyTop]); |
|
|
|
current_type.AddField (current_field); |
|
} |
|
|
|
void case_123() |
|
#line 1129 "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_126() |
|
#line 1152 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_127() |
|
#line 1158 "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_132() |
|
#line 1185 "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_134() |
|
#line 1195 "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_139() |
|
#line 1221 "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_141() |
|
#line 1234 "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_142() |
|
#line 1240 "cs-parser.jay" |
|
{ |
|
report.Error (443, lexer.Location, "Value or constant expected"); |
|
yyVal = null; |
|
} |
|
|
|
void case_145() |
|
#line 1250 "cs-parser.jay" |
|
{ |
|
/* It has to be here for the parent to safely restore artificial block*/ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_146() |
|
#line 1259 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
|
|
/* Was added earlier in the case of body being eof for full ast*/ |
|
} |
|
|
|
void case_147() |
|
#line 1266 "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_149() |
|
#line 1302 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
MemberName name = (MemberName) yyVals[-4+yyTop]; |
|
current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop]; |
|
|
|
var method = Method.Create (current_type, (FullNamedExpression) yyVals[-5+yyTop], (Modifiers) yyVals[-6+yyTop], |
|
name, current_local_parameters, (Attributes) yyVals[-7+yyTop]); |
|
|
|
current_type.AddMember (method); |
|
|
|
async_block = (method.ModFlags & Modifiers.ASYNC) != 0; |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
lbag.AddMember (method, GetModifierLocations (), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
yyVal = method; |
|
|
|
lexer.ConstraintsParsing = true; |
|
} |
|
|
|
void case_150() |
|
#line 1323 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
|
|
if (yyVals[0+yyTop] != null) { |
|
var method = (Method) yyVals[-1+yyTop]; |
|
method.SetConstraints ((List<Constraints>) yyVals[0+yyTop]); |
|
} |
|
|
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_152() |
|
#line 1342 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
|
|
void case_154() |
|
#line 1351 "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_type, new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-8+yyTop])), |
|
modifiers, name, current_local_parameters, (Attributes) yyVals[-11+yyTop]); |
|
|
|
current_type.AddMember (method); |
|
|
|
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_155() |
|
#line 1380 "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_type, (FullNamedExpression) yyVals[-5+yyTop], |
|
0, name, (ParametersCompiled) yyVals[-1+yyTop], (Attributes) yyVals[-7+yyTop]); |
|
|
|
current_type.AddMember (method); |
|
|
|
current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop]; |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
yyVal = method; |
|
} |
|
|
|
void case_156() |
|
#line 1401 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
current_local_parameters = ParametersCompiled.Undefined; |
|
|
|
MemberName name = (MemberName) yyVals[-1+yyTop]; |
|
var method = Method.Create (current_type, (FullNamedExpression) yyVals[-2+yyTop], (Modifiers) yyVals[-3+yyTop], |
|
name, current_local_parameters, (Attributes) yyVals[-4+yyTop]); |
|
|
|
current_type.AddMember (method); |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
yyVal = method; |
|
} |
|
|
|
void case_161() |
|
#line 1430 "cs-parser.jay" |
|
{ |
|
var pars_list = (List<Parameter>) yyVals[0+yyTop]; |
|
yyVal = new ParametersCompiled (pars_list.ToArray ()); |
|
lbag.AddLocation (yyVal, parameterListCommas); |
|
} |
|
|
|
void case_162() |
|
#line 1436 "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_163() |
|
#line 1445 "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_164() |
|
#line 1454 "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_165() |
|
#line 1462 "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_166() |
|
#line 1475 "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_167() |
|
#line 1482 "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_170() |
|
#line 1502 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = ParametersCompiled.EmptyReadOnlyParameters; |
|
} |
|
|
|
void case_171() |
|
#line 1510 "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_172() |
|
#line 1519 "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_173() |
|
#line 1543 "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_174() |
|
#line 1552 "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_175() |
|
#line 1559 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
Location l = GetLocation (yyVals[0+yyTop]); |
|
yyVal = new Parameter (null, null, Parameter.Modifier.NONE, (Attributes) yyVals[-1+yyTop], l); |
|
} |
|
|
|
void case_176() |
|
#line 1568 "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_178() |
|
#line 1583 "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_182() |
|
#line 1632 "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_183() |
|
#line 1656 "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_184() |
|
#line 1663 "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_185() |
|
#line 1670 "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_186() |
|
#line 1683 "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_187() |
|
#line 1689 "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_188() |
|
#line 1697 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new ParamsParameter ((FullNamedExpression) yyVals[-1+yyTop], null, (Attributes) yyVals[-3+yyTop], Location.Null); |
|
} |
|
|
|
void case_189() |
|
#line 1706 "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_190() |
|
#line 1712 "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_192() |
|
#line 1729 "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_193() |
|
#line 1740 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
tmpComment = Lexer.consume_doc_comment (); |
|
} |
|
|
|
void case_194() |
|
#line 1745 "cs-parser.jay" |
|
{ |
|
var type = (FullNamedExpression) yyVals[-3+yyTop]; |
|
current_property = new Property (current_type, 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_type.AddMember (current_property); |
|
lbag.AddMember (current_property, GetModifierLocations (), GetLocation (yyVals[0+yyTop])); |
|
|
|
lexer.PropertyParsing = true; |
|
} |
|
|
|
void case_195() |
|
#line 1759 "cs-parser.jay" |
|
{ |
|
lexer.PropertyParsing = false; |
|
|
|
if (doc_support) |
|
current_property.DocComment = ConsumeStoredComment (); |
|
} |
|
|
|
void case_196() |
|
#line 1766 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_property, GetLocation (yyVals[0+yyTop])); |
|
current_property = null; |
|
} |
|
|
|
void case_198() |
|
#line 1780 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
var type = (FullNamedExpression) yyVals[-5+yyTop]; |
|
Indexer indexer = new Indexer (current_type, type, (MemberName) yyVals[-4+yyTop], (Modifiers) yyVals[-6+yyTop], (ParametersCompiled) yyVals[-1+yyTop], (Attributes) yyVals[-7+yyTop]); |
|
|
|
current_property = indexer; |
|
|
|
current_type.AddIndexer (indexer); |
|
lbag.AddMember (current_property, GetModifierLocations (), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
|
|
if (type.Type != null && type.Type.Kind == MemberKind.Void) |
|
report.Error (620, GetLocation (yyVals[-5+yyTop]), "`{0}': indexer return type cannot be `void'", indexer.GetSignatureForError ()); |
|
|
|
if (indexer.ParameterInfo.IsEmpty) { |
|
report.Error (1551, GetLocation (yyVals[-3+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_200() |
|
#line 1809 "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[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
current_property = null; |
|
} |
|
|
|
void case_205() |
|
#line 1828 "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_206() |
|
#line 1842 "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_207() |
|
#line 1863 "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_208() |
|
#line 1887 "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_209() |
|
#line 1913 "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_211() |
|
#line 1938 "cs-parser.jay" |
|
{ |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
yyVal = null; |
|
} |
|
|
|
void case_212() |
|
#line 1943 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (1043, yyToken, "Invalid accessor body"); |
|
yyVal = null; |
|
} |
|
|
|
void case_214() |
|
#line 1957 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
push_current_container (new Interface (current_container, (MemberName) yyVals[0+yyTop], (Modifiers) yyVals[-4+yyTop], (Attributes) yyVals[-5+yyTop]), yyVals[-3+yyTop]); |
|
lbag.AddMember (current_container, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_215() |
|
#line 1964 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
|
|
if (yyVals[0+yyTop] != null) |
|
current_container.SetConstraints ((List<Constraints>) yyVals[0+yyTop]); |
|
|
|
if (doc_support) { |
|
current_container.PartialContainer.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
lexer.parsing_modifiers = true; |
|
} |
|
|
|
void case_216() |
|
#line 1978 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_217() |
|
#line 1984 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] == null) { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} else { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
yyVal = pop_current_class (); |
|
} |
|
|
|
void case_233() |
|
#line 2046 "cs-parser.jay" |
|
{ |
|
OperatorDeclaration decl = (OperatorDeclaration) yyVals[-2+yyTop]; |
|
if (decl != null) { |
|
Operator op = new Operator ( |
|
current_type, 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_type.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_237() |
|
#line 2083 "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_239() |
|
#line 2095 "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_264() |
|
#line 2171 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
|
|
Location loc = GetLocation (yyVals[-5+yyTop]); |
|
current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; |
|
|
|
if (current_local_parameters.Count != 1) { |
|
report.Error (1535, loc, "Overloaded unary operator `implicit' takes one parameter"); |
|
} |
|
|
|
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_266() |
|
#line 2194 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
|
|
Location loc = GetLocation (yyVals[-5+yyTop]); |
|
current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; |
|
|
|
if (current_local_parameters.Count != 1) { |
|
report.Error (1535, loc, "Overloaded unary operator `explicit' takes one parameter"); |
|
} |
|
|
|
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_267() |
|
#line 2213 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
yyVal = new OperatorDeclaration (Operator.OpType.Implicit, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_268() |
|
#line 2219 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
yyVal = new OperatorDeclaration (Operator.OpType.Explicit, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_269() |
|
#line 2229 "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_270() |
|
#line 2246 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
|
|
void case_271() |
|
#line 2255 "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_type, 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_type.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_272() |
|
#line 2284 "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_278() |
|
#line 2316 "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_280() |
|
#line 2326 "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_281() |
|
#line 2332 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ConstructorThisInitializer (null, GetLocation (yyVals[0+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_282() |
|
#line 2338 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_283() |
|
#line 2346 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
|
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
} |
|
|
|
void case_284() |
|
#line 2355 "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_type, (Modifiers) yyVals[-6+yyTop], |
|
ParametersCompiled.EmptyReadOnlyParameters, (Attributes) yyVals[-7+yyTop], lt.Location); |
|
d.Identifier = lt.Value; |
|
if (doc_support) |
|
d.DocComment = ConsumeStoredComment (); |
|
|
|
d.Block = (ToplevelBlock) yyVals[0+yyTop]; |
|
current_type.AddMember (d); |
|
lbag.AddMember (d, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[-1+yyTop])); |
|
|
|
current_local_parameters = null; |
|
} |
|
|
|
void case_285() |
|
#line 2381 "cs-parser.jay" |
|
{ |
|
current_event_field = new EventField (current_type, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], (MemberName) yyVals[0+yyTop], (Attributes) yyVals[-4+yyTop]); |
|
current_type.AddMember (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_286() |
|
#line 2395 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
current_event_field.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
if (current_event_field.Initializer != null) { |
|
lbag.AddMember (current_event_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), savedEventAssignLocation, GetLocation (yyVals[0+yyTop])); |
|
} else { |
|
lbag.AddMember (current_event_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
current_event_field = null; |
|
} |
|
|
|
void case_287() |
|
#line 2411 "cs-parser.jay" |
|
{ |
|
current_event = new EventProperty (current_type, (FullNamedExpression) yyVals[-2+yyTop], (Modifiers) yyVals[-4+yyTop], (MemberName) yyVals[-1+yyTop], (Attributes) yyVals[-5+yyTop]); |
|
current_type.AddMember (current_event); |
|
lbag.AddMember (current_event, GetModifierLocations (), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
|
|
lexer.EventParsing = true; |
|
} |
|
|
|
void case_288() |
|
#line 2419 "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_289() |
|
#line 2426 "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_290() |
|
#line 2439 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
current_type.AddMember (new EventField (current_type, (FullNamedExpression) yyVals[-1+yyTop], (Modifiers) yyVals[-3+yyTop], MemberName.Null, (Attributes) yyVals[-4+yyTop])); |
|
} |
|
|
|
void case_293() |
|
#line 2453 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
savedEventAssignLocation = GetLocation (yyVals[-2+yyTop]); |
|
current_event_field.Initializer = (Expression) yyVals[0+yyTop]; |
|
} |
|
|
|
void case_298() |
|
#line 2478 "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_300() |
|
#line 2488 "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_301() |
|
#line 2497 "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_305() |
|
#line 2518 "cs-parser.jay" |
|
{ |
|
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", |
|
current_event.GetSignatureForError ()); |
|
} |
|
|
|
void case_306() |
|
#line 2523 "cs-parser.jay" |
|
{ |
|
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", |
|
current_event.GetSignatureForError ()); |
|
} |
|
|
|
void case_307() |
|
#line 2528 "cs-parser.jay" |
|
{ |
|
report.Error (1055, GetLocation (yyVals[0+yyTop]), "An add or remove accessor expected"); |
|
yyVal = null; |
|
} |
|
|
|
void case_308() |
|
#line 2536 "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_309() |
|
#line 2548 "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_310() |
|
#line 2564 "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_311() |
|
#line 2576 "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_312() |
|
#line 2592 "cs-parser.jay" |
|
{ |
|
report.Error (73, lexer.Location, "An add or remove accessor must have a body"); |
|
yyVal = null; |
|
} |
|
|
|
void case_314() |
|
#line 2601 "cs-parser.jay" |
|
{ |
|
current_type.UnattachedAttributes = (Attributes) yyVals[-1+yyTop]; |
|
report.Error (1519, GetLocation (yyVals[-1+yyTop]), "An attribute is missing member declaration"); |
|
lexer.putback ('}'); |
|
} |
|
|
|
void case_315() |
|
#line 2614 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
enumTypeComment = Lexer.consume_doc_comment (); |
|
} |
|
|
|
void case_316() |
|
#line 2619 "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_container (new Enum (current_container, (FullNamedExpression) yyVals[-2+yyTop], (Modifiers) yyVals[-5+yyTop], name, (Attributes) yyVals[-6+yyTop]), null); |
|
if (yyVals[-2+yyTop] != null) { |
|
lbag.AddMember (current_container, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), savedLocation, GetLocation (yyVals[0+yyTop])); |
|
} else { |
|
lbag.AddMember (current_container, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
} |
|
|
|
void case_317() |
|
#line 2636 "cs-parser.jay" |
|
{ |
|
/* here will be evaluated after CLOSE_BLACE is consumed.*/ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_318() |
|
#line 2642 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-1+yyTop])); |
|
if (yyVals[0+yyTop] != null) { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[0+yyTop])); |
|
} |
|
if (doc_support) |
|
current_container.DocComment = enumTypeComment; |
|
|
|
--lexer.parsing_declaration; |
|
|
|
/* if (doc_support)*/ |
|
/* em.DocComment = ev.DocComment;*/ |
|
|
|
yyVal = pop_current_class (); |
|
} |
|
|
|
void case_320() |
|
#line 2662 "cs-parser.jay" |
|
{ |
|
savedLocation = GetLocation (yyVals[-1+yyTop]); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_321() |
|
#line 2667 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (GetLocation (yyVals[-1+yyTop])); |
|
yyVal = null; |
|
} |
|
|
|
void case_326() |
|
#line 2685 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_327() |
|
#line 2693 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
var em = new EnumMember ((Enum) current_type, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-1+yyTop]); |
|
((Enum) current_type).AddEnumMember (em); |
|
|
|
if (doc_support) { |
|
em.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
yyVal = em; |
|
} |
|
|
|
void case_328() |
|
#line 2706 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
} |
|
|
|
void case_329() |
|
#line 2714 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
|
|
var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; |
|
var em = new EnumMember ((Enum) current_type, 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_type).AddEnumMember (em); |
|
|
|
if (doc_support) |
|
em.DocComment = ConsumeStoredComment (); |
|
|
|
yyVal = em; |
|
} |
|
|
|
void case_330() |
|
#line 2728 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
var em = new EnumMember ((Enum) current_type, new MemberName (lt.Value, lt.Location), (Attributes) yyVals[-2+yyTop]); |
|
((Enum) current_type).AddEnumMember (em); |
|
|
|
if (doc_support) { |
|
em.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
yyVal = em; |
|
} |
|
|
|
void case_333() |
|
#line 2755 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
|
|
ParametersCompiled p = (ParametersCompiled) yyVals[-1+yyTop]; |
|
|
|
Delegate del = new Delegate (current_container, (FullNamedExpression) yyVals[-5+yyTop], (Modifiers) yyVals[-7+yyTop], (MemberName) yyVals[-4+yyTop], p, (Attributes) yyVals[-8+yyTop]); |
|
|
|
p.CheckParameters (del); |
|
|
|
current_container.AddTypeContainer (del); |
|
|
|
current_delegate = del; |
|
lexer.ConstraintsParsing = true; |
|
} |
|
|
|
void case_335() |
|
#line 2774 "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_337() |
|
#line 2793 "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_339() |
|
#line 2804 "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, savedLocation, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_341() |
|
#line 2816 "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_342() |
|
#line 2826 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); |
|
} |
|
|
|
void case_344() |
|
#line 2838 "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_345() |
|
#line 2849 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (lexer.Location); |
|
yyVal = new TypeArguments (); |
|
} |
|
|
|
void case_346() |
|
#line 2857 "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_347() |
|
#line 2864 "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_349() |
|
#line 2881 "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_350() |
|
#line 2890 "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_352() |
|
#line 2901 "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_353() |
|
#line 2910 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
yyVal = new MemberName (TypeDefinition.DefaultIndexerName, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_354() |
|
#line 2915 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
yyVal = new MemberName (TypeDefinition.DefaultIndexerName, null, (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_355() |
|
#line 2923 "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_356() |
|
#line 2929 "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, savedLocation, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_357() |
|
#line 2937 "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_359() |
|
#line 2947 "cs-parser.jay" |
|
{ |
|
if (lang_version < LanguageVersion.ISO_2) |
|
FeatureIsNotAvailable (GetLocation (yyVals[-2+yyTop]), "generics"); |
|
|
|
yyVal = yyVals[-1+yyTop]; |
|
var list = locationListStack.Pop (); |
|
list.Add (GetLocation (yyVals[-2+yyTop])); |
|
list.Add (GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddLocation (yyVals[-1+yyTop], list); |
|
} |
|
|
|
void case_360() |
|
#line 2961 "cs-parser.jay" |
|
{ |
|
var tparams = new TypeParameters (); |
|
tparams.Add ((TypeParameter)yyVals[0+yyTop]); |
|
yyVal = tparams; |
|
locationListStack.Push (new List<Location> ()); |
|
} |
|
|
|
void case_361() |
|
#line 2968 "cs-parser.jay" |
|
{ |
|
var tparams = (TypeParameters) yyVals[-2+yyTop]; |
|
tparams.Add ((TypeParameter)yyVals[0+yyTop]); |
|
yyVal = tparams; |
|
locationListStack.Peek ().Add (GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_362() |
|
#line 2978 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken)yyVals[0+yyTop]; |
|
var variance = (Variance) yyVals[-1+yyTop]; |
|
yyVal = new TypeParameter (new MemberName (lt.Value, lt.Location), (Attributes)yyVals[-2+yyTop], variance); |
|
if (variance != Variance.None) |
|
lbag.AddLocation (yyVal, savedLocation); |
|
} |
|
|
|
void case_363() |
|
#line 2986 "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_368() |
|
#line 3020 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_370() |
|
#line 3029 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_372() |
|
#line 3038 "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_375() |
|
#line 3054 "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_377() |
|
#line 3070 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] != null) |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
|
|
void case_380() |
|
#line 3086 "cs-parser.jay" |
|
{ |
|
var types = new List<FullNamedExpression> (2); |
|
types.Add ((FullNamedExpression) yyVals[0+yyTop]); |
|
yyVal = types; |
|
} |
|
|
|
void case_381() |
|
#line 3092 "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_382() |
|
#line 3102 "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_419() |
|
#line 3166 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); |
|
} |
|
|
|
void case_420() |
|
#line 3170 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionSimpleName (MemberName.MakeName (lt.Value, null), lt.Location); |
|
} |
|
|
|
void case_431() |
|
#line 3211 "cs-parser.jay" |
|
{ |
|
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_433() |
|
#line 3223 "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_434() |
|
#line 3230 "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_435() |
|
#line 3237 "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_436() |
|
#line 3244 "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, savedLocation, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_438() |
|
#line 3254 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); |
|
} |
|
|
|
void case_440() |
|
#line 3262 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); |
|
} |
|
|
|
void case_441() |
|
#line 3270 "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_442() |
|
#line 3275 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Invocation ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_443() |
|
#line 3282 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Invocation ((Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_446() |
|
#line 3297 "cs-parser.jay" |
|
{ |
|
if (yyVals[-1+yyTop] == null) { |
|
yyVal = new CollectionOrObjectInitializers (GetLocation (yyVals[-2+yyTop])); |
|
} else { |
|
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_447() |
|
#line 3306 "cs-parser.jay" |
|
{ |
|
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-2+yyTop], GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_450() |
|
#line 3322 "cs-parser.jay" |
|
{ |
|
var a = new List<Expression> (); |
|
a.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = a; |
|
} |
|
|
|
void case_451() |
|
#line 3328 "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_452() |
|
#line 3334 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_453() |
|
#line 3342 "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_454() |
|
#line 3348 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) Error_AwaitAsIdentifier (yyVals[-2+yyTop]); |
|
yyVal = new ElementInitializer (lt.Value, (Expression)yyVals[0+yyTop], lt.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_456() |
|
#line 3357 "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_457() |
|
#line 3365 "cs-parser.jay" |
|
{ |
|
if (yyVals[-1+yyTop] == null) |
|
yyVal = null; |
|
else { |
|
yyVal = new CollectionElementInitializer ((List<Expression>)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
} |
|
|
|
void case_458() |
|
#line 3374 "cs-parser.jay" |
|
{ |
|
report.Error (1920, GetLocation (yyVals[-1+yyTop]), "An element initializer cannot be empty"); |
|
yyVal = new CollectionElementInitializer (new List<Expression> (), GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_463() |
|
#line 3393 "cs-parser.jay" |
|
{ |
|
Arguments list = new Arguments (4); |
|
list.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_464() |
|
#line 3399 "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_465() |
|
#line 3409 "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_466() |
|
#line 3424 "cs-parser.jay" |
|
{ |
|
if (lexer.putback_char == -1) |
|
lexer.putback (')'); /* TODO: Wrong but what can I do*/ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-2+yyTop]; |
|
} |
|
|
|
void case_467() |
|
#line 3431 "cs-parser.jay" |
|
{ |
|
report.Error (839, GetLocation (yyVals[-1+yyTop]), "An argument is missing"); |
|
yyVal = null; |
|
} |
|
|
|
void case_472() |
|
#line 3452 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Ref); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_473() |
|
#line 3457 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Out); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_474() |
|
#line 3462 "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_475() |
|
#line 3467 "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_477() |
|
#line 3479 "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_478() |
|
#line 3484 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_479() |
|
#line 3489 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_480() |
|
#line 3497 "cs-parser.jay" |
|
{ |
|
var list = new List<Expression> (4); |
|
list.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_481() |
|
#line 3503 "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_482() |
|
#line 3509 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_483() |
|
#line 3517 "cs-parser.jay" |
|
{ |
|
Arguments args = new Arguments (4); |
|
args.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = args; |
|
} |
|
|
|
void case_484() |
|
#line 3523 "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_488() |
|
#line 3551 "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_489() |
|
#line 3556 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess (null, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_492() |
|
#line 3578 "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_493() |
|
#line 3591 "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_494() |
|
#line 3603 "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_495() |
|
#line 3611 "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_496() |
|
#line 3618 "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_497() |
|
#line 3625 "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_498() |
|
#line 3630 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
/* It can be any of new expression, create the most common one*/ |
|
yyVal = new New ((FullNamedExpression) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_500() |
|
#line 3642 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_type; |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_501() |
|
#line 3650 "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_506() |
|
#line 3673 "cs-parser.jay" |
|
{ |
|
var a = new List<AnonymousTypeParameter> (4); |
|
a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]); |
|
yyVal = a; |
|
} |
|
|
|
void case_507() |
|
#line 3679 "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_508() |
|
#line 3690 "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_509() |
|
#line 3696 "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_510() |
|
#line 3702 "cs-parser.jay" |
|
{ |
|
MemberAccess ma = (MemberAccess) yyVals[0+yyTop]; |
|
yyVal = new AnonymousTypeParameter (ma, ma.Name, ma.Location); |
|
} |
|
|
|
void case_511() |
|
#line 3707 "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_515() |
|
#line 3722 "cs-parser.jay" |
|
{ |
|
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_516() |
|
#line 3730 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreateArrayDimension (1, GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_517() |
|
#line 3735 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreateArrayDimension ((int)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_522() |
|
#line 3765 "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_523() |
|
#line 3772 "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_524() |
|
#line 3786 "cs-parser.jay" |
|
{ |
|
var list = new List<Expression> (4); |
|
list.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_525() |
|
#line 3792 "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_527() |
|
#line 3806 "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_530() |
|
#line 3817 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (lexer.Location); |
|
yyVal = null; |
|
} |
|
|
|
void case_531() |
|
#line 3825 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
var sn = new SimpleName (lt.Value, (int) yyVals[0+yyTop], lt.Location); |
|
yyVal = sn; |
|
lbag.AddLocation (sn.TypeArguments, Lexer.GetGenericDimensionLocations ()); |
|
} |
|
|
|
void case_532() |
|
#line 3832 "cs-parser.jay" |
|
{ |
|
var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
var qam = new QualifiedAliasMember (lt1.Value, lt2.Value, (int) yyVals[0+yyTop], lt1.Location); |
|
yyVal = qam; |
|
lbag.AddLocation (qam.TypeArguments, Lexer.GetGenericDimensionLocations ()); |
|
lbag.AddLocation (yyVal, savedLocation, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_533() |
|
#line 3841 "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_534() |
|
#line 3849 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
var ma = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (int) yyVals[0+yyTop], lt.Location) { |
|
DotLocation = GetLocation (yyVals[-2+yyTop]) |
|
}; |
|
yyVal = ma; |
|
lbag.AddLocation (ma.TypeArguments, Lexer.GetGenericDimensionLocations ()); |
|
} |
|
|
|
void case_535() |
|
#line 3859 "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]; |
|
var ma = new MemberAccess (tne, lt.Value, (int) yyVals[0+yyTop], lt.Location) { |
|
DotLocation = GetLocation (yyVals[-2+yyTop]) |
|
}; |
|
yyVal = ma; |
|
lbag.AddLocation (ma.TypeArguments, Lexer.GetGenericDimensionLocations ()); |
|
} |
|
|
|
void case_536() |
|
#line 3875 "cs-parser.jay" |
|
{ |
|
if (lang_version < LanguageVersion.ISO_2) |
|
FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "generics"); |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_537() |
|
#line 3885 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
if (lang_version == LanguageVersion.ISO_1) |
|
FeatureIsNotAvailable (lt.Location, "namespace alias qualifier"); |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
yyVal = lt; |
|
} |
|
|
|
void case_538() |
|
#line 3896 "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_539() |
|
#line 3901 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new SizeOf ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_540() |
|
#line 3911 "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_541() |
|
#line 3916 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new CheckedExpr (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_542() |
|
#line 3925 "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_543() |
|
#line 3930 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new UnCheckedExpr (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_544() |
|
#line 3939 "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_546() |
|
#line 3951 "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_548() |
|
#line 3964 "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_552() |
|
#line 3989 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
yyVal = yyVals[-1+yyTop]; |
|
savedOpenLocation = GetLocation (yyVals[-3+yyTop]); |
|
savedCloseLocation = GetLocation (yyVals[-2+yyTop]); |
|
} |
|
|
|
void case_553() |
|
#line 3999 "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_557() |
|
#line 4019 "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_558() |
|
#line 4024 "cs-parser.jay" |
|
{ |
|
if (!async_block) { |
|
if (current_anonymous_method is LambdaExpression) { |
|
report.Error (4034, GetLocation (yyVals[-1+yyTop]), |
|
"The `await' operator can only be used when its containing lambda expression is marked with the `async' modifier"); |
|
} else if (current_anonymous_method is AnonymousMethodExpression) { |
|
report.Error (4035, GetLocation (yyVals[-1+yyTop]), |
|
"The `await' operator can only be used when its containing anonymous method is marked with the `async' modifier"); |
|
} else { |
|
report.Error (4033, GetLocation (yyVals[-1+yyTop]), |
|
"The `await' operator can only be used when its containing method is marked with the `async' modifier"); |
|
} |
|
} else { |
|
current_block.Explicit.RegisterAsyncAwait (); |
|
} |
|
|
|
yyVal = new Await ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_559() |
|
#line 4043 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Unary (Unary.Operator.LogicalNot, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_560() |
|
#line 4049 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Unary (Unary.Operator.OnesComplement, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_561() |
|
#line 4055 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Cast ((FullNamedExpression) yyVals[-2+yyTop], null, GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_562() |
|
#line 4062 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Await (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_570() |
|
#line 4100 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Unary (Unary.Operator.UnaryPlus, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_571() |
|
#line 4106 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Unary (Unary.Operator.UnaryNegation, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_572() |
|
#line 4112 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreIncrement, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_573() |
|
#line 4118 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreDecrement, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_574() |
|
#line 4124 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Indirection (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_575() |
|
#line 4130 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Unary (Unary.Operator.AddressOf, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_577() |
|
#line 4140 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_578() |
|
#line 4145 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_579() |
|
#line 4150 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_580() |
|
#line 4155 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_581() |
|
#line 4162 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Division, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_582() |
|
#line 4169 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_584() |
|
#line 4180 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_585() |
|
#line 4185 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_588() |
|
#line 4198 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_589() |
|
#line 4205 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_590() |
|
#line 4212 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new As ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_591() |
|
#line 4218 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Is ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_593() |
|
#line 4228 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_594() |
|
#line 4233 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_595() |
|
#line 4238 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_596() |
|
#line 4245 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_598() |
|
#line 4256 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LessThan, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_599() |
|
#line 4261 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.GreaterThan, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_600() |
|
#line 4266 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LessThanOrEqual, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_601() |
|
#line 4271 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.GreaterThanOrEqual, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_602() |
|
#line 4276 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.LessThan, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_603() |
|
#line 4283 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.GreaterThan, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_604() |
|
#line 4290 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.LessThanOrEqual, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_605() |
|
#line 4297 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.GreaterThanOrEqual, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_607() |
|
#line 4308 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Equality, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_608() |
|
#line 4313 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Inequality, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_609() |
|
#line 4318 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Equality, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_610() |
|
#line 4325 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.Inequality, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_612() |
|
#line 4336 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_613() |
|
#line 4341 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_615() |
|
#line 4352 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_616() |
|
#line 4357 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_618() |
|
#line 4368 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_619() |
|
#line 4373 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_621() |
|
#line 4384 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LogicalAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_622() |
|
#line 4389 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.LogicalAnd, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_624() |
|
#line 4400 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LogicalOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_625() |
|
#line 4405 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Binary (Binary.Operator.LogicalOr, (Expression) yyVals[-2+yyTop], null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_627() |
|
#line 4416 "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]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_629() |
|
#line 4428 "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_630() |
|
#line 4433 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Conditional (new BooleanExpression ((Expression) yyVals[-3+yyTop]), (Expression) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_631() |
|
#line 4439 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Conditional (new BooleanExpression ((Expression) yyVals[-4+yyTop]), (Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_632() |
|
#line 4449 "cs-parser.jay" |
|
{ |
|
yyVal = new SimpleAssign ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_633() |
|
#line 4454 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_634() |
|
#line 4459 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_635() |
|
#line 4464 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_636() |
|
#line 4469 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_637() |
|
#line 4474 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_638() |
|
#line 4479 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_639() |
|
#line 4484 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_640() |
|
#line 4489 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_641() |
|
#line 4494 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_642() |
|
#line 4499 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign (Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_643() |
|
#line 4507 "cs-parser.jay" |
|
{ |
|
var pars = new List<Parameter> (4); |
|
pars.Add ((Parameter) yyVals[0+yyTop]); |
|
parameterListCommas.Clear (); |
|
yyVal = pars; |
|
} |
|
|
|
void case_644() |
|
#line 4514 "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_645() |
|
#line 4530 "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_646() |
|
#line 4536 "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_647() |
|
#line 4542 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new ImplicitLambdaParameter (lt.Value, lt.Location); |
|
} |
|
|
|
void case_648() |
|
#line 4547 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) Error_AwaitAsIdentifier (yyVals[0+yyTop]); |
|
yyVal = new ImplicitLambdaParameter (lt.Value, lt.Location); |
|
} |
|
|
|
void case_650() |
|
#line 4555 "cs-parser.jay" |
|
{ |
|
var pars_list = (List<Parameter>) yyVals[0+yyTop]; |
|
yyVal = new ParametersCompiled (pars_list.ToArray ()); |
|
lbag.AddLocation (yyVal, parameterListCommas); |
|
} |
|
|
|
void case_652() |
|
#line 4567 "cs-parser.jay" |
|
{ |
|
Block b = end_block (Location.Null); |
|
b.IsCompilerGenerated = true; |
|
b.AddStatement (new ContextualReturn ((Expression) yyVals[0+yyTop])); |
|
yyVal = b; |
|
} |
|
|
|
void case_654() |
|
#line 4575 "cs-parser.jay" |
|
{ |
|
/* Handles only cases like foo = x.FirstOrDefault (l => );*/ |
|
/* where we must restore current_variable*/ |
|
Block b = end_block (Location.Null); |
|
b.IsCompilerGenerated = true; |
|
|
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_656() |
|
#line 4589 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_657() |
|
#line 4597 "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_658() |
|
#line 4603 "cs-parser.jay" |
|
{ |
|
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_659() |
|
#line 4608 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) Error_AwaitAsIdentifier (yyVals[-1+yyTop]); |
|
Parameter p = new ImplicitLambdaParameter (lt.Value, lt.Location); |
|
start_anonymous (true, new ParametersCompiled (p), false, lt.Location); |
|
} |
|
|
|
void case_660() |
|
#line 4614 "cs-parser.jay" |
|
{ |
|
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_661() |
|
#line 4619 "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_662() |
|
#line 4625 "cs-parser.jay" |
|
{ |
|
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_664() |
|
#line 4634 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], false, GetLocation (yyVals[-4+yyTop])); |
|
} |
|
|
|
void case_665() |
|
#line 4639 "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_667() |
|
#line 4648 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], true, GetLocation (yyVals[-5+yyTop])); |
|
} |
|
|
|
void case_668() |
|
#line 4653 "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_675() |
|
#line 4676 "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_676() |
|
#line 4681 "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_677() |
|
#line 4686 "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_681() |
|
#line 4714 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
|
|
Class c = new Class (current_container, (MemberName) yyVals[0+yyTop], (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_container (c, yyVals[-3+yyTop]); |
|
lbag.AddMember (current_container, GetModifierLocations (), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_682() |
|
#line 4727 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
|
|
if (yyVals[0+yyTop] != null) |
|
current_container.SetConstraints ((List<Constraints>) yyVals[0+yyTop]); |
|
|
|
if (doc_support) { |
|
current_container.PartialContainer.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
lexer.parsing_modifiers = true; |
|
} |
|
|
|
void case_683() |
|
#line 4741 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_684() |
|
#line 4747 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] == null) { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} else { |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
yyVal = pop_current_class (); |
|
} |
|
|
|
void case_687() |
|
#line 4766 "cs-parser.jay" |
|
{ |
|
mod_locations = null; |
|
yyVal = ModifierNone; |
|
lexer.parsing_modifiers = false; |
|
} |
|
|
|
void case_690() |
|
#line 4780 "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_691() |
|
#line 4799 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.NEW; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
|
|
if (current_container.Kind == MemberKind.Namespace) |
|
report.Error (1530, GetLocation (yyVals[0+yyTop]), "Keyword `new' is not allowed on namespace elements"); |
|
} |
|
|
|
void case_692() |
|
#line 4807 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PUBLIC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_693() |
|
#line 4812 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PROTECTED; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_694() |
|
#line 4817 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.INTERNAL; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_695() |
|
#line 4822 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PRIVATE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_696() |
|
#line 4827 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.ABSTRACT; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_697() |
|
#line 4832 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.SEALED; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_698() |
|
#line 4837 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.STATIC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_699() |
|
#line 4842 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.READONLY; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_700() |
|
#line 4847 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.VIRTUAL; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_701() |
|
#line 4852 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.OVERRIDE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_702() |
|
#line 4857 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.EXTERN; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_703() |
|
#line 4862 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.VOLATILE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_704() |
|
#line 4867 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.UNSAFE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
if (!settings.Unsafe) |
|
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_705() |
|
#line 4874 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.ASYNC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_707() |
|
#line 4883 "cs-parser.jay" |
|
{ |
|
current_type.AddBasesForPart ((List<FullNamedExpression>) yyVals[0+yyTop]); |
|
lbag.AppendToMember (current_type, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_708() |
|
#line 4888 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
current_type.AddBasesForPart ((List<FullNamedExpression>) yyVals[-1+yyTop]); |
|
} |
|
|
|
void case_711() |
|
#line 4905 "cs-parser.jay" |
|
{ |
|
var constraints = new List<Constraints> (1); |
|
constraints.Add ((Constraints) yyVals[0+yyTop]); |
|
yyVal = constraints; |
|
} |
|
|
|
void case_712() |
|
#line 4911 "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_713() |
|
#line 4930 "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_714() |
|
#line 4936 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new Constraints (new SimpleMemberName (lt.Value, lt.Location), null, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_715() |
|
#line 4946 "cs-parser.jay" |
|
{ |
|
var constraints = new List<FullNamedExpression> (1); |
|
constraints.Add ((FullNamedExpression) yyVals[0+yyTop]); |
|
yyVal = constraints; |
|
} |
|
|
|
void case_716() |
|
#line 4952 "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_717() |
|
#line 4979 "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_718() |
|
#line 4986 "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_722() |
|
#line 5006 "cs-parser.jay" |
|
{ |
|
if (lang_version <= LanguageVersion.V_3) |
|
FeatureIsNotAvailable (lexer.Location, "generic type variance"); |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_723() |
|
#line 5016 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.Covariant; |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_724() |
|
#line 5021 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.Contravariant; |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_725() |
|
#line 5042 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_727() |
|
#line 5054 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_728() |
|
#line 5059 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (lexer.Location); |
|
} |
|
|
|
void case_729() |
|
#line 5068 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
current_block.StartLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_730() |
|
#line 5073 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_731() |
|
#line 5077 "cs-parser.jay" |
|
{ |
|
report.Error (1525, GetLocation (yyVals[0+yyTop]), "Unexpected symbol '}', expected '{'"); |
|
lexer.putback ('}'); |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_732() |
|
#line 5086 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
current_block.StartLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_733() |
|
#line 5091 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_741() |
|
#line 5119 "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_742() |
|
#line 5128 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_775() |
|
#line 5192 "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_776() |
|
#line 5197 "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_777() |
|
#line 5202 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_778() |
|
#line 5210 "cs-parser.jay" |
|
{ |
|
/* Uses lexer.Location because semicolon location is not kept in quick mode*/ |
|
yyVal = new EmptyStatement (lexer.Location); |
|
} |
|
|
|
void case_779() |
|
#line 5218 "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_782() |
|
#line 5231 "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_783() |
|
#line 5247 "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_784() |
|
#line 5277 "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_785() |
|
#line 5288 "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_788() |
|
#line 5303 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_790() |
|
#line 5312 "cs-parser.jay" |
|
{ |
|
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_794() |
|
#line 5335 "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_795() |
|
#line 5342 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
lbag.AppendTo (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_796() |
|
#line 5348 "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_797() |
|
#line 5355 "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_799() |
|
#line 5368 "cs-parser.jay" |
|
{ |
|
/* Redundant, but wont regress*/ |
|
report.Error (1525, lexer.Location, "Unexpected symbol }"); |
|
lexer.putback ('}'); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_801() |
|
#line 5379 "cs-parser.jay" |
|
{ |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_802() |
|
#line 5384 "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_803() |
|
#line 5398 "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_807() |
|
#line 5416 "cs-parser.jay" |
|
{ |
|
foreach (var d in current_variable.Declarators) { |
|
if (d.Initializer == null) |
|
Error_MissingInitializer (d.Variable.Location); |
|
} |
|
} |
|
|
|
void case_810() |
|
#line 5431 "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_811() |
|
#line 5440 "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_813() |
|
#line 5456 "cs-parser.jay" |
|
{ |
|
savedLocation = GetLocation (yyVals[-1+yyTop]); |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
} |
|
|
|
void case_818() |
|
#line 5474 "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_820() |
|
#line 5487 "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_821() |
|
#line 5492 "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_822() |
|
#line 5500 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_824() |
|
#line 5506 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
report.Error (1002, GetLocation (yyVals[0+yyTop]), "; expected"); |
|
lexer.putback ('}'); |
|
} |
|
|
|
void case_827() |
|
#line 5524 "cs-parser.jay" |
|
{ |
|
ExpressionStatement s = yyVals[0+yyTop] as ExpressionStatement; |
|
if (s == null) { |
|
var expr = yyVals[0+yyTop] as Expression; |
|
expr.Error_InvalidExpressionStatement (report); |
|
yyVal = new StatementErrorExpression (expr); |
|
} else { |
|
yyVal = new StatementExpression (s); |
|
} |
|
} |
|
|
|
void case_828() |
|
#line 5538 "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_829() |
|
#line 5546 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_832() |
|
#line 5560 "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_833() |
|
#line 5569 "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_834() |
|
#line 5579 "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_836() |
|
#line 5593 "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_837() |
|
#line 5599 "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_838() |
|
#line 5609 "cs-parser.jay" |
|
{ |
|
report.Warning (1522, 1, current_block.StartLocation, "Empty switch block"); |
|
yyVal = new List<SwitchSection> (); |
|
} |
|
|
|
void case_840() |
|
#line 5618 "cs-parser.jay" |
|
{ |
|
var sections = new List<SwitchSection> (4); |
|
|
|
sections.Add ((SwitchSection) yyVals[0+yyTop]); |
|
yyVal = sections; |
|
} |
|
|
|
void case_841() |
|
#line 5625 "cs-parser.jay" |
|
{ |
|
var sections = (List<SwitchSection>) yyVals[-1+yyTop]; |
|
|
|
sections.Add ((SwitchSection) yyVals[0+yyTop]); |
|
yyVal = sections; |
|
} |
|
|
|
void case_842() |
|
#line 5632 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new List<SwitchSection> (); |
|
} |
|
|
|
void case_845() |
|
#line 5651 "cs-parser.jay" |
|
{ |
|
var labels = new List<SwitchLabel> (2); |
|
|
|
labels.Add ((SwitchLabel) yyVals[0+yyTop]); |
|
yyVal = labels; |
|
} |
|
|
|
void case_846() |
|
#line 5658 "cs-parser.jay" |
|
{ |
|
var labels = (List<SwitchLabel>) (yyVals[-1+yyTop]); |
|
labels.Add ((SwitchLabel) yyVals[0+yyTop]); |
|
|
|
yyVal = labels; |
|
} |
|
|
|
void case_847() |
|
#line 5668 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchLabel ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_848() |
|
#line 5673 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new SwitchLabel ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_854() |
|
#line 5692 "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_855() |
|
#line 5700 "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_856() |
|
#line 5710 "cs-parser.jay" |
|
{ |
|
yyVal = new Do ((Statement) yyVals[-5+yyTop], (BooleanExpression) yyVals[-2+yyTop], GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-4+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_857() |
|
#line 5715 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Do ((Statement) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]), Location.Null); |
|
} |
|
|
|
void case_858() |
|
#line 5720 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Do ((Statement) yyVals[-4+yyTop], (BooleanExpression) yyVals[-1+yyTop], GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_859() |
|
#line 5730 "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); |
|
lbag.AddStatement (f, current_block.StartLocation); |
|
yyVal = f; |
|
} |
|
|
|
void case_861() |
|
#line 5747 "cs-parser.jay" |
|
{ |
|
For f = (For) yyVals[-2+yyTop]; |
|
f.Initializer = (Statement) yyVals[-1+yyTop]; |
|
lbag.AppendTo (f, GetLocation (yyVals[0+yyTop])); |
|
yyVal = f; |
|
} |
|
|
|
void case_863() |
|
#line 5757 "cs-parser.jay" |
|
{ |
|
report.Error (1525, GetLocation (yyVals[0+yyTop]), "Unexpected symbol ')', expected ';'"); |
|
For f = (For) yyVals[-2+yyTop]; |
|
f.Initializer = (Statement) yyVals[-1+yyTop]; |
|
lbag.AppendTo (f, GetLocation (yyVals[0+yyTop])); |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_864() |
|
#line 5768 "cs-parser.jay" |
|
{ |
|
For f = (For) yyVals[-2+yyTop]; |
|
f.Condition = (BooleanExpression) yyVals[-1+yyTop]; |
|
lbag.AppendTo (f, GetLocation (yyVals[0+yyTop])); |
|
yyVal = f; |
|
} |
|
|
|
void case_866() |
|
#line 5779 "cs-parser.jay" |
|
{ |
|
report.Error (1525, GetLocation (yyVals[0+yyTop]), "Unexpected symbol ')', expected ';'"); |
|
For f = (For) yyVals[-2+yyTop]; |
|
f.Condition = (BooleanExpression) yyVals[-1+yyTop]; |
|
lbag.AppendTo (f, GetLocation (yyVals[0+yyTop])); |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_867() |
|
#line 5791 "cs-parser.jay" |
|
{ |
|
For f = (For) yyVals[-3+yyTop]; |
|
f.Iterator = (Statement) yyVals[-2+yyTop]; |
|
|
|
if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE) |
|
Warning_EmptyStatement (GetLocation (yyVals[0+yyTop])); |
|
|
|
f.Statement = (Statement) yyVals[0+yyTop]; |
|
lbag.AppendTo (f, GetLocation (yyVals[-1+yyTop])); |
|
|
|
yyVal = end_block (GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_868() |
|
#line 5804 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = end_block (current_block.StartLocation); |
|
} |
|
|
|
void case_871() |
|
#line 5817 "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_872() |
|
#line 5824 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_880() |
|
#line 5848 "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_881() |
|
#line 5865 "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, 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_882() |
|
#line 5878 "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, 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_883() |
|
#line 5895 "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_884() |
|
#line 5904 "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], current_block, GetLocation (yyVals[-8+yyTop])); |
|
lbag.AddStatement (f, GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
end_block (GetLocation (yyVals[-2+yyTop])); |
|
|
|
yyVal = f; |
|
} |
|
|
|
void case_885() |
|
#line 5915 "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, 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_886() |
|
#line 5928 "cs-parser.jay" |
|
{ |
|
Foreach f = new Foreach ((Expression) yyVals[-1+yyTop], null, null, null, null, GetLocation (yyVals[-3+yyTop])); |
|
current_block.AddStatement (f); |
|
|
|
lbag.AddStatement (f, GetLocation (yyVals[-2+yyTop])); |
|
yyVal = f; |
|
} |
|
|
|
void case_893() |
|
#line 5948 "cs-parser.jay" |
|
{ |
|
yyVal = new Break (GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_894() |
|
#line 5956 "cs-parser.jay" |
|
{ |
|
yyVal = new Continue (GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_895() |
|
#line 5961 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Continue (GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_896() |
|
#line 5969 "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_897() |
|
#line 5975 "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_898() |
|
#line 5980 "cs-parser.jay" |
|
{ |
|
yyVal = new GotoDefault (GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_899() |
|
#line 5988 "cs-parser.jay" |
|
{ |
|
yyVal = new Return ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_900() |
|
#line 5993 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Return ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_901() |
|
#line 5998 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Return (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_902() |
|
#line 6006 "cs-parser.jay" |
|
{ |
|
yyVal = new Throw ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_903() |
|
#line 6011 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Throw (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_904() |
|
#line 6019 "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_905() |
|
#line 6035 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
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])); |
|
} |
|
|
|
void case_906() |
|
#line 6053 "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_910() |
|
#line 6079 "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_911() |
|
#line 6084 "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_912() |
|
#line 6089 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (1524, yyToken); |
|
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]), false); |
|
} |
|
|
|
void case_913() |
|
#line 6097 "cs-parser.jay" |
|
{ |
|
var l = new List<Catch> (2); |
|
|
|
l.Add ((Catch) yyVals[0+yyTop]); |
|
yyVal = l; |
|
} |
|
|
|
void case_914() |
|
#line 6104 "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_918() |
|
#line 6128 "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_920() |
|
#line 6147 "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_921() |
|
#line 6158 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
/* Required otherwise missing block could not be detected because*/ |
|
/* start_block is run early*/ |
|
var c = new Catch (null, GetLocation (yyVals[-5+yyTop])); |
|
c.TypeExpression = (FullNamedExpression) yyVals[-3+yyTop]; |
|
|
|
if (yyVals[-2+yyTop] != null) { |
|
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
c.Variable = new LocalVariable (current_block, lt.Value, lt.Location); |
|
} |
|
|
|
if (yyVals[-2+yyTop] != null) { |
|
var lt = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
c.Variable = new LocalVariable (current_block, lt.Value, lt.Location); |
|
} |
|
|
|
lbag.AddLocation (c, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop])); |
|
|
|
yyVal = c; |
|
} |
|
|
|
void case_924() |
|
#line 6198 "cs-parser.jay" |
|
{ |
|
if (!settings.Unsafe) |
|
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_926() |
|
#line 6208 "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_927() |
|
#line 6216 "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_928() |
|
#line 6226 "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_929() |
|
#line 6236 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_930() |
|
#line 6241 "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_931() |
|
#line 6254 "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_932() |
|
#line 6264 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_933() |
|
#line 6269 "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_934() |
|
#line 6279 "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_935() |
|
#line 6287 "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_937() |
|
#line 6298 "cs-parser.jay" |
|
{ |
|
/* It has to be here for the parent to safely restore artificial block*/ |
|
Error_SyntaxError (yyToken); |
|
} |
|
|
|
void case_939() |
|
#line 6310 "cs-parser.jay" |
|
{ |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = current_variable; |
|
} |
|
|
|
void case_940() |
|
#line 6322 "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_941() |
|
#line 6334 "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_942() |
|
#line 6345 "cs-parser.jay" |
|
{ |
|
lexer.query_parsing = false; |
|
yyVal = yyVals[-1+yyTop]; |
|
|
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
} |
|
|
|
void case_943() |
|
#line 6352 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
} |
|
|
|
void case_944() |
|
#line 6361 "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); |
|
var start = new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (start, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = new Linq.QueryExpression (start); |
|
} |
|
|
|
void case_945() |
|
#line 6371 "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); |
|
var start = new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-4+yyTop])) { |
|
IdentifierType = (FullNamedExpression)yyVals[-3+yyTop] |
|
}; |
|
lbag.AddLocation (start, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = new Linq.QueryExpression (start); |
|
} |
|
|
|
void case_946() |
|
#line 6386 "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); |
|
var start = new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (start, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = new Linq.QueryExpression (start); |
|
} |
|
|
|
void case_947() |
|
#line 6396 "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); |
|
var start = new Linq.QueryStartClause ((Linq.QueryBlock)current_block, (Expression)yyVals[0+yyTop], rv, GetLocation (yyVals[-4+yyTop])) { |
|
IdentifierType = (FullNamedExpression)yyVals[-3+yyTop] |
|
}; |
|
lbag.AddLocation (start, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = new Linq.QueryExpression (start); |
|
} |
|
|
|
void case_949() |
|
#line 6415 "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); |
|
|
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_951() |
|
#line 6431 "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); |
|
|
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_952() |
|
#line 6450 "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_953() |
|
#line 6465 "cs-parser.jay" |
|
{ |
|
Linq.AQueryClause head = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
|
|
if (yyVals[-1+yyTop] != null) { |
|
Linq.AQueryClause clause = (Linq.AQueryClause)yyVals[-1+yyTop]; |
|
clause.Tail.Next = head; |
|
head = clause; |
|
} |
|
|
|
yyVal = head; |
|
} |
|
|
|
void case_955() |
|
#line 6478 "cs-parser.jay" |
|
{ |
|
report.Error (742, GetLocation (yyVals[0+yyTop]), "Unexpected symbol `{0}'. A query body must end with select or group clause", GetSymbolName (yyToken)); |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_956() |
|
#line 6483 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_958() |
|
#line 6495 "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_959() |
|
#line 6502 "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_960() |
|
#line 6510 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
|
|
void case_961() |
|
#line 6517 "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_963() |
|
#line 6529 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-1+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_970() |
|
#line 6549 "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_972() |
|
#line 6568 "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_973() |
|
#line 6578 "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_974() |
|
#line 6586 "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_975() |
|
#line 6594 "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_976() |
|
#line 6602 "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]), opt_intoStack.Pop ()); |
|
} |
|
|
|
current_block = block.Parent; |
|
((Linq.QueryBlock)current_block).AddRangeVariable (into); |
|
} |
|
|
|
void case_977() |
|
#line 6640 "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_978() |
|
#line 6648 "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_979() |
|
#line 6656 "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_980() |
|
#line 6664 "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] |
|
}; |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-10+yyTop]), GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-4+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] |
|
}; |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-10+yyTop]), GetLocation (yyVals[-7+yyTop]), GetLocation (yyVals[-4+yyTop]), opt_intoStack.Pop ()); |
|
} |
|
|
|
current_block = block.Parent; |
|
((Linq.QueryBlock)current_block).AddRangeVariable (into); |
|
} |
|
|
|
void case_982() |
|
#line 6710 "cs-parser.jay" |
|
{ |
|
opt_intoStack.Push (GetLocation (yyVals[-1+yyTop])); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_983() |
|
#line 6718 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
lbag.AddLocation (current_block, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_984() |
|
#line 6723 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_986() |
|
#line 6734 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
|
|
void case_987() |
|
#line 6741 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-3+yyTop]).Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-3+yyTop]; |
|
} |
|
|
|
void case_989() |
|
#line 6750 "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_990() |
|
#line 6757 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-3+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-3+yyTop]; |
|
} |
|
|
|
void case_992() |
|
#line 6769 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_993() |
|
#line 6774 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_995() |
|
#line 6786 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_996() |
|
#line 6791 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_998() |
|
#line 6801 "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_999() |
|
#line 6817 "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_1002() |
|
#line 6844 "cs-parser.jay" |
|
{ |
|
current_container = current_type = new Class (current_container, new MemberName ("<InteractiveExpressionClass>"), Modifiers.PUBLIC, null); |
|
|
|
/* (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_type, |
|
new TypeExpression (compiler.BuiltinTypes.Void, Location.Null), |
|
mods, |
|
new MemberName ("Host"), |
|
pars, |
|
null /* attributes */); |
|
|
|
current_type.AddMember (method); |
|
|
|
oob_stack.Push (method); |
|
++lexer.parsing_block; |
|
start_block (lexer.Location); |
|
} |
|
|
|
void case_1003() |
|
#line 6872 "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_1013() |
|
#line 6915 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-1+yyTop]; |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop]; |
|
yyVal = null; |
|
} |
|
|
|
void case_1014() |
|
#line 6921 "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_1017() |
|
#line 6936 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[-1+yyTop]; |
|
yyVal = new MemberName ((MemberName) yyVals[-6+yyTop], MemberCache.IndexerNameAlias, Location.Null); |
|
} |
|
|
|
void case_1018() |
|
#line 6941 "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_1019() |
|
#line 6949 "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_1020() |
|
#line 6957 "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_1028() |
|
#line 6995 "cs-parser.jay" |
|
{ |
|
var parameters = new List<DocumentationParameter> (); |
|
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); |
|
yyVal = parameters; |
|
} |
|
|
|
void case_1029() |
|
#line 7001 "cs-parser.jay" |
|
{ |
|
var parameters = yyVals[-2+yyTop] as List<DocumentationParameter>; |
|
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); |
|
yyVal = parameters; |
|
} |
|
|
|
void case_1030() |
|
#line 7010 "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, 17, 22, 22, 22, 18, 18, 18, |
|
23, 23, 24, 24, 7, 7, 6, 6, 21, 21, |
|
8, 8, 25, 25, 25, 26, 26, 26, 26, 26, |
|
9, 9, 10, 10, 34, 32, 37, 33, 33, 35, |
|
35, 35, 35, 36, 36, 41, 38, 39, 40, 40, |
|
42, 42, 42, 42, 42, 43, 43, 47, 44, 46, |
|
49, 49, 49, 50, 50, 51, 51, 52, 52, 52, |
|
52, 52, 52, 52, 52, 52, 52, 52, 52, 66, |
|
68, 70, 71, 72, 28, 28, 75, 53, 53, 76, |
|
76, 77, 77, 78, 80, 74, 74, 79, 79, 85, |
|
54, 89, 54, 54, 84, 92, 84, 86, 86, 93, |
|
93, 94, 95, 94, 90, 90, 96, 96, 97, 98, |
|
88, 88, 91, 91, 91, 101, 55, 104, 105, 99, |
|
106, 107, 108, 99, 99, 99, 100, 100, 103, 103, |
|
111, 111, 111, 111, 111, 111, 111, 111, 111, 111, |
|
112, 112, 115, 115, 115, 115, 118, 115, 116, 116, |
|
119, 119, 120, 120, 120, 113, 113, 113, 121, 121, |
|
121, 114, 123, 125, 126, 56, 128, 129, 130, 58, |
|
124, 124, 124, 124, 124, 134, 131, 135, 132, 133, |
|
133, 133, 136, 137, 138, 140, 29, 29, 139, 139, |
|
141, 141, 142, 142, 142, 142, 142, 142, 142, 142, |
|
142, 145, 59, 144, 144, 146, 146, 149, 143, 143, |
|
148, 148, 148, 148, 148, 148, 148, 148, 148, 148, |
|
148, 148, 148, 148, 148, 148, 148, 148, 148, 148, |
|
148, 148, 151, 150, 152, 150, 150, 150, 60, 155, |
|
157, 153, 154, 154, 156, 156, 161, 159, 162, 159, |
|
159, 159, 163, 61, 165, 57, 168, 169, 57, 57, |
|
164, 171, 164, 166, 166, 172, 172, 173, 174, 173, |
|
175, 170, 167, 167, 167, 167, 167, 179, 176, 180, |
|
177, 178, 178, 62, 182, 184, 185, 30, 181, 181, |
|
181, 183, 183, 183, 186, 186, 187, 188, 187, 187, |
|
187, 189, 190, 191, 31, 192, 192, 16, 16, 193, |
|
193, 196, 195, 195, 195, 197, 197, 199, 65, 122, |
|
102, 102, 127, 127, 200, 200, 200, 198, 198, 201, |
|
201, 202, 202, 204, 204, 83, 73, 73, 87, 87, |
|
117, 117, 147, 147, 205, 205, 205, 205, 205, 209, |
|
209, 210, 208, 208, 208, 208, 208, 208, 208, 211, |
|
211, 211, 211, 211, 211, 211, 211, 211, 212, 212, |
|
212, 212, 212, 212, 212, 212, 212, 212, 212, 212, |
|
212, 212, 212, 212, 212, 212, 212, 212, 213, 213, |
|
213, 214, 214, 214, 234, 234, 235, 235, 236, 236, |
|
216, 216, 233, 233, 233, 233, 233, 233, 233, 233, |
|
218, 218, 218, 238, 238, 239, 239, 240, 240, 242, |
|
242, 242, 243, 243, 243, 243, 243, 243, 244, 244, |
|
160, 160, 237, 237, 237, 237, 237, 249, 249, 248, |
|
248, 250, 250, 250, 250, 251, 219, 219, 219, 247, |
|
247, 247, 252, 252, 253, 253, 220, 221, 221, 222, |
|
223, 224, 224, 215, 215, 215, 215, 215, 258, 254, |
|
225, 259, 259, 260, 260, 261, 261, 262, 262, 262, |
|
262, 255, 255, 206, 206, 257, 257, 263, 263, 256, |
|
256, 82, 82, 264, 264, 265, 226, 266, 266, 266, |
|
267, 267, 267, 267, 267, 268, 194, 227, 227, 228, |
|
228, 229, 229, 230, 270, 231, 271, 231, 269, 269, |
|
273, 272, 217, 274, 274, 274, 274, 274, 274, 274, |
|
274, 274, 275, 275, 275, 275, 275, 275, 275, 275, |
|
275, 275, 275, 275, 275, 276, 276, 276, 276, 276, |
|
276, 276, 277, 277, 277, 277, 277, 277, 277, 277, |
|
277, 278, 278, 278, 278, 278, 279, 279, 279, 279, |
|
279, 279, 279, 279, 279, 280, 280, 280, 280, 280, |
|
281, 281, 281, 282, 282, 282, 283, 283, 283, 284, |
|
284, 284, 285, 285, 285, 286, 286, 287, 287, 287, |
|
287, 288, 288, 288, 288, 288, 288, 288, 288, 288, |
|
288, 288, 289, 289, 290, 290, 290, 290, 291, 291, |
|
293, 292, 292, 292, 294, 294, 296, 295, 297, 295, |
|
298, 295, 299, 300, 295, 301, 302, 295, 45, 45, |
|
245, 245, 245, 245, 232, 232, 232, 81, 304, 305, |
|
306, 307, 308, 27, 64, 64, 63, 63, 109, 109, |
|
309, 309, 309, 309, 309, 309, 309, 309, 309, 309, |
|
309, 309, 309, 309, 309, 67, 67, 67, 69, 69, |
|
310, 310, 311, 311, 312, 312, 313, 313, 313, 313, |
|
203, 203, 314, 314, 316, 110, 317, 317, 318, 158, |
|
158, 320, 319, 315, 315, 321, 321, 322, 322, 322, |
|
322, 322, 326, 326, 327, 327, 327, 324, 324, 324, |
|
324, 324, 324, 324, 324, 324, 324, 324, 324, 324, |
|
328, 328, 328, 328, 328, 328, 328, 328, 328, 328, |
|
328, 328, 328, 342, 342, 342, 342, 329, 343, 325, |
|
344, 344, 345, 345, 345, 345, 345, 345, 207, 207, |
|
346, 48, 48, 348, 323, 352, 323, 350, 350, 347, |
|
347, 347, 347, 349, 349, 356, 356, 355, 355, 357, |
|
357, 351, 351, 353, 353, 358, 358, 359, 354, 354, |
|
354, 330, 330, 330, 341, 341, 360, 361, 361, 331, |
|
331, 362, 362, 362, 365, 363, 363, 364, 364, 366, |
|
366, 366, 369, 367, 368, 368, 370, 370, 370, 332, |
|
332, 332, 332, 371, 371, 372, 372, 372, 376, 373, |
|
379, 375, 375, 382, 378, 378, 381, 381, 377, 377, |
|
385, 384, 384, 380, 380, 383, 383, 387, 386, 386, |
|
374, 374, 388, 374, 374, 374, 333, 333, 333, 333, |
|
333, 333, 389, 390, 390, 391, 391, 391, 392, 392, |
|
392, 393, 393, 394, 394, 394, 395, 395, 334, 334, |
|
334, 334, 396, 396, 398, 398, 397, 399, 397, 397, |
|
397, 335, 336, 400, 339, 337, 337, 402, 403, 340, |
|
405, 406, 338, 338, 338, 404, 404, 401, 401, 303, |
|
303, 303, 303, 407, 407, 409, 409, 411, 410, 412, |
|
410, 408, 408, 408, 408, 408, 416, 414, 417, 418, |
|
414, 413, 413, 419, 419, 419, 419, 419, 424, 420, |
|
425, 421, 426, 427, 428, 422, 430, 431, 432, 422, |
|
429, 429, 434, 423, 433, 437, 433, 436, 439, 436, |
|
435, 435, 435, 438, 438, 438, 415, 440, 415, 3, |
|
3, 441, 3, 3, 442, 442, 246, 246, 241, 241, |
|
5, 443, 443, 443, 443, 447, 443, 443, 443, 443, |
|
444, 444, 445, 448, 445, 446, 446, 449, 449, 450, |
|
}; |
|
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, 3, 0, 1, 1, 1, 3, 1, |
|
0, 1, 0, 1, 0, 1, 0, 1, 0, 1, |
|
1, 2, 1, 1, 2, 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, 1, 0, |
|
0, 0, 0, 0, 16, 5, 0, 9, 5, 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, 5, 1, 1, 0, 1, |
|
1, 3, 3, 3, 5, 3, 5, 1, 1, 1, |
|
1, 3, 4, 6, 2, 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, |
|
2, 1, 0, 8, 0, 9, 0, 0, 10, 5, |
|
0, 0, 3, 0, 1, 1, 2, 2, 0, 5, |
|
0, 2, 2, 2, 1, 1, 1, 0, 5, 0, |
|
5, 1, 1, 2, 0, 0, 0, 12, 0, 2, |
|
2, 0, 1, 2, 1, 3, 2, 0, 5, 3, |
|
1, 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, 2, 2, |
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
3, 3, 4, 4, 4, 3, 3, 4, 3, 4, |
|
4, 4, 3, 0, 1, 3, 4, 0, 1, 1, |
|
3, 2, 3, 3, 1, 2, 3, 2, 1, 1, |
|
0, 1, 1, 3, 3, 3, 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, |
|
2, 4, 2, 4, 0, 4, 0, 5, 0, 1, |
|
0, 4, 4, 1, 2, 2, 4, 2, 2, 2, |
|
4, 2, 1, 2, 2, 2, 2, 2, 2, 2, |
|
2, 2, 2, 2, 2, 1, 3, 3, 3, 3, |
|
3, 3, 1, 3, 3, 3, 3, 3, 3, 3, |
|
3, 1, 3, 3, 3, 3, 1, 3, 3, 3, |
|
3, 3, 3, 3, 3, 1, 3, 3, 3, 3, |
|
1, 3, 3, 1, 3, 3, 1, 3, 3, 1, |
|
3, 3, 1, 3, 3, 1, 3, 1, 5, 4, |
|
5, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
3, 3, 1, 3, 3, 2, 1, 1, 0, 1, |
|
0, 2, 1, 1, 1, 1, 0, 4, 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, 3, 0, 1, |
|
1, 2, 4, 3, 1, 3, 1, 3, 1, 1, |
|
0, 1, 1, 1, 0, 4, 1, 1, 0, 4, |
|
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, 1, 1, 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, 2, 1, 1, 1, 1, |
|
1, 5, 7, 4, 0, 8, 4, 0, 1, 1, |
|
2, 1, 0, 3, 1, 2, 3, 3, 1, 1, |
|
1, 1, 1, 5, 4, 7, 3, 6, 0, 4, |
|
0, 4, 2, 0, 4, 2, 3, 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, 2, 3, 4, 3, 3, 3, |
|
2, 3, 2, 4, 4, 3, 0, 1, 3, 4, |
|
5, 3, 1, 2, 0, 1, 2, 0, 7, 3, |
|
6, 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, 2, 2, 1, 0, 3, 0, 0, |
|
6, 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, 1000, 0, 0, 1004, 0, |
|
0, 15, 17, 385, 391, 398, 386, 388, 0, 387, |
|
0, 394, 396, 383, 0, 390, 392, 384, 395, 397, |
|
393, 348, 1021, 0, 389, 1011, 0, 10, 1, 0, |
|
0, 0, 12, 0, 829, 0, 0, 0, 0, 0, |
|
0, 0, 0, 426, 0, 0, 0, 0, 0, 0, |
|
0, 424, 0, 0, 0, 487, 0, 425, 0, 526, |
|
0, 924, 0, 0, 0, 674, 0, 0, 0, 0, |
|
0, 0, 0, 725, 0, 778, 0, 0, 0, 0, |
|
0, 0, 0, 0, 423, 0, 663, 0, 828, 0, |
|
761, 0, 0, 0, 0, 400, 401, 402, 403, 404, |
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414, |
|
415, 416, 417, 418, 421, 422, 670, 563, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
671, 669, 672, 673, 745, 747, 0, 743, 746, 762, |
|
764, 765, 766, 767, 768, 769, 770, 771, 772, 773, |
|
763, 0, 0, 0, 830, 831, 850, 851, 852, 853, |
|
887, 888, 889, 890, 891, 892, 0, 0, 0, 20, |
|
0, 0, 338, 0, 340, 1008, 16, 1001, 0, 0, |
|
246, 245, 242, 247, 248, 241, 260, 259, 252, 253, |
|
249, 251, 250, 254, 243, 244, 255, 256, 262, 261, |
|
257, 258, 0, 0, 1024, 0, 1013, 0, 1012, 3, |
|
55, 0, 0, 0, 44, 41, 43, 46, 47, 48, |
|
49, 50, 53, 13, 0, 0, 0, 893, 541, 427, |
|
428, 922, 0, 0, 0, 0, 0, 0, 0, 895, |
|
894, 0, 551, 545, 550, 777, 827, 748, 775, 774, |
|
776, 749, 750, 751, 752, 753, 754, 755, 756, 757, |
|
758, 759, 760, 0, 0, 0, 859, 0, 0, 0, |
|
793, 792, 0, 0, 0, 0, 0, 0, 0, 0, |
|
901, 0, 0, 0, 0, 399, 0, 0, 0, 903, |
|
908, 0, 0, 0, 543, 923, 0, 0, 0, 791, |
|
787, 0, 0, 0, 0, 0, 0, 0, 367, 0, |
|
0, 0, 0, 0, 0, 0, 0, 666, 0, 562, |
|
659, 0, 558, 0, 0, 560, 556, 570, 564, 571, |
|
565, 559, 555, 575, 569, 574, 568, 572, 566, 573, |
|
567, 657, 537, 0, 420, 419, 0, 0, 0, 0, |
|
0, 779, 0, 337, 0, 785, 786, 0, 490, 491, |
|
0, 0, 0, 783, 784, 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, 1003, 744, |
|
794, 782, 0, 825, 826, 956, 971, 0, 0, 957, |
|
959, 0, 983, 942, 940, 964, 0, 0, 962, 965, |
|
966, 967, 968, 943, 941, 0, 0, 0, 342, 0, |
|
18, 0, 0, 0, 1020, 0, 349, 0, 0, 0, |
|
1022, 0, 0, 42, 696, 702, 694, 0, 691, 701, |
|
695, 693, 692, 699, 697, 698, 704, 700, 703, 705, |
|
0, 0, 689, 45, 54, 489, 0, 485, 486, 0, |
|
0, 483, 0, 796, 0, 0, 0, 857, 0, 824, |
|
822, 823, 0, 0, 0, 678, 0, 898, 896, 679, |
|
0, 0, 511, 0, 0, 0, 0, 502, 0, 506, |
|
516, 518, 0, 498, 0, 0, 0, 0, 0, 493, |
|
0, 496, 0, 500, 369, 900, 899, 0, 0, 902, |
|
912, 0, 0, 0, 913, 0, 0, 925, 0, 0, |
|
790, 0, 379, 375, 376, 0, 0, 374, 377, 378, |
|
0, 0, 0, 576, 0, 0, 547, 0, 661, 0, |
|
742, 0, 0, 0, 736, 738, 739, 740, 431, 432, |
|
0, 345, 346, 0, 184, 183, 185, 0, 648, 0, |
|
0, 0, 371, 0, 643, 0, 0, 906, 0, 0, |
|
0, 436, 0, 439, 0, 0, 437, 0, 0, 479, |
|
0, 443, 0, 0, 0, 0, 468, 471, 0, 0, |
|
463, 470, 469, 632, 633, 634, 635, 636, 637, 638, |
|
639, 640, 642, 641, 580, 577, 582, 579, 581, 578, |
|
590, 586, 591, 587, 588, 0, 589, 0, 595, 0, |
|
596, 0, 602, 0, 603, 0, 604, 0, 605, 0, |
|
609, 0, 610, 0, 613, 0, 616, 0, 619, 0, |
|
622, 0, 625, 0, 627, 0, 0, 515, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 955, 954, 0, |
|
963, 0, 953, 0, 0, 339, 1018, 1019, 363, 0, |
|
0, 0, 360, 0, 0, 181, 0, 0, 1028, 1014, |
|
1016, 63, 61, 62, 0, 0, 56, 0, 0, 64, |
|
66, 30, 28, 0, 0, 0, 686, 0, 690, 435, |
|
0, 488, 0, 540, 0, 553, 170, 192, 0, 0, |
|
0, 160, 0, 0, 0, 171, 546, 0, 928, 0, |
|
879, 860, 0, 870, 0, 881, 0, 897, 834, 0, |
|
927, 0, 0, 501, 0, 517, 519, 0, 0, 0, |
|
455, 0, 0, 450, 0, 0, 480, 0, 521, 495, |
|
0, 0, 145, 522, 143, 144, 524, 0, 539, 538, |
|
837, 0, 917, 0, 910, 0, 914, 530, 0, 0, |
|
0, 364, 0, 528, 0, 0, 542, 935, 0, 931, |
|
855, 0, 946, 0, 944, 0, 0, 676, 677, 0, |
|
0, 0, 654, 653, 660, 0, 741, 727, 728, 726, |
|
737, 658, 0, 344, 646, 0, 0, 0, 561, 557, |
|
905, 904, 780, 440, 434, 438, 433, 544, 478, 477, |
|
476, 473, 472, 0, 467, 429, 430, 441, 442, 0, |
|
630, 0, 803, 0, 0, 656, 655, 972, 948, 0, |
|
973, 0, 958, 960, 969, 0, 984, 0, 952, 998, |
|
19, 341, 724, 723, 0, 722, 0, 359, 1030, 182, |
|
1025, 0, 0, 57, 0, 0, 0, 0, 0, 0, |
|
366, 0, 680, 0, 0, 83, 82, 0, 484, 0, |
|
0, 0, 0, 0, 175, 552, 0, 0, 0, 0, |
|
0, 871, 863, 861, 0, 882, 0, 0, 926, 508, |
|
507, 0, 458, 0, 0, 1009, 1010, 446, 452, 0, |
|
456, 0, 482, 0, 0, 0, 0, 0, 835, 920, |
|
0, 911, 0, 536, 531, 0, 0, 527, 0, 934, |
|
0, 854, 947, 945, 0, 548, 0, 662, 652, 347, |
|
645, 644, 664, 475, 0, 466, 465, 464, 631, 629, |
|
145, 0, 819, 801, 0, 0, 0, 808, 0, 950, |
|
0, 977, 0, 0, 992, 993, 986, 0, 362, 361, |
|
1029, 0, 0, 65, 59, 0, 67, 29, 22, 0, |
|
0, 315, 0, 218, 0, 106, 0, 80, 813, 118, |
|
119, 0, 0, 0, 816, 190, 191, 0, 0, 0, |
|
0, 163, 172, 164, 166, 858, 0, 0, 0, 0, |
|
0, 880, 0, 0, 459, 460, 454, 457, 453, 447, |
|
451, 0, 513, 0, 481, 492, 445, 525, 523, 0, |
|
916, 0, 0, 0, 532, 0, 937, 0, 0, 675, |
|
667, 0, 474, 0, 0, 799, 798, 795, 809, 949, |
|
0, 0, 0, 0, 970, 0, 999, 1017, 0, 0, |
|
0, 72, 73, 76, 77, 0, 332, 321, 320, 0, |
|
681, 214, 101, 0, 797, 817, 176, 0, 188, 0, |
|
0, 0, 856, 939, 0, 0, 0, 0, 862, 0, |
|
883, 833, 497, 494, 842, 0, 849, 0, 0, 840, |
|
0, 845, 0, 535, 534, 936, 932, 0, 665, 0, |
|
0, 951, 974, 0, 961, 0, 0, 988, 0, 78, |
|
70, 0, 0, 0, 316, 0, 0, 0, 0, 0, |
|
177, 0, 167, 165, 929, 872, 866, 864, 0, 0, |
|
836, 841, 0, 846, 921, 0, 0, 668, 0, 811, |
|
0, 978, 995, 996, 989, 58, 0, 74, 75, 0, |
|
0, 0, 0, 0, 0, 0, 818, 174, 0, 187, |
|
0, 0, 884, 848, 847, 0, 732, 919, 933, 820, |
|
0, 0, 0, 79, 0, 0, 333, 0, 0, 331, |
|
317, 0, 325, 382, 0, 380, 0, 682, 0, 711, |
|
215, 102, 178, 930, 868, 865, 0, 0, 877, 0, |
|
975, 0, 990, 0, 0, 0, 314, 0, 0, 708, |
|
0, 0, 0, 712, 0, 0, 0, 0, 0, 979, |
|
27, 26, 23, 334, 330, 0, 0, 326, 381, 714, |
|
0, 0, 0, 103, 867, 733, 0, 0, 0, 0, |
|
32, 318, 719, 0, 720, 717, 0, 715, 99, 0, |
|
97, 0, 0, 86, 88, 89, 90, 91, 92, 93, |
|
94, 95, 96, 98, 146, 0, 0, 231, 223, 224, |
|
225, 226, 227, 228, 229, 230, 0, 0, 221, 0, |
|
0, 976, 0, 335, 329, 0, 0, 0, 683, 87, |
|
0, 729, 731, 274, 269, 273, 0, 216, 222, 0, |
|
982, 980, 718, 716, 0, 0, 0, 0, 0, 0, |
|
0, 283, 0, 0, 232, 0, 0, 240, 0, 158, |
|
147, 157, 0, 0, 104, 0, 0, 268, 0, 0, |
|
267, 0, 151, 0, 0, 353, 0, 351, 0, 0, |
|
193, 0, 0, 0, 0, 0, 684, 0, 217, 0, |
|
109, 107, 290, 0, 350, 0, 0, 0, 0, 122, |
|
0, 0, 0, 0, 0, 0, 156, 148, 0, 0, |
|
197, 0, 354, 0, 235, 234, 233, 0, 730, 105, |
|
0, 287, 0, 265, 124, 0, 263, 0, 0, 0, |
|
126, 0, 355, 0, 0, 194, 0, 0, 0, 352, |
|
238, 117, 115, 0, 0, 292, 0, 0, 0, 0, |
|
0, 152, 0, 271, 0, 0, 0, 0, 130, 0, |
|
0, 0, 0, 356, 357, 0, 0, 0, 0, 0, |
|
112, 307, 0, 288, 0, 0, 301, 0, 0, 0, |
|
296, 0, 142, 0, 0, 0, 0, 137, 0, 0, |
|
284, 0, 127, 0, 121, 131, 149, 155, 205, 0, |
|
195, 0, 0, 198, 0, 116, 0, 108, 113, 0, |
|
0, 0, 303, 0, 304, 293, 0, 0, 286, 297, |
|
266, 0, 0, 123, 138, 264, 0, 282, 0, 272, |
|
276, 133, 0, 0, 0, 202, 204, 0, 239, 114, |
|
308, 310, 289, 0, 0, 302, 299, 141, 139, 153, |
|
281, 0, 0, 0, 150, 206, 208, 196, 0, 0, |
|
0, 301, 0, 277, 279, 134, 0, 0, 199, 312, |
|
313, 309, 311, 300, 154, 0, 0, 212, 211, 210, |
|
207, 209, 0, 0, 0, 200, 278, 280, |
|
}; |
|
protected static readonly short [] yyDgoto = { 7, |
|
8, 49, 9, 50, 10, 11, 51, 232, 739, 701, |
|
12, 13, 52, 22, 23, 326, 235, 724, 899, 1096, |
|
1216, 1263, 1570, 896, 236, 237, 238, 239, 240, 241, |
|
242, 243, 717, 462, 718, 719, 1003, 720, 721, 1007, |
|
897, 1091, 1092, 1093, 267, 618, 1187, 110, 908, 1292, |
|
1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, |
|
1303, 1304, 481, 728, 1378, 1017, 1194, 1158, 1228, 1256, |
|
1320, 1390, 1224, 1444, 1421, 1469, 1470, 1471, 1019, 1467, |
|
1020, 786, 1354, 1432, 1405, 1457, 534, 1450, 1426, 1486, |
|
983, 1455, 1458, 1459, 1554, 1487, 1488, 1484, 1305, 1361, |
|
1331, 1379, 741, 1434, 1533, 1402, 1490, 1563, 482, 268, |
|
742, 743, 744, 745, 746, 704, 591, 1199, 705, 706, |
|
914, 1381, 1410, 1501, 1462, 1535, 1382, 1437, 1538, 1583, |
|
1502, 1503, 1581, 1567, 1568, 1015, 1157, 1255, 1317, 1364, |
|
1318, 1319, 1355, 1417, 1385, 1356, 329, 223, 1466, 1358, |
|
1451, 1448, 1306, 1335, 1375, 1530, 1492, 1336, 1531, 619, |
|
1576, 1577, 1374, 1447, 1423, 1479, 1474, 1445, 1511, 1516, |
|
1477, 1480, 1481, 1562, 1517, 1475, 1476, 1572, 1560, 1561, |
|
1012, 1100, 1221, 1192, 1248, 1222, 1223, 1266, 1154, 1245, |
|
1279, 554, 193, 112, 366, 195, 584, 457, 224, 1397, |
|
702, 703, 885, 901, 330, 422, 553, 305, 1225, 1226, |
|
45, 114, 306, 116, 117, 118, 119, 120, 121, 122, |
|
123, 124, 125, 126, 127, 128, 129, 130, 131, 132, |
|
133, 134, 135, 136, 253, 858, 782, 1056, 1046, 772, |
|
938, 773, 774, 1047, 137, 198, 778, 621, 622, 623, |
|
852, 491, 492, 298, 1054, 780, 423, 300, 517, 518, |
|
519, 520, 523, 788, 314, 805, 806, 955, 264, 497, |
|
820, 265, 496, 138, 139, 140, 141, 142, 143, 144, |
|
145, 146, 147, 148, 149, 150, 151, 152, 594, 595, |
|
596, 825, 826, 868, 153, 581, 570, 822, 367, 1072, |
|
568, 1138, 154, 511, 1013, 1156, 1253, 1359, 483, 1229, |
|
1230, 1287, 1288, 886, 573, 344, 830, 1363, 1208, 1240, |
|
574, 575, 269, 270, 271, 157, 158, 159, 272, 273, |
|
274, 275, 276, 277, 278, 279, 280, 281, 282, 283, |
|
171, 284, 601, 172, 173, 322, 865, 677, 986, 1078, |
|
911, 735, 1023, 984, 987, 1116, 988, 1024, 1025, 285, |
|
174, 175, 176, 1128, 1060, 1129, 1130, 1131, 1173, 1132, |
|
177, 178, 179, 180, 752, 504, 753, 1119, 1041, 1120, |
|
1236, 1202, 1237, 754, 1040, 755, 1239, 1169, 181, 182, |
|
183, 184, 185, 186, 307, 544, 545, 1062, 1176, 318, |
|
1039, 921, 1201, 1069, 961, 1177, 187, 435, 188, 436, |
|
989, 1081, 437, 438, 693, 684, 685, 993, 439, 440, |
|
441, 442, 443, 994, 679, 991, 1181, 1259, 1322, 1083, |
|
1212, 1278, 877, 687, 878, 1147, 1086, 1148, 1213, 998, |
|
17, 19, 46, 47, 227, 707, 893, 458, 708, 709, |
|
}; |
|
protected static readonly short [] yySindex = { -85, |
|
0, -159, -111, -224, -22,16985, 0, 142, 0, 0, |
|
-22, -224, 0, 0, -14, 0, 6839, -22, 0, -150, |
|
60, 0, 0, 0, 0, 0, 0, 0, 84, 0, |
|
157, 0, 0, 0, 3878, 0, 0, 0, 0, 0, |
|
0, 0, 0, -48, 0, 0, 411, 0, 0, 142, |
|
130, -22, 0, 170, 0, 215, 213, -189,16414, -123, |
|
159, 357, 6996, 0, 159, 159, 159, -167, 159, 159, |
|
646, 0, 8842, 159, 159, 0, 8999, 0, 434, 0, |
|
-181, 0, 159, 216, 159, 0,17004,17004, 484, 159, |
|
159, -128, 9915, 0,15381, 0,10046,10177,10308,10439, |
|
10570,10701,10832,10963, 0, 231, 0, 8407, 0, 183, |
|
0, 132, 538, 682, -236, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1082, 577, |
|
249, 262, 474, 672, 498, 473, 503, 494, -285, 530, |
|
0, 0, 0, 0, 0, 0, 3579, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 132, 535, 149, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, -180, 330, 130, 0, |
|
478, 354, 0, 507, 0, 0, 0, 0, 8407, 8407, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 565, 527, 0, 594, 0, -239, 0, 0, |
|
0, 130,17540, 470, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 750, 132,15517, 0, 0, 0, |
|
0, 0,15381, -174, -165, 741, 304, 682, 132, 0, |
|
0, 8407, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, -175, 180,16414, 0, 8407,15381, 668, |
|
0, 0, 671,15381,15381,13714, 622, -64, 656, 8702, |
|
0, 9915, 231, 825, 685, 0, 721, 8407,15381, 0, |
|
0, 765, 616, 159, 0, 0,15381, 434,14837, 0, |
|
0, 216,15381, 216, 179, 543, 873, 132, 0, 535, |
|
-236, 881, 132,15381,15381,15381, 357, 0, 836, 0, |
|
0,11094, 0, 7153, -267, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 4462, 0, 0,16811, 179, 814, 833, |
|
15381, 0, 799, 0, 203, 0, 0, 279, 0, 0, |
|
798, 9156, 7624, 0, 0,15381,15381,15381,15381,15381, |
|
15381,15381,15381,15381,15381,15381,11225,11356,11487, 4621, |
|
4786,11618,11749,11880,12011,12142,12273,12404,12535,12666, |
|
12797,12928,13059,13190,13321,13452,16197,15381, 0, 0, |
|
0, 0, 535, 0, 0, 0, 0,17004,17004, 0, |
|
0, 132, 0, 0, 0, 0, 362, 872, 0, 0, |
|
0, 0, 0, 0, 0, 130, 470, 805, 0, 819, |
|
0, 799, 565, 565, 0, 64, 0, 625, 565, 874, |
|
0, -171,17540, 0, 0, 0, 0, -142, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
45,17570, 0, 0, 0, 0, 799, 0, 0, 870, |
|
680, 0, 888, 0, 890, 106, 434, 0, 159, 0, |
|
0, 0, 132,14837, -186, 0, 871, 0, 0, 0, |
|
54, 89, 0, 304, 884, 0, 906, 0, 879, 0, |
|
0, 0, 712, 0, 8526, 752,15381, 656,14701, 0, |
|
7781, 0, 216, 0, 0, 0, 0, 129, 134, 0, |
|
0, 355, 434, 512, 0, 4144, 904, 0, 137, 132, |
|
0, 156, 0, 0, 0,15381, 984, 0, 0, 0, |
|
15381, 993, 916, 0, 920, 921, 0,16811, 0, 175, |
|
0, -139, -284, 7153, 0, 0, 0, 0, 0, 0, |
|
175, 0, 0, -275, 0, 0, 0, 216, 0, 179, |
|
132, 8859, 0, 926, 0, 923,13583, 0, 1046, 927, |
|
7153, 0, 878, 0, 799, 883, 0, 799, 799, 0, |
|
108, 0,15381,15381, 936, 1056, 0, 0, -262, 82, |
|
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, 577, 0, 577, 0, 249, |
|
0, 249, 0, 262, 0, 262, 0, 262, 0, 262, |
|
0, 474, 0, 474, 0, 672, 0, 498, 0, 473, |
|
0, 503, 0, 494, 0, -40, -163, 0, 9313, 1020, |
|
132, 1021, 132, 9313, 9313, 935,15381, 0, 0, 872, |
|
0, 132, 0, 504, 799, 0, 0, 0, 0, -164, |
|
130, -53, 0, 8859, 625, 0, 945, 944, 0, 0, |
|
0, 0, 0, 0, 179, 946, 0, 949, 952, 0, |
|
0, 0, 0, 954, 9016, 910, 0, 421, 0, 0, |
|
437, 0,15517, 0, 950, 0, 0, 0, 665, 105, |
|
958, 0, 959, 960, 962, 0, 0,15381, 0, 132, |
|
0, 0, 758, 0, 964, 0, -158, 0, 0, 6996, |
|
0, 6996, 8685, 0,13714, 0, 0, 9784,14973, 220, |
|
0, -274, 102, 0, 903, 917, 0, 124, 0, 0, |
|
967, 969, 0, 0, 0, 0, 0, 970, 0, 0, |
|
0, 974, 0, 7641, 0, 434, 0, 0, 216, 546, |
|
924, 0, 199, 0, 975, 973, 0, 0, 6996, 0, |
|
0, 6996, 0,15381, 0,15381, 8407, 0, 0, 434, |
|
976, 175, 0, 0, 0,15381, 0, 0, 0, 0, |
|
0, 0, 8407, 0, 0, 132,16811, 1007, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0,14565, 0, 0, 0, 0, 0, 7938, |
|
0, 9470, 0, 8095, 977, 0, 0, 0, 0, 1058, |
|
0, 1059, 0, 0, 0, 394, 0, 980, 0, 0, |
|
0, 0, 0, 0, 939, 0, 64, 0, 0, 0, |
|
0, 625, 625, 0, 805, 988, 989, 947, 996, 910, |
|
0, 992, 0, 1108, 1112, 0, 0,15381, 0,15109, |
|
995, 665, 8859, 8407, 0, 0, 214, 1114, 1115, 163, |
|
991, 0, 0, 0,15381, 0,15381, 1097, 0, 0, |
|
0,15245, 0, 147,15245, 0, 0, 0, 0, 8231, |
|
0, 1122, 0, 535,15381, 1012, 8685, 1015, 0, 0, |
|
132, 0, 202, 0, 0, 799, 924, 0, 132, 0, |
|
-144, 0, 0, 0, 1008, 0, 1041, 0, 0, 0, |
|
0, 0, 0, 0, 667, 0, 0, 0, 0, 0, |
|
0, 8702, 0, 0, 132, 310, 977, 0, 9313, 0, |
|
9313, 0, 1034, 9313, 0, 0, 0, 696, 0, 0, |
|
0, 1016, 805, 0, 0,15653, 0, 0, 0, 1018, |
|
7798, 0, 910, 0, 910, 0, 910, 0, 0, 0, |
|
0, 132, 1011, 995, 0, 0, 0, -148, -137, 1017, |
|
1024, 0, 0, 0, 0, 0, 1014, 8685, 977, -163, |
|
15381, 0, 1022, 6996, 0, 0, 0, 0, 0, 0, |
|
0, 1025, 0, 656, 0, 0, 0, 0, 0, -179, |
|
0, 1028, 799, 924, 0, 924, 0, 977, 1029, 0, |
|
0, 175, 0, 979, 1026, 0, 0, 0, 0, 0, |
|
9313, 1061, 9313, 9313, 0,15381, 0, 0, 952, 238, |
|
747, 0, 0, 0, 0, -224, 0, 0, 0, 1036, |
|
0, 0, 0, 1030, 0, 0, 0, -249, 0, 1031, |
|
1149, 1150, 0, 0, 977, 1037, 977, 1042, 0, 1039, |
|
0, 0, 0, 0, 0,15381, 0, 1048, -200, 0, |
|
-200, 0, 1162, 0, 0, 0, 0, 175, 0,15381, |
|
8390, 0, 0, 1072, 0, 737, 1049, 0, 1050, 0, |
|
0,15653, -22, 106, 0, 1047, 1047, 1047,15109, 1054, |
|
0,15381, 0, 0, 0, 0, 0, 0, 6996, 59, |
|
0, 0, 7153, 0, 0, 1060, 6996, 0, 1055, 0, |
|
9313, 0, 0, 0, 0, 0,15381, 0, 0, 130, |
|
1067, 130, 8407, 1087, 1087, 1087, 0, 0,15381, 0, |
|
6996, 9627, 0, 0, 0, 7153, 0, 0, 0, 0, |
|
1083, 9313,15381, 0, 130, 1062, 0, 1023, 745, 0, |
|
0, 1068, 0, 0, 112, 0, 1027, 0, 1087, 0, |
|
0, 0, 0, 0, 0, 0, 1074, 964, 0, 7153, |
|
0, 1084, 0, -67, 1087, 1177, 0, 1076, 130, 0, |
|
8407, 78, 1080, 0, 1081, 1098, 6996, 1096, 9313, 0, |
|
0, 0, 0, 0, 0, 1070, 1090, 0, 0, 0, |
|
16493, 150, 130, 0, 0, 0, 1113, 9313, 1092,15381, |
|
0, 0, 0, 1099, 0, 0, 1101, 0, 0,17570, |
|
0, 1103, 150, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 24,17570, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 1104, 130, 0, 150, |
|
132, 0, 1113, 0, 0, 1105,16493,16659, 0, 0, |
|
440, 0, 0, 0, 0, 0,16691, 0, 0, 1110, |
|
0, 0, 0, 0, 8407, 8407, 393, 8702, 408, 216, |
|
1139, 0, 179,14501, 0, 1174, 0, 0, 1090, 0, |
|
0, 0, 7153, 1090, 0, -134, -133, 0, 8407, -132, |
|
0, 8407, 0, 1063, 1109, 0, 179, 0, -184,14433, |
|
0, 1126, 1064, 73, 455, 3878, 0, 1128, 0, 1090, |
|
0, 0, 0, 179, 0, 1116, 1079, 1127, 1129, 0, |
|
1132, 1086, 1135, 106, 1130, 1134, 0, 0, 1137, 1142, |
|
0, 799, 0, 826, 0, 0, 0, 1144, 0, 0, |
|
-127, 0, 1151, 0, 0, 1141, 0, 1145, 1161, 1163, |
|
0, 1160, 0, 106, 106, 0, 106, 1140, 1165, 0, |
|
0, 0, 0, 1166, 154, 0, 1170, 106, 1280, 1172, |
|
106, 0, 440, 0, 8685, 1121, 1176, 1160, 0, 1181, |
|
1182, 168, 1185, 0, 0, 106,15109, 1138, 1186, 1166, |
|
0, 0,17570, 0, 130, 130, 0, 1143, 1188, 1170, |
|
0, 1193, 0,15381, 1148, 1191, 1172, 0, 1196, 106, |
|
0, 91, 0, 1194, 0, 0, 0, 0, 0,17570, |
|
0, 168, 168, 0, 1197, 0, -127, 0, 0, 309, |
|
1204,17570, 0,17570, 0, 0, 8685, 1195, 0, 0, |
|
0, 1208, 1141, 0, 0, 0, 1207, 0, 232, 0, |
|
0, 0, 1087, 885, 1213, 0, 0, 1215, 0, 0, |
|
0, 0, 0, 1268, 1321, 0, 0, 0, 0, 0, |
|
0, 1214, 1216, 8685, 0, 0, 0, 0, 168, 547, |
|
547, 0, 1087, 0, 0, 0, 40, 40, 0, 0, |
|
0, 0, 0, 0, 0,14701,14701, 0, 0, 0, |
|
0, 0, 1222, 1220, 1221, 0, 0, 0, |
|
}; |
|
protected static readonly short [] yyRindex = { 1382, |
|
0, 0, 7310, 1382, 0, 0, 0, 1594, 0, 0, |
|
3248, 987, 0, 0, 0, 0, 0, 3248, 0, 0, |
|
57, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1595, 0, 0, 1595, 0, 0, 1594, |
|
1542, 2044, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 1229, 0, 0, 0, 0, 0, 0, 0, 0, |
|
9173, 0, 1223, 0, 0, 0, 1223, 0, 0, 0, |
|
0, 0, 0, 263, 0, 0, 0, 0, 0, 0, |
|
0, 0, 224, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 4779, 0, 0, 0, 0, |
|
0, 0, 291, 4872, 4214, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 5028, 5096, |
|
5336, 5540, 5880, 6084, 6220, 6356, 1173, 6560, 1441, 2922, |
|
0, 0, 0, 0, 0, 0, 57, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 235, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 3291, 0, |
|
610, 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, 1595, 96, 0, 0, 0, 0, 0, 0, |
|
0, 3371, 555, 3414, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 3825, 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, 1230, 0, 0, 0, 0, |
|
0, 0, 3825, 1224, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 2454, 0, 2964, 647, 2584, 0, 0, 0, 2714, |
|
2584, 0, 0, 0, 0, 0, 1229, 0, 0, 0, |
|
0, 0, 0, -18, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 1231, 2818, 0, 0, |
|
1223, 0, 3825, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 22, 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, 1627, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 3946, 0, 0, |
|
0, 0, 0, 0, 0, 3457, 3500, 0, 0, 0, |
|
0, 2308, 1595, 1595, 0, 10, 0, 7955, 1595, 1601, |
|
0, 0, 245, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
449,16346, 0, 0, 0, 0, 3825, 0, 0, 0, |
|
0, 0, 0, 0, 0,16735, 0, 0, 0, 0, |
|
0, 0, 0, 767, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 588, 428, 795, 0, 0, 1236, 0, |
|
0, 0, 0, 0, 166, 0, 0, 4302, 1233, 0, |
|
0, 0, 395, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1812, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 1231, 0,15789, |
|
0, 6679, 0, 186, 0, 0, 0, 0, 0, 0, |
|
15789, 0, 0, 0, 0, 0, 0, -153, 0, 715, |
|
0, 0, 0, 1234, 0, 0, 0, 0, 1224, 0, |
|
0, 0, 3666, 0, 3825, 3666, 0, 3825, 4461, 0, |
|
0, 0, 0, 0, -191, 0, 0, 0, 0, 120, |
|
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, 5200, 0, 5268, 0, 5404, |
|
0, 5472, 0, 5608, 0, 5676, 0, 5744, 0, 5812, |
|
0, 5948, 0, 6016, 0, 6152, 0, 6288, 0, 6424, |
|
0, 6492, 0, 6616, 0, 0, 709, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 3946, |
|
0, 0, 0, 0, 2308, 0, 0, 0, 0, 1189, |
|
13876, 0, 0, 0, 9330, 0, 0, 783, 0, 0, |
|
0, 0, 0, 0, 725, 733, 0, 0, 1238, 0, |
|
0, 0, 0, 1942, 0, 0, 0, 0, 0, 0, |
|
15925, 0, 0, 0, 802, 0, 0, 0, 9487,16882, |
|
0, 0, 813, 827, 828, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 768, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 1241, 0, 0, 0, 0, 3732, |
|
0, 0, 196, 0, 185, 3984, 0, 0, 0, 0, |
|
0, 1239, 0, 0, 0, 0, 0, 1245, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 305, 619, |
|
0, 0, 0, 0, 0, 1242, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0,15789, 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, 0, 0, 599, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, -141, 0, 514, 0, 0, |
|
0, 0, 0, 0, 0, 0, 10, 0, 0, 0, |
|
0, 9487, 8112, 0, 1246, 0, 776, 0, 0, 0, |
|
0, 1250, 0, 1200, 1202, 0, 0, 0, 0, 0, |
|
1248, 9644, 0, 0, 0, 0,16914, 0, 0, 0, |
|
829, 0, 0, 0, 0, 0, 0, 2182, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 4143, 0, 4620, 1253, 0, 0, 0, |
|
1254, 0, 0, 0, 0, 431, 0, 0, 0, 0, |
|
829, 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, -241, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 830, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1249, 0, 0, 0, 0, 0, 842, |
|
849, 0, 0, 0, 0, 0, 0, 0, 1256, 687, |
|
1255, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 4302, 0, 0, 0, 0, 0, 1261, |
|
0, 0, 431, 0, 0, 775, 0, 1256, 0, 0, |
|
0,15789, 0, 629, 654, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1238,13715, |
|
0, 0, 0, 0, 0,17052, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 738, 0, 757, |
|
0, 0, 0, 0, 904, 0, 786, 1257, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1262, 0, |
|
7467, 0, 1265, 0, 0, 0, 0,15789, 0, 0, |
|
0, 0, 0, 0, 0, 350, 537, 0, 0, 0, |
|
0, 0,17128,16735, 0, 567, 567, 567, 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,17233, |
|
0, -261, 0, 1267, 1267, 1267, 0, 0, 0, 0, |
|
0, 1263, 0, 0, 0, -194, 0, 0, 0, 0, |
|
0, 0, 0, 0,17276, 0, 0, 0,14179, 0, |
|
0, 1269, 0, 0, 570, 0, 0, 0, 603, 0, |
|
0, 0, 0, 0, 0, 0, 0, 1264, 0, 1270, |
|
0, 0, 0, 3205, 1266, 572, 0, 0, -255, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 3122, 0, 0, 0, |
|
0,13981,14265, 0, 0, 0, 605, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 416, 0, 0,16517, |
|
0, 0,14080, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0,16585, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0,14359, 0,13981, |
|
0, 0, 605, 0, 0, 0, 0, 449, 0, 0, |
|
0, 0, 0, 0, 0, 0, 449, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 5002, |
|
462, 0,14401, 0, 0, 0,14471, 0, 3122, 0, |
|
0, 0, 1270, 3122, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 380, 0, 1273, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 3122, |
|
0, 0, 0, 744, 0, 662, 0, 0, 0, 0, |
|
0, 0, 0,16735, 846, 0, 0, 0, 0, 0, |
|
0, 1271, 0, 56, 0, 0, 0, 0, 0, 0, |
|
0, 0, 853, 0, 0, 0, 0, 0, 0, 0, |
|
0, 1274, 0,16735,16735, 0,16767, 0, 0, 0, |
|
0, 0, 0, 1275,17500, 0, 1276,16735,16061, 1277, |
|
16735, 0, 0, 0, 0, 0, 0, 1279, 0, 0, |
|
0,17470, 0, 0, 0,16735, 0, 0, 0, 1281, |
|
0, 0, 340, 0,17394,17432, 0, 0, 0, 1284, |
|
0, 0, 0, 0, 0, 0, 1285, 0, 0,16735, |
|
0, 559, 0, 859, 0, 0, 0, 0, 0, 892, |
|
0,17318,17356, 0, 0, 0, 0, 0, 0, 0, |
|
0, 1307, 0, 1383, 0, 0, 0, 862, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 618, 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,17470,16233, |
|
17170, 0, 618, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 1233, 1233, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, |
|
}; |
|
protected static readonly short [] yyGindex = { 0, |
|
0, 1599, 0, 0, 0, -3, -16, -183, -41, -38, |
|
0, 1644, 1657, 640, 0, 6, 0, 0, 0, 0, |
|
0, 0, -950, -736, -217, -499, 0, 0, 0, 0, |
|
0, -220, 0, 0, 0, 661, 0, 772, 0, 0, |
|
0, 0, 516, 517, -17, -230, 0, -46, 0, 351, |
|
0, 379, -660, -589, -585, -553, -538, -531, -450, -419, |
|
0, -674,-1217, 0, 12, 0, 109, 0,-1145, 0, |
|
0, 0, 377, 169, 0, 0, 0, 200,-1110, 0, |
|
-278, -294, 948, 0, 0, 0, -935, 152, 0, 0, |
|
-522, 0, 0, 219, 0, 0, 193, 0, 0, 228, |
|
0,-1242, -843, 0, 0, 0, 0, 0, 328, -10, |
|
0, 0, 769, 770, 771, 956, -529, 0, 0, -308, |
|
773, 329, 0,-1415, 0, 0, 0, 0, 0, 0, |
|
0, 0, 133, 0, 0, 0, 0, 0, 0, 0, |
|
0, 382, 0, 0, 0, 0, -344, 316, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, -525, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 145, |
|
0, 0, 226, 0, 0, 233, 236, 151, 0, 0, |
|
0, 0, 0, 0, 0, 0, 459, 0, 0, 0, |
|
0, -51, 0, 243, -188, 0, 0, 296, 0, 359, |
|
0, 832, 0, 1168, -292, -269, -60, 1073, 0, 465, |
|
0, -29, 136, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, -252, 0, 759, 0, -346, 0, -273, 0, |
|
0, 0, 781, 790, -299, -125, 957, 0, 868, 0, |
|
1117, 1345, 997, 0, 0, 675, 1661, 0, 0, 0, |
|
0, 968, 0, 0, 0, 0, 0, -484, 1397, 0, |
|
0, 0, 0, 0, 1356, 867, 876, 784, 875, 1323, |
|
1324, 1322, 1325, 1326, 0, 1328, 0, 0, 0, 901, |
|
1171, -548, 0, -645, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, -302, 0, 0, 0, 0, -463, 0, |
|
518, 0, 414, 0,-1138, 0, 0, 0, 0, 0, |
|
575, -543, -1, -332, 11, 0, 1586, 0, 19, 0, |
|
63, 66, 87, 101, 122, 141, 144, 167, 171, 176, |
|
0, -717, 0, -25, 0, 0, 710, 0, 635, 0, |
|
0, 0, 0, 615, -672, 689, -908, 0, 751, -477, |
|
0, 0, 0, 0, 0, 0, 645, 0, 0, 648, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 574, 0, 0, 0, 0, |
|
0, 0, 0, 0, -23, 0, 1237, 0, 0, 0, |
|
817, 0, 0, 0, 0, 0, 0, -168, 0, 0, |
|
0, 0, 0, 1346, 1094, 0, 0, 0, 1349, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 477, 0, |
|
0, 0, 0, 0, 0, 0, 0, 569, 0, 0, |
|
0, 0, 0, 0, -9, 908, 0, 0, 0, 912, |
|
}; |
|
protected static readonly short [] yyTable = { 109, |
|
18, 189, 449, 781, 532, 446, 111, 535, 787, 233, |
|
507, 577, 234, 485, 464, 155, 489, 43, 729, 445, |
|
552, 293, 593, 321, 530, 192, 751, 156, 528, 258, |
|
831, 419, 832, 259, 563, 160, 620, 229, 873, 874, |
|
327, 332, 928, 516, 929, 339, 1074, 252, 1197, 1231, |
|
1232, 948, 377, 312, 385, 304, 1007, 843, 592, 311, |
|
558, 376, 836, 384, 674, 373, 249, 1126, 313, 756, |
|
316, 1407, 1328, 844, 315, 426, 1125, 345, 1079, 161, |
|
498, 249, 162, 828, 712, 460, 1536, 1537, 1126, 1337, |
|
315, 960, 863, 936, 962, 358, 14, 926, 833, 1264, |
|
289, 1258, 372, 163, 579, 190, 322, 1107, 290, 856, |
|
713, 1067, 324, 722, 991, 416, 827, 164, 1109, 1160, |
|
374, 1391, 1393, 1399, 1395, 421, 805, 417, 1442, 883, |
|
805, 1161, 260, 2, 805, 927, 449, 1409, 165, 109, |
|
834, 884, 714, 1569, 829, 16, 111, 233, 337, 320, |
|
447, 489, 115, 678, 937, 155, 51, 166, 427, 1428, |
|
167, 580, 51, 428, 499, 429, 857, 156, 430, 431, |
|
1, 432, 433, 844, 889, 160, 291, 94, 42, 449, |
|
674, 250, 674, 168, 602, 94, 1408, 169, 1261, 250, |
|
463, 524, 170, 447, 115, 291, 250, 991, 115, 487, |
|
490, 802, 991, 362, 991, 250, 1079, 991, 991, 372, |
|
991, 991, 494, 455, 291, 861, 372, 864, 372, 161, |
|
372, 1127, 162, 593, 1388, 775, 485, 844, 464, 488, |
|
251, 292, 991, 779, 291, 493, 1038, 674, 251, 461, |
|
930, 577, 1127, 163, 6, 251, 715, 593, 434, 515, |
|
292, 363, 261, 1443, 251, 1510, 258, 164, 15, 592, |
|
503, 551, 194, 696, 372, 555, 258, 191, 577, 292, |
|
560, 506, 2, 968, 364, 723, 510, 512, 165, 559, |
|
1110, 557, 1534, 1392, 1394, 1400, 562, 991, 365, 292, |
|
338, 539, 115, 550, 1544, 1578, 1545, 166, 730, 547, |
|
167, 549, 525, 51, 526, 510, 250, 548, 1262, 759, |
|
1191, 358, 20, 1007, 1204, 51, 1282, 565, 566, 699, |
|
887, 725, 225, 168, 226, 726, 1122, 169, 605, 194, |
|
194, 608, 170, 1270, 862, 490, 490, 859, 3, 4, |
|
5, 6, 576, 1080, 761, 1082, 1528, 600, 1085, 734, |
|
194, 358, 1149, 599, 578, 251, 1506, 939, 527, 593, |
|
915, 737, 888, 849, 488, 617, 1115, 1250, 624, 625, |
|
626, 627, 628, 629, 630, 631, 632, 633, 634, 943, |
|
802, 680, 682, 1028, 789, 686, 727, 1555, 199, 791, |
|
1332, 1333, 808, 461, 20, 1115, 890, 1413, 48, 1334, |
|
676, 449, 943, 54, 233, 1289, 94, 447, 1387, 1472, |
|
734, 811, 1370, 1389, 700, 1579, 845, 1575, 1036, 847, |
|
848, 115, 358, 1499, 1058, 760, 358, 51, 343, 358, |
|
823, 358, 231, 1205, 358, 1142, 358, 1144, 1145, 1420, |
|
1007, 194, 194, 697, 698, 920, 738, 1042, 370, 710, |
|
461, 1203, 1271, 694, 115, 860, 749, 740, 757, 1209, |
|
762, 200, 358, 328, 333, 1529, 358, 716, 358, 358, |
|
358, 358, 1065, 231, 231, 940, 358, 850, 750, 115, |
|
485, 733, 490, 1234, 369, 1251, 747, 1551, 196, 793, |
|
1414, 462, 593, 944, 291, 1552, 371, 945, 231, 801, |
|
790, 6, 489, 810, 194, 792, 882, 975, 809, 777, |
|
400, 617, 516, 785, 1048, 1114, 687, 1220, 231, 485, |
|
945, 687, 231, 1139, 424, 687, 449, 812, 592, 250, |
|
194, 793, 795, 448, 1037, 1211, 231, 793, 813, 1275, |
|
687, 94, 194, 815, 835, 244, 401, 500, 462, 292, |
|
194, 800, 1007, 735, 1030, 501, 1553, 372, 1007, 824, |
|
1430, 291, 362, 449, 291, 291, 1242, 687, 593, 363, |
|
824, 1541, 576, 362, 1220, 453, 454, 425, 251, 1134, |
|
362, 1135, 231, 245, 578, 426, 687, 246, 248, 1178, |
|
1460, 1461, 364, 1463, 448, 851, 851, 781, 793, 576, |
|
935, 320, 687, 1026, 1482, 994, 194, 1489, 502, 194, |
|
363, 578, 1309, 1277, 735, 1021, 956, 688, 1150, 1063, |
|
603, 363, 1505, 1542, 449, 788, 402, 403, 363, 977, |
|
604, 788, 1323, 364, 870, 348, 872, 247, 495, 115, |
|
775, 291, 194, 194, 364, 880, 1527, 365, 1368, 941, |
|
370, 364, 781, 336, 687, 404, 405, 1309, 365, 336, |
|
197, 867, 831, 1371, 505, 365, 867, 867, 427, 876, |
|
194, 194, 1057, 428, 1053, 429, 365, 1076, 430, 431, |
|
788, 432, 433, 1310, 538, 1077, 490, 1311, 994, 535, |
|
194, 197, 903, 994, 363, 994, 606, 1369, 994, 994, |
|
427, 994, 994, 922, 194, 428, 607, 429, 336, 115, |
|
430, 431, 1372, 432, 433, 488, 904, 364, 515, 1312, |
|
685, 94, 365, 994, 751, 250, 450, 263, 1310, 451, |
|
510, 365, 1311, 686, 1313, 258, 115, 902, 1118, 555, |
|
583, 1314, 906, 905, 685, 785, 348, 995, 996, 907, |
|
348, 777, 343, 120, 713, 120, 957, 686, 444, 779, |
|
120, 370, 370, 370, 1312, 370, 370, 696, 370, 985, |
|
370, 685, 1291, 1308, 251, 1095, 642, 644, 994, 1313, |
|
542, 225, 713, 228, 686, 952, 1314, 343, 803, 971, |
|
689, 713, 987, 1291, 348, 509, 963, 796, 964, 343, |
|
94, 509, 343, 343, 681, 683, 94, 490, 969, 966, |
|
194, 824, 370, 490, 370, 1360, 343, 370, 1308, 262, |
|
1291, 94, 1315, 286, 287, 288, 687, 294, 295, 1087, |
|
1415, 687, 308, 309, 194, 687, 617, 484, 231, 317, |
|
577, 319, 617, 323, 980, 700, 785, 1170, 335, 336, |
|
687, 792, 985, 1316, 334, 406, 407, 985, 448, 985, |
|
981, 413, 985, 985, 1021, 985, 985, 1315, 363, 408, |
|
409, 541, 383, 577, 882, 987, 450, 687, 740, 881, |
|
987, 412, 987, 1200, 542, 987, 987, 414, 987, 987, |
|
1018, 364, 506, 415, 374, 115, 687, 115, 1316, 374, |
|
716, 543, 374, 297, 1061, 706, 1064, 577, 707, 1043, |
|
375, 1010, 1066, 94, 1045, 450, 729, 1045, 953, 418, |
|
1233, 1095, 1281, 320, 452, 275, 275, 1055, 320, 785, |
|
585, 320, 1493, 706, 275, 225, 707, 586, 1075, 327, |
|
792, 456, 985, 981, 115, 327, 194, 115, 981, 587, |
|
981, 426, 328, 981, 981, 792, 981, 981, 343, 490, |
|
343, 792, 397, 398, 399, 987, 804, 194, 792, 710, |
|
585, 867, 912, 867, 804, 1104, 867, 586, 710, 343, |
|
343, 1108, 343, 1357, 709, 343, 38, 336, 1094, 587, |
|
336, 521, 1357, 709, 1546, 522, 821, 464, 485, 343, |
|
821, 1325, 821, 343, 821, 486, 1215, 343, 716, 343, |
|
343, 459, 296, 317, 297, 343, 383, 337, 343, 343, |
|
785, 810, 531, 510, 1101, 810, 1102, 810, 1103, 810, |
|
577, 1566, 343, 981, 427, 285, 194, 285, 1073, 428, |
|
860, 429, 285, 508, 430, 431, 509, 432, 433, 732, |
|
1584, 1585, 250, 733, 378, 535, 529, 375, 800, 194, |
|
800, 824, 800, 867, 343, 867, 867, 792, 1146, 410, |
|
411, 343, 546, 379, 380, 194, 800, 343, 44, 194, |
|
536, 766, 800, 343, 800, 767, 647, 343, 647, 113, |
|
1183, 1184, 1153, 381, 343, 343, 537, 343, 343, 60, |
|
343, 251, 68, 68, 382, 490, 68, 173, 506, 173, |
|
348, 173, 1247, 231, 348, 740, 343, 348, 1151, 348, |
|
1152, 776, 1179, 785, 348, 522, 186, 824, 186, 923, |
|
186, 113, 343, 924, 1094, 113, 1190, 194, 869, 873, |
|
540, 506, 869, 873, 506, 69, 533, 533, 233, 69, |
|
1218, 447, 1027, 1219, 1027, 194, 194, 804, 348, 331, |
|
331, 804, 510, 867, 449, 421, 556, 421, 510, 1214, |
|
951, 576, 1021, 233, 561, 812, 447, 812, 569, 115, |
|
331, 506, 161, 578, 161, 597, 421, 421, 1406, 654, |
|
656, 658, 660, 965, 867, 1146, 168, 169, 168, 169, |
|
938, 71, 938, 71, 576, 1406, 421, 1218, 598, 970, |
|
1219, 192, 364, 192, 421, 609, 578, 421, 162, 125, |
|
162, 125, 368, 1438, 194, 1439, 291, 692, 291, 113, |
|
1290, 1307, 132, 1219, 132, 298, 695, 298, 576, 364, |
|
456, 867, 711, 38, 731, 194, 758, 38, 1556, 1557, |
|
578, 1290, 765, 194, 1219, 687, 687, 748, 38, 734, |
|
867, 736, 506, 38, 763, 1195, 1196, 38, 646, 648, |
|
38, 331, 331, 764, 1341, 807, 1307, 814, 1290, 650, |
|
652, 1219, 38, 38, 662, 664, 816, 38, 38, 817, |
|
1029, 818, 819, 38, 838, 38, 38, 38, 38, 837, |
|
794, 841, 842, 38, 115, 844, 854, 38, 115, 38, |
|
846, 855, 115, 869, 871, 875, 891, 892, 450, 38, |
|
1362, 38, 38, 894, 38, 895, 898, 42, 38, 916, |
|
910, 196, 917, 918, 331, 919, 115, 925, 946, 942, |
|
949, 115, 860, 947, 954, 959, 958, 967, 38, 973, |
|
985, 990, 992, 997, 38, 38, 999, 1005, 113, 1006, |
|
331, 576, 1009, 1014, 1008, 740, 1011, 1016, 1022, 1034, |
|
1035, 1038, 331, 578, 1416, 115, 1044, 1052, 525, 1070, |
|
331, 37, 1059, 1071, 1084, 1088, 1105, 1099, 1097, 1113, |
|
1111, 113, 115, 1121, 1123, 740, 740, 1112, 740, 1133, |
|
1137, 1140, 1155, 1473, 1163, 1164, 1141, 1143, 1165, 740, |
|
1159, 1162, 740, 1167, 1168, 1171, 113, 1175, 1182, 1186, |
|
1500, 1193, 1185, 1198, 1210, 1227, 1207, 740, 620, 1244, |
|
1241, 1260, 1265, 1512, 1514, 194, 331, 785, 1217, 331, |
|
1246, 1249, 1362, 1267, 1252, 1257, 1272, 1273, 343, 506, |
|
1280, 740, 347, 349, 351, 353, 355, 357, 359, 361, |
|
1500, 1500, 386, 1276, 1274, 1281, 1522, 1324, 1321, 1326, |
|
1329, 1338, 331, 331, 1327, 1373, 1343, 1365, 1386, 1404, |
|
1403, 1412, 1422, 387, 388, 389, 390, 391, 392, 393, |
|
394, 395, 396, 194, 1411, 1419, 1414, 1424, 115, 785, |
|
331, 331, 1427, 1394, 1425, 1429, 1433, 1435, 1436, 1449, |
|
1431, 620, 1464, 194, 1441, 1452, 620, 1500, 620, 620, |
|
620, 620, 620, 620, 620, 620, 620, 620, 620, 490, |
|
490, 1446, 1453, 1456, 1454, 1483, 785, 1465, 1494, 1468, |
|
620, 5, 620, 1478, 620, 1485, 620, 620, 620, 1571, |
|
1571, 1495, 1497, 1498, 1504, 1507, 1580, 1580, 617, 617, |
|
1518, 1508, 620, 1519, 1521, 1523, 1524, 1526, 1539, 194, |
|
194, 1543, 620, 620, 1532, 1547, 113, 1548, 1550, 194, |
|
1558, 1559, 1542, 1541, 1564, 620, 1565, 194, 194, 1586, |
|
194, 1587, 1588, 9, 1023, 549, 1383, 504, 907, 908, |
|
1015, 620, 649, 505, 461, 650, 721, 33, 503, 1383, |
|
462, 194, 33, 529, 194, 34, 319, 213, 331, 100, |
|
34, 687, 1383, 814, 815, 915, 514, 806, 838, 839, |
|
874, 918, 875, 709, 876, 878, 323, 734, 37, 350, |
|
331, 709, 37, 343, 1383, 687, 113, 1286, 230, 128, |
|
110, 294, 135, 37, 129, 53, 111, 343, 37, 295, |
|
136, 21, 37, 1089, 331, 37, 1004, 1188, 1189, 1509, |
|
1340, 1330, 900, 113, 1549, 1540, 1496, 37, 37, 1525, |
|
1491, 1380, 37, 37, 1027, 1031, 1032, 1033, 37, 564, |
|
37, 37, 37, 37, 913, 1396, 626, 343, 37, 1339, |
|
1582, 1418, 37, 1286, 37, 1520, 1574, 1268, 1515, 1440, |
|
1513, 1573, 1384, 804, 37, 1269, 37, 37, 1000, 37, |
|
1051, 1366, 1367, 37, 1049, 934, 611, 978, 1124, 909, |
|
853, 299, 931, 567, 666, 670, 668, 972, 821, 672, |
|
1344, 674, 420, 37, 675, 1398, 1254, 1206, 1401, 1117, |
|
37, 1166, 636, 638, 640, 1180, 1136, 564, 564, 564, |
|
564, 564, 564, 564, 564, 564, 564, 564, 564, 564, |
|
564, 564, 564, 1172, 1106, 1238, 331, 1068, 1174, 626, |
|
797, 1243, 690, 879, 626, 691, 626, 626, 626, 626, |
|
626, 626, 626, 626, 626, 626, 626, 331, 5, 1342, |
|
1002, 0, 51, 1001, 0, 0, 0, 0, 626, 0, |
|
626, 909, 626, 51, 626, 626, 626, 0, 51, 0, |
|
0, 0, 51, 0, 0, 51, 0, 0, 0, 0, |
|
626, 0, 113, 0, 113, 0, 0, 51, 51, 0, |
|
0, 0, 51, 51, 0, 0, 0, 0, 51, 0, |
|
51, 51, 51, 51, 0, 0, 0, 0, 51, 0, |
|
0, 0, 51, 0, 51, 0, 331, 0, 0, 626, |
|
0, 0, 0, 0, 51, 0, 0, 51, 0, 51, |
|
564, 113, 514, 51, 113, 0, 0, 514, 514, 331, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 51, 0, 331, 0, 0, 0, 331, |
|
514, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 514, 514, 0, 0, 0, 514, 0, |
|
0, 514, 0, 514, 0, 514, 514, 514, 514, 0, |
|
0, 24, 0, 514, 0, 0, 0, 514, 0, 0, |
|
0, 514, 840, 0, 0, 0, 0, 0, 0, 514, |
|
0, 0, 514, 0, 514, 514, 0, 0, 0, 0, |
|
514, 0, 514, 514, 514, 514, 514, 514, 514, 514, |
|
514, 514, 514, 0, 0, 331, 331, 0, 514, 514, |
|
0, 0, 0, 514, 514, 0, 514, 514, 514, 514, |
|
514, 514, 514, 0, 514, 514, 0, 514, 514, 514, |
|
514, 514, 514, 514, 514, 514, 514, 0, 514, 514, |
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514, |
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514, |
|
0, 0, 514, 36, 514, 0, 514, 0, 0, 514, |
|
0, 0, 0, 0, 331, 514, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 909, 909, 0, |
|
0, 0, 0, 0, 0, 909, 909, 909, 909, 909, |
|
0, 909, 909, 331, 909, 909, 909, 909, 909, 909, |
|
909, 909, 0, 0, 0, 0, 909, 0, 909, 909, |
|
909, 909, 909, 909, 0, 0, 909, 0, 0, 0, |
|
909, 909, 0, 909, 909, 909, 113, 0, 0, 0, |
|
0, 0, 0, 343, 0, 909, 0, 909, 0, 909, |
|
909, 0, 0, 909, 0, 909, 909, 909, 909, 909, |
|
909, 909, 909, 909, 909, 909, 909, 0, 909, 0, |
|
0, 909, 909, 0, 0, 909, 909, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
909, 909, 909, 909, 909, 0, 0, 0, 909, 909, |
|
0, 832, 909, 0, 0, 0, 0, 909, 909, 909, |
|
909, 909, 0, 0, 0, 909, 0, 909, 24, 0, |
|
0, 0, 24, 909, 909, 0, 0, 0, 0, 0, |
|
0, 0, 0, 24, 0, 0, 0, 0, 24, 0, |
|
0, 0, 24, 0, 0, 24, 0, 0, 909, 909, |
|
909, 909, 0, 909, 0, 0, 0, 24, 24, 0, |
|
909, 113, 24, 24, 0, 113, 0, 0, 24, 113, |
|
24, 24, 24, 24, 0, 0, 0, 0, 24, 0, |
|
0, 0, 24, 0, 24, 331, 0, 0, 0, 0, |
|
0, 0, 0, 113, 24, 0, 0, 24, 113, 24, |
|
0, 0, 0, 24, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 564, 0, 0, 0, 0, |
|
36, 0, 0, 24, 36, 0, 0, 343, 21, 24, |
|
24, 0, 113, 0, 0, 36, 0, 0, 0, 0, |
|
36, 0, 0, 331, 36, 0, 0, 36, 0, 113, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 36, |
|
36, 0, 0, 331, 36, 36, 0, 0, 0, 0, |
|
36, 0, 36, 36, 36, 36, 0, 0, 0, 0, |
|
36, 0, 0, 0, 36, 0, 36, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 36, 0, 0, 36, |
|
0, 36, 0, 0, 0, 36, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 331, |
|
331, 0, 0, 0, 0, 36, 0, 0, 0, 331, |
|
0, 36, 36, 0, 0, 0, 0, 331, 331, 0, |
|
331, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 113, 0, 832, 832, 0, |
|
0, 331, 0, 0, 331, 832, 832, 832, 832, 832, |
|
0, 832, 832, 789, 832, 832, 832, 832, 832, 832, |
|
832, 0, 0, 0, 0, 0, 832, 0, 832, 832, |
|
832, 832, 832, 832, 0, 0, 832, 0, 0, 0, |
|
832, 832, 0, 832, 832, 832, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 832, 0, 832, 0, 832, |
|
832, 0, 0, 832, 0, 832, 832, 832, 832, 832, |
|
832, 832, 832, 832, 832, 832, 832, 0, 832, 0, |
|
0, 832, 832, 0, 0, 832, 832, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
832, 832, 832, 832, 832, 0, 0, 0, 832, 832, |
|
0, 0, 832, 0, 0, 0, 0, 832, 832, 832, |
|
832, 832, 0, 343, 0, 832, 0, 832, 343, 343, |
|
0, 0, 0, 832, 832, 0, 0, 0, 0, 0, |
|
0, 0, 0, 336, 0, 0, 0, 0, 0, 0, |
|
0, 343, 0, 0, 0, 0, 0, 0, 832, 832, |
|
832, 832, 0, 832, 343, 343, 0, 0, 0, 343, |
|
832, 0, 343, 0, 343, 0, 343, 343, 343, 343, |
|
0, 0, 0, 0, 343, 0, 0, 0, 343, 0, |
|
0, 0, 343, 0, 0, 0, 0, 0, 0, 0, |
|
343, 0, 0, 343, 0, 343, 343, 0, 0, 0, |
|
0, 343, 0, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 0, 0, 0, 0, 343, |
|
343, 0, 0, 0, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 0, 343, 343, 0, 0, 343, |
|
343, 343, 343, 343, 0, 0, 343, 343, 0, 0, |
|
0, 343, 343, 343, 343, 343, 343, 343, 343, 789, |
|
0, 0, 0, 373, 789, 789, 0, 0, 0, 0, |
|
343, 0, 0, 343, 0, 343, 0, 343, 0, 0, |
|
343, 0, 0, 0, 0, 0, 343, 789, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
789, 789, 0, 0, 0, 789, 0, 0, 789, 0, |
|
789, 0, 789, 789, 789, 789, 0, 0, 0, 0, |
|
789, 0, 0, 0, 789, 0, 0, 0, 789, 0, |
|
0, 0, 0, 0, 0, 0, 789, 0, 0, 789, |
|
0, 789, 789, 0, 0, 0, 0, 789, 0, 789, |
|
789, 789, 789, 789, 789, 789, 789, 789, 789, 789, |
|
0, 0, 0, 0, 0, 789, 789, 343, 0, 0, |
|
789, 789, 789, 789, 789, 789, 0, 789, 789, 789, |
|
0, 789, 789, 0, 0, 789, 789, 789, 789, 336, |
|
0, 0, 789, 789, 336, 336, 0, 789, 789, 789, |
|
789, 789, 789, 789, 789, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 789, 336, 0, 789, |
|
0, 789, 0, 789, 0, 0, 789, 0, 0, 0, |
|
336, 336, 789, 0, 0, 336, 0, 0, 336, 0, |
|
336, 0, 336, 336, 336, 336, 0, 0, 0, 0, |
|
336, 0, 0, 0, 336, 0, 0, 0, 336, 0, |
|
0, 0, 0, 0, 0, 0, 336, 0, 0, 336, |
|
0, 336, 336, 0, 0, 0, 0, 336, 0, 336, |
|
336, 336, 336, 336, 336, 336, 336, 336, 336, 336, |
|
0, 0, 0, 0, 0, 336, 336, 0, 0, 0, |
|
336, 336, 336, 336, 336, 336, 0, 336, 336, 336, |
|
0, 336, 336, 368, 0, 336, 336, 336, 336, 373, |
|
0, 0, 336, 336, 373, 373, 0, 336, 336, 336, |
|
336, 336, 336, 336, 336, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 336, 373, 0, 336, |
|
0, 336, 0, 336, 0, 0, 336, 0, 0, 0, |
|
373, 373, 336, 0, 0, 373, 0, 0, 373, 0, |
|
373, 0, 373, 373, 373, 373, 0, 0, 0, 0, |
|
373, 0, 0, 0, 373, 0, 0, 0, 373, 0, |
|
0, 0, 0, 0, 0, 0, 373, 0, 0, 373, |
|
0, 373, 373, 0, 0, 0, 0, 373, 0, 373, |
|
373, 373, 373, 373, 373, 373, 373, 373, 373, 373, |
|
0, 0, 0, 343, 0, 373, 373, 0, 0, 343, |
|
373, 373, 0, 373, 373, 373, 0, 373, 373, 373, |
|
0, 373, 373, 0, 0, 373, 373, 373, 373, 0, |
|
0, 0, 373, 373, 0, 0, 0, 373, 373, 373, |
|
373, 373, 373, 373, 373, 343, 0, 0, 0, 0, |
|
0, 31, 0, 0, 0, 0, 373, 0, 0, 373, |
|
0, 373, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 373, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 343, 0, 0, 0, |
|
0, 343, 0, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 0, 0, 628, 0, 0, |
|
343, 0, 0, 0, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 0, 343, 343, 0, 0, 343, |
|
343, 343, 343, 343, 25, 0, 343, 343, 0, 0, |
|
0, 343, 343, 343, 343, 343, 343, 343, 343, 368, |
|
0, 0, 0, 0, 0, 368, 0, 0, 0, 0, |
|
343, 0, 0, 343, 0, 343, 0, 343, 0, 0, |
|
343, 0, 0, 0, 0, 0, 343, 35, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
628, 368, 0, 0, 0, 628, 0, 628, 628, 628, |
|
628, 628, 628, 628, 628, 628, 628, 628, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 628, |
|
1005, 628, 0, 628, 0, 628, 628, 628, 0, 0, |
|
0, 0, 368, 0, 0, 0, 0, 368, 0, 368, |
|
368, 368, 368, 368, 368, 368, 368, 368, 368, 368, |
|
0, 0, 0, 0, 0, 0, 368, 0, 0, 0, |
|
368, 368, 0, 368, 368, 368, 0, 368, 368, 368, |
|
0, 368, 368, 0, 0, 368, 368, 368, 368, 0, |
|
628, 0, 368, 368, 0, 0, 0, 368, 368, 368, |
|
368, 368, 368, 368, 368, 0, 0, 0, 0, 0, |
|
51, 0, 0, 0, 0, 0, 368, 31, 31, 368, |
|
0, 368, 31, 0, 0, 0, 31, 0, 31, 0, |
|
0, 31, 368, 31, 31, 0, 31, 0, 31, 0, |
|
31, 0, 31, 31, 31, 31, 0, 0, 31, 31, |
|
0, 0, 0, 7, 31, 0, 31, 31, 31, 0, |
|
0, 31, 31, 31, 0, 31, 0, 0, 31, 0, |
|
31, 31, 31, 31, 0, 0, 0, 31, 31, 31, |
|
0, 0, 31, 31, 31, 0, 0, 0, 0, 0, |
|
0, 31, 31, 0, 31, 31, 1006, 31, 31, 31, |
|
0, 25, 0, 31, 0, 25, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 25, 0, 0, 0, |
|
0, 25, 0, 31, 0, 25, 0, 0, 25, 31, |
|
31, 0, 0, 0, 0, 0, 0, 0, 31, 52, |
|
25, 25, 0, 0, 35, 25, 25, 0, 35, 0, |
|
0, 25, 0, 25, 25, 25, 25, 0, 0, 35, |
|
0, 25, 0, 0, 35, 25, 0, 25, 35, 0, |
|
0, 35, 0, 0, 0, 0, 0, 25, 0, 31, |
|
25, 0, 25, 35, 35, 0, 25, 1005, 35, 35, |
|
0, 51, 0, 0, 35, 0, 35, 35, 35, 35, |
|
0, 0, 51, 0, 35, 0, 25, 51, 35, 0, |
|
35, 51, 25, 25, 51, 0, 0, 0, 0, 0, |
|
35, 0, 0, 35, 0, 35, 51, 51, 0, 35, |
|
0, 51, 51, 0, 0, 0, 0, 51, 0, 51, |
|
51, 51, 51, 0, 0, 0, 0, 51, 0, 35, |
|
0, 51, 0, 51, 0, 0, 35, 0, 0, 0, |
|
0, 0, 0, 51, 0, 0, 51, 51, 51, 0, |
|
0, 51, 51, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 51, 0, 0, 0, 0, 51, 0, 0, |
|
0, 51, 51, 0, 51, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 51, 51, 0, 0, |
|
7, 51, 51, 0, 52, 0, 0, 51, 0, 51, |
|
51, 51, 51, 0, 0, 52, 0, 51, 0, 0, |
|
52, 51, 0, 51, 52, 0, 0, 52, 0, 0, |
|
0, 0, 0, 51, 0, 0, 51, 0, 51, 52, |
|
52, 0, 51, 1006, 52, 52, 0, 51, 0, 0, |
|
52, 0, 52, 52, 52, 52, 0, 0, 51, 0, |
|
52, 0, 51, 51, 52, 0, 52, 51, 0, 0, |
|
51, 0, 0, 0, 0, 0, 52, 0, 0, 52, |
|
0, 52, 51, 51, 0, 52, 52, 51, 51, 0, |
|
52, 0, 0, 51, 0, 51, 51, 51, 51, 0, |
|
0, 52, 0, 51, 0, 52, 52, 51, 0, 51, |
|
52, 0, 0, 52, 0, 0, 0, 0, 0, 51, |
|
0, 0, 51, 0, 51, 52, 52, 0, 51, 0, |
|
52, 52, 0, 0, 0, 0, 52, 0, 52, 52, |
|
52, 52, 0, 0, 0, 0, 52, 0, 51, 0, |
|
52, 0, 52, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 52, 0, 55, 52, 0, 52, 0, 0, |
|
0, 52, 56, 24, 57, 25, 0, 0, 26, 58, |
|
0, 59, 60, 27, 61, 62, 63, 28, 0, 0, |
|
0, 52, 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, 792, 87, 88, 0, 0, 0, 792, 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, 792, 102, 0, 0, 0, 0, 0, |
|
103, 104, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 343, 0, 0, |
|
0, 0, 0, 343, 0, 105, 106, 107, 108, 0, |
|
0, 0, 0, 0, 792, 0, 0, 196, 0, 792, |
|
0, 792, 792, 792, 792, 792, 792, 792, 792, 792, |
|
792, 792, 792, 0, 0, 0, 0, 0, 792, 343, |
|
0, 0, 0, 792, 792, 792, 792, 792, 792, 792, |
|
792, 792, 0, 792, 792, 0, 792, 792, 792, 792, |
|
792, 792, 792, 792, 792, 792, 0, 792, 792, 792, |
|
792, 792, 792, 792, 792, 792, 792, 792, 792, 792, |
|
792, 792, 792, 792, 792, 792, 792, 792, 792, 792, |
|
343, 0, 0, 792, 0, 792, 343, 0, 792, 0, |
|
0, 0, 0, 0, 792, 0, 0, 0, 0, 343, |
|
0, 0, 343, 0, 343, 343, 0, 0, 0, 343, |
|
343, 0, 0, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 343, 343, 0, 0, 0, 0, 0, |
|
0, 343, 0, 0, 343, 0, 0, 0, 0, 0, |
|
343, 0, 201, 343, 0, 0, 0, 0, 343, 0, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 0, 0, 0, 0, 0, 343, 0, 0, |
|
0, 0, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 997, 343, 343, 202, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 0, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 0, 516, |
|
0, 0, 343, 0, 343, 516, 0, 343, 0, 0, |
|
0, 0, 0, 343, 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, 516, 0, 0, 997, 0, 0, 0, 0, 997, |
|
0, 997, 997, 997, 997, 997, 997, 997, 997, 997, |
|
997, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 997, 0, 997, 0, 997, 0, 997, |
|
997, 997, 516, 0, 0, 0, 0, 516, 0, 516, |
|
516, 516, 516, 516, 516, 516, 516, 516, 516, 516, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
516, 516, 516, 516, 516, 516, 516, 516, 516, 516, |
|
0, 516, 516, 0, 516, 516, 516, 516, 516, 516, |
|
516, 516, 516, 516, 997, 516, 516, 516, 516, 516, |
|
516, 516, 516, 516, 516, 516, 516, 516, 516, 516, |
|
516, 516, 516, 516, 516, 516, 516, 0, 512, 798, |
|
0, 0, 0, 516, 512, 0, 0, 0, 24, 0, |
|
25, 0, 516, 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, |
|
512, 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, 399, |
|
0, 0, 0, 39, 40, 399, 0, 41, 0, 0, |
|
799, 512, 0, 0, 0, 0, 512, 0, 512, 512, |
|
512, 512, 512, 512, 512, 512, 512, 512, 512, 0, |
|
0, 0, 0, 0, 0, 0, 291, 0, 0, 512, |
|
512, 399, 512, 512, 512, 512, 512, 512, 512, 0, |
|
512, 512, 0, 512, 512, 512, 512, 512, 512, 512, |
|
512, 512, 512, 0, 512, 512, 512, 512, 512, 512, |
|
512, 512, 512, 512, 512, 512, 512, 512, 512, 512, |
|
512, 512, 512, 512, 512, 512, 0, 520, 0, 0, |
|
0, 325, 512, 520, 0, 512, 0, 0, 0, 0, |
|
0, 512, 0, 0, 0, 0, 336, 0, 0, 0, |
|
0, 399, 336, 0, 399, 399, 399, 399, 0, 399, |
|
0, 399, 399, 0, 399, 399, 399, 399, 399, 520, |
|
399, 399, 399, 399, 0, 399, 399, 399, 399, 399, |
|
399, 399, 399, 399, 399, 399, 399, 399, 399, 399, |
|
399, 399, 399, 399, 399, 399, 399, 0, 0, 0, |
|
0, 336, 0, 399, 0, 0, 399, 0, 0, 0, |
|
520, 0, 399, 0, 0, 520, 0, 520, 520, 520, |
|
520, 520, 520, 520, 520, 520, 520, 520, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 520, |
|
0, 520, 520, 520, 520, 520, 520, 520, 0, 520, |
|
520, 0, 520, 520, 520, 520, 520, 520, 520, 520, |
|
520, 520, 0, 520, 520, 520, 520, 520, 520, 520, |
|
520, 520, 520, 520, 520, 520, 520, 520, 520, 520, |
|
520, 520, 520, 520, 520, 0, 343, 582, 0, 0, |
|
0, 520, 343, 0, 520, 0, 24, 0, 25, 0, |
|
520, 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, 343, 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, 324, 343, |
|
0, 0, 0, 0, 343, 0, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 343, 0, |
|
343, 343, 343, 343, 343, 343, 343, 0, 343, 343, |
|
0, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 0, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 0, 444, 641, 0, 0, 368, |
|
343, 444, 0, 343, 0, 24, 0, 25, 0, 343, |
|
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, 444, 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, 324, 444, 0, |
|
0, 0, 0, 444, 0, 444, 444, 444, 444, 444, |
|
444, 444, 444, 444, 444, 444, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 444, 0, 444, |
|
444, 444, 444, 444, 444, 444, 0, 444, 444, 0, |
|
444, 444, 444, 444, 444, 444, 444, 444, 444, 444, |
|
0, 444, 444, 444, 444, 444, 444, 444, 444, 444, |
|
444, 444, 444, 444, 444, 444, 444, 444, 444, 444, |
|
444, 444, 444, 0, 343, 0, 0, 0, 368, 444, |
|
343, 643, 444, 0, 792, 0, 0, 0, 444, 0, |
|
24, 0, 25, 0, 0, 26, 0, 0, 0, 0, |
|
27, 0, 0, 0, 28, 0, 0, 0, 0, 0, |
|
0, 0, 0, 30, 0, 0, 343, 0, 0, 0, |
|
32, 0, 0, 0, 0, 33, 0, 0, 0, 34, |
|
0, 0, 792, 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, 324, 0, 0, 0, 0, 554, 0, 0, |
|
0, 0, 0, 554, 0, 343, 0, 0, 0, 0, |
|
0, 343, 0, 0, 0, 0, 343, 343, 343, 343, |
|
343, 343, 343, 792, 343, 0, 343, 343, 0, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 554, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 0, 0, 0, 0, 343, 0, 343, 0, |
|
0, 343, 0, 368, 0, 0, 0, 343, 0, 0, |
|
554, 0, 0, 0, 0, 554, 0, 554, 554, 554, |
|
554, 554, 554, 554, 554, 554, 554, 554, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 554, |
|
0, 554, 0, 554, 0, 554, 554, 554, 0, 554, |
|
554, 0, 554, 554, 554, 554, 554, 554, 554, 554, |
|
554, 554, 365, 0, 0, 554, 554, 554, 554, 554, |
|
554, 554, 554, 554, 554, 554, 554, 554, 554, 554, |
|
554, 554, 554, 576, 554, 365, 0, 0, 0, 576, |
|
0, 0, 0, 0, 0, 0, 0, 0, 365, 0, |
|
554, 0, 0, 365, 0, 0, 237, 0, 365, 0, |
|
365, 365, 365, 365, 0, 0, 0, 0, 365, 0, |
|
0, 0, 365, 0, 0, 576, 365, 0, 0, 0, |
|
0, 0, 0, 0, 365, 0, 0, 365, 0, 365, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 583, 0, 0, 0, 0, 0, 583, 0, 0, |
|
0, 0, 0, 365, 0, 0, 576, 0, 0, 0, |
|
0, 576, 0, 576, 576, 576, 576, 576, 576, 576, |
|
576, 576, 576, 576, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 583, 0, 576, 0, 576, 0, 576, |
|
0, 576, 576, 576, 0, 576, 576, 0, 0, 576, |
|
576, 576, 576, 576, 576, 576, 576, 576, 0, 365, |
|
0, 576, 576, 576, 576, 576, 576, 576, 576, 0, |
|
0, 0, 0, 0, 583, 0, 0, 0, 0, 583, |
|
576, 583, 583, 583, 583, 583, 583, 583, 583, 583, |
|
583, 583, 0, 0, 0, 584, 576, 0, 0, 0, |
|
0, 584, 0, 583, 0, 583, 0, 583, 0, 583, |
|
583, 583, 0, 583, 583, 0, 0, 583, 583, 583, |
|
583, 0, 0, 0, 583, 583, 0, 0, 0, 583, |
|
583, 583, 583, 583, 583, 583, 583, 584, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 583, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 585, 583, 0, 0, 0, 0, 585, |
|
0, 0, 0, 0, 0, 0, 0, 0, 584, 0, |
|
0, 0, 0, 584, 0, 584, 584, 584, 584, 584, |
|
584, 584, 584, 584, 584, 584, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 585, 0, 584, 0, 584, |
|
0, 584, 0, 584, 584, 584, 0, 584, 584, 0, |
|
0, 584, 584, 584, 584, 0, 0, 0, 584, 584, |
|
0, 592, 0, 584, 584, 584, 584, 584, 584, 584, |
|
584, 0, 0, 0, 0, 0, 585, 0, 0, 0, |
|
0, 585, 584, 585, 585, 585, 585, 585, 585, 585, |
|
585, 585, 585, 585, 0, 0, 0, 0, 584, 0, |
|
0, 0, 0, 0, 0, 585, 0, 585, 0, 585, |
|
0, 585, 585, 585, 0, 585, 585, 0, 0, 585, |
|
585, 585, 585, 0, 0, 0, 585, 585, 0, 593, |
|
0, 585, 585, 585, 585, 585, 585, 585, 585, 0, |
|
0, 0, 0, 0, 592, 0, 0, 0, 0, 592, |
|
585, 592, 592, 592, 592, 592, 592, 592, 592, 592, |
|
592, 592, 0, 0, 0, 0, 585, 0, 0, 0, |
|
0, 0, 0, 592, 0, 592, 0, 592, 0, 592, |
|
592, 592, 0, 0, 0, 0, 0, 592, 592, 592, |
|
592, 0, 0, 0, 592, 592, 0, 594, 0, 592, |
|
592, 592, 592, 592, 592, 592, 592, 0, 0, 0, |
|
0, 0, 593, 0, 0, 0, 0, 593, 592, 593, |
|
593, 593, 593, 593, 593, 593, 593, 593, 593, 593, |
|
0, 0, 0, 0, 592, 0, 0, 0, 0, 0, |
|
0, 593, 0, 593, 0, 593, 0, 593, 593, 593, |
|
0, 0, 0, 0, 0, 593, 593, 593, 593, 0, |
|
0, 0, 593, 593, 0, 597, 0, 593, 593, 593, |
|
593, 593, 593, 593, 593, 0, 0, 0, 0, 0, |
|
594, 0, 0, 0, 0, 594, 593, 594, 594, 594, |
|
594, 594, 594, 594, 594, 594, 594, 594, 0, 0, |
|
0, 0, 593, 0, 0, 0, 0, 0, 0, 594, |
|
0, 594, 0, 594, 0, 594, 594, 594, 0, 0, |
|
0, 0, 0, 594, 594, 594, 594, 0, 0, 0, |
|
594, 594, 0, 598, 0, 594, 594, 594, 594, 594, |
|
594, 594, 594, 0, 0, 0, 0, 0, 597, 0, |
|
0, 0, 0, 597, 594, 597, 597, 597, 597, 597, |
|
597, 597, 597, 597, 597, 597, 0, 0, 0, 0, |
|
594, 0, 0, 0, 0, 0, 0, 597, 0, 597, |
|
0, 597, 0, 597, 597, 597, 0, 0, 0, 0, |
|
0, 597, 597, 597, 597, 0, 0, 0, 597, 597, |
|
0, 599, 0, 0, 0, 597, 597, 597, 597, 597, |
|
597, 0, 0, 0, 0, 0, 598, 0, 0, 0, |
|
0, 598, 597, 598, 598, 598, 598, 598, 598, 598, |
|
598, 598, 598, 598, 0, 0, 0, 0, 597, 0, |
|
0, 0, 0, 0, 0, 598, 0, 598, 0, 598, |
|
0, 598, 598, 598, 0, 0, 0, 0, 0, 598, |
|
598, 598, 598, 0, 0, 0, 598, 598, 0, 600, |
|
0, 0, 0, 598, 598, 598, 598, 598, 598, 0, |
|
0, 0, 0, 0, 599, 0, 0, 0, 0, 599, |
|
598, 599, 599, 599, 599, 599, 599, 599, 599, 599, |
|
599, 599, 0, 0, 0, 0, 598, 0, 0, 0, |
|
0, 0, 0, 599, 0, 599, 0, 599, 0, 599, |
|
599, 599, 0, 0, 0, 0, 0, 599, 599, 599, |
|
599, 0, 0, 0, 599, 599, 0, 601, 0, 0, |
|
0, 599, 599, 599, 599, 599, 599, 0, 0, 0, |
|
0, 0, 600, 0, 0, 0, 0, 600, 599, 600, |
|
600, 600, 600, 600, 600, 600, 600, 600, 600, 600, |
|
0, 0, 0, 0, 599, 0, 0, 0, 0, 0, |
|
0, 600, 0, 600, 0, 600, 0, 600, 600, 600, |
|
0, 0, 0, 0, 0, 600, 600, 600, 600, 0, |
|
0, 0, 600, 600, 0, 606, 0, 0, 0, 600, |
|
600, 600, 600, 600, 600, 0, 0, 0, 0, 0, |
|
601, 0, 0, 0, 0, 601, 600, 601, 601, 601, |
|
601, 601, 601, 601, 601, 601, 601, 601, 0, 0, |
|
0, 0, 600, 0, 0, 0, 0, 0, 0, 601, |
|
0, 601, 0, 601, 0, 601, 601, 601, 0, 0, |
|
0, 0, 0, 601, 601, 601, 601, 0, 0, 0, |
|
601, 601, 0, 607, 0, 0, 0, 601, 601, 601, |
|
601, 601, 601, 0, 0, 0, 0, 0, 606, 0, |
|
0, 0, 0, 606, 601, 606, 606, 606, 606, 606, |
|
606, 606, 606, 606, 606, 606, 0, 0, 0, 0, |
|
601, 0, 0, 0, 0, 0, 0, 606, 0, 606, |
|
0, 606, 0, 606, 606, 606, 0, 0, 0, 0, |
|
0, 0, 0, 606, 606, 0, 0, 0, 606, 606, |
|
0, 608, 0, 0, 0, 0, 0, 606, 606, 606, |
|
606, 0, 0, 0, 0, 0, 607, 0, 0, 0, |
|
0, 607, 606, 607, 607, 607, 607, 607, 607, 607, |
|
607, 607, 607, 607, 0, 0, 0, 0, 606, 0, |
|
0, 0, 0, 0, 0, 607, 0, 607, 0, 607, |
|
0, 607, 607, 607, 0, 0, 0, 0, 0, 0, |
|
0, 607, 607, 0, 0, 0, 607, 607, 0, 611, |
|
0, 0, 0, 0, 0, 607, 607, 607, 607, 0, |
|
0, 0, 0, 0, 608, 0, 0, 0, 0, 608, |
|
607, 608, 608, 608, 608, 608, 608, 608, 608, 608, |
|
608, 608, 0, 0, 0, 0, 607, 0, 0, 0, |
|
0, 0, 0, 608, 0, 608, 0, 608, 0, 608, |
|
608, 608, 0, 0, 0, 0, 0, 0, 0, 608, |
|
608, 0, 0, 0, 608, 608, 0, 612, 0, 0, |
|
0, 0, 0, 608, 608, 608, 608, 0, 0, 0, |
|
0, 0, 611, 0, 0, 0, 0, 611, 608, 611, |
|
611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
|
0, 0, 0, 0, 608, 0, 0, 0, 0, 0, |
|
0, 611, 0, 611, 0, 611, 0, 611, 611, 611, |
|
0, 0, 0, 0, 0, 0, 0, 611, 611, 0, |
|
0, 0, 611, 611, 0, 614, 0, 0, 0, 0, |
|
0, 0, 0, 611, 611, 0, 0, 0, 0, 0, |
|
612, 0, 0, 0, 0, 612, 611, 612, 612, 612, |
|
612, 612, 612, 612, 612, 612, 612, 612, 0, 0, |
|
0, 0, 611, 0, 0, 0, 0, 0, 0, 612, |
|
0, 612, 0, 612, 0, 612, 612, 612, 0, 0, |
|
0, 0, 0, 0, 0, 612, 612, 0, 0, 0, |
|
612, 612, 0, 615, 0, 0, 0, 0, 0, 0, |
|
0, 612, 612, 0, 0, 0, 0, 0, 614, 0, |
|
0, 0, 0, 614, 612, 614, 614, 614, 614, 614, |
|
614, 614, 614, 614, 614, 614, 0, 0, 0, 0, |
|
612, 0, 0, 0, 0, 0, 0, 614, 0, 614, |
|
0, 614, 0, 614, 614, 614, 0, 0, 0, 0, |
|
0, 0, 0, 0, 614, 0, 0, 0, 614, 614, |
|
0, 617, 0, 0, 0, 0, 0, 0, 0, 614, |
|
614, 0, 0, 0, 0, 0, 615, 0, 0, 0, |
|
0, 615, 614, 615, 615, 615, 615, 615, 615, 615, |
|
615, 615, 615, 615, 0, 0, 0, 0, 614, 0, |
|
0, 0, 0, 0, 0, 615, 0, 615, 0, 615, |
|
0, 615, 615, 615, 0, 0, 0, 0, 0, 0, |
|
0, 0, 615, 0, 0, 0, 615, 615, 0, 618, |
|
0, 0, 0, 0, 0, 0, 0, 615, 615, 0, |
|
0, 0, 0, 0, 617, 0, 0, 0, 0, 617, |
|
615, 617, 617, 617, 617, 617, 617, 617, 617, 617, |
|
617, 617, 0, 0, 0, 0, 615, 0, 0, 0, |
|
0, 0, 0, 617, 0, 617, 0, 617, 0, 617, |
|
617, 617, 0, 0, 0, 0, 0, 0, 0, 0, |
|
617, 0, 0, 0, 0, 617, 0, 621, 0, 0, |
|
0, 0, 0, 0, 0, 617, 617, 0, 0, 0, |
|
0, 0, 618, 0, 0, 0, 0, 618, 617, 618, |
|
618, 618, 618, 618, 618, 618, 618, 618, 618, 618, |
|
0, 0, 0, 0, 617, 0, 0, 0, 0, 0, |
|
0, 618, 0, 618, 0, 618, 0, 618, 618, 618, |
|
0, 0, 0, 0, 0, 0, 0, 0, 618, 0, |
|
0, 0, 0, 618, 0, 623, 0, 0, 0, 0, |
|
0, 0, 0, 618, 618, 0, 0, 0, 0, 0, |
|
621, 0, 0, 0, 0, 621, 618, 621, 621, 621, |
|
621, 621, 621, 621, 621, 621, 621, 621, 0, 0, |
|
0, 0, 618, 0, 0, 0, 0, 0, 0, 621, |
|
0, 621, 0, 621, 0, 621, 621, 621, 0, 0, |
|
0, 624, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 621, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 621, 621, 0, 0, 0, 0, 0, 623, 0, |
|
0, 0, 0, 623, 621, 623, 623, 623, 623, 623, |
|
623, 623, 623, 623, 623, 623, 0, 0, 0, 0, |
|
621, 0, 0, 0, 0, 0, 0, 623, 0, 623, |
|
0, 623, 0, 623, 623, 623, 0, 0, 0, 0, |
|
343, 0, 0, 0, 792, 0, 0, 0, 0, 623, |
|
0, 0, 0, 0, 624, 0, 0, 0, 0, 624, |
|
623, 624, 624, 624, 624, 624, 624, 624, 624, 624, |
|
624, 624, 623, 0, 0, 0, 343, 0, 0, 0, |
|
0, 0, 0, 624, 0, 624, 0, 624, 623, 624, |
|
624, 624, 792, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 624, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 624, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 624, 0, |
|
0, 0, 0, 0, 0, 343, 0, 0, 0, 0, |
|
0, 343, 0, 0, 624, 0, 343, 343, 0, 343, |
|
0, 343, 0, 792, 343, 0, 343, 343, 0, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 0, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 0, 0, 55, 0, 343, 0, 343, 0, |
|
0, 343, 56, 24, 57, 25, 0, 343, 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, 266, 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, 571, 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, 1002, 0, 0, 0, 105, |
|
572, 107, 108, 1002, 1002, 1002, 1002, 0, 0, 1002, |
|
1002, 0, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 0, |
|
0, 0, 0, 0, 1002, 0, 1002, 1002, 1002, 1002, |
|
1002, 1002, 0, 0, 1002, 0, 0, 0, 1002, 1002, |
|
0, 1002, 1002, 1002, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1002, 0, 1002, 0, 1002, 1002, 0, |
|
0, 1002, 0, 1002, 1002, 1002, 1002, 1002, 1002, 1002, |
|
1002, 1002, 1002, 1002, 1002, 0, 1002, 0, 0, 1002, |
|
1002, 0, 0, 1002, 1002, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1002, 1002, |
|
1002, 1002, 1002, 0, 0, 0, 1002, 0, 0, 0, |
|
1002, 0, 0, 0, 0, 1002, 1002, 1002, 1002, 1002, |
|
0, 0, 0, 1002, 0, 1002, 0, 0, 0, 0, |
|
0, 1002, 1002, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 843, 0, 0, 0, 1002, 1002, 1002, 1002, |
|
843, 843, 843, 843, 0, 0, 843, 843, 0, 843, |
|
843, 843, 843, 843, 843, 843, 0, 0, 0, 0, |
|
0, 843, 0, 843, 843, 843, 843, 843, 843, 0, |
|
0, 843, 0, 0, 0, 843, 843, 0, 843, 843, |
|
843, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
843, 0, 843, 0, 843, 843, 0, 0, 843, 0, |
|
843, 843, 843, 843, 843, 843, 843, 843, 843, 843, |
|
843, 843, 0, 843, 0, 0, 843, 843, 0, 0, |
|
843, 843, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 843, 843, 843, 843, 843, |
|
0, 0, 0, 843, 0, 0, 0, 843, 0, 0, |
|
0, 0, 843, 843, 843, 843, 843, 0, 0, 0, |
|
843, 0, 843, 0, 0, 0, 0, 0, 843, 843, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 612, |
|
0, 0, 0, 843, 843, 843, 843, 56, 24, 0, |
|
25, 0, 0, 26, 254, 0, 950, 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, 613, |
|
0, 0, 0, 0, 0, 32, 614, 0, 0, 36, |
|
33, 37, 74, 0, 34, 38, 0, 0, 76, 0, |
|
78, 0, 80, 39, 40, 255, 36, 41, 37, 0, |
|
0, 0, 38, 0, 615, 0, 0, 87, 88, 0, |
|
39, 40, 0, 0, 41, 0, 0, 324, 0, 0, |
|
0, 0, 89, 90, 91, 92, 93, 0, 0, 0, |
|
0, 0, 0, 0, 95, 0, 0, 616, 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, 783, 0, 0, 0, |
|
105, 106, 107, 108, 56, 24, 0, 25, 0, 0, |
|
26, 254, 0, 1098, 0, 27, 61, 62, 368, 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, 255, 36, 41, 37, 0, 0, 0, 38, |
|
0, 86, 0, 0, 87, 88, 0, 39, 40, 0, |
|
0, 41, 0, 0, 324, 0, 0, 0, 0, 89, |
|
90, 91, 92, 302, 0, 0, 0, 531, 784, 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, 976, 0, 0, 0, 105, 303, 107, |
|
108, 56, 24, 0, 25, 0, 0, 26, 254, 0, |
|
0, 0, 27, 61, 62, 368, 28, 0, 0, 179, |
|
0, 179, 64, 0, 179, 30, 0, 0, 0, 179, |
|
0, 0, 32, 179, 0, 0, 0, 33, 0, 71, |
|
72, 34, 179, 613, 0, 0, 0, 0, 0, 179, |
|
614, 0, 0, 36, 179, 37, 74, 0, 179, 38, |
|
0, 0, 76, 0, 78, 0, 80, 39, 40, 255, |
|
179, 41, 179, 0, 0, 0, 179, 0, 615, 0, |
|
0, 87, 88, 0, 179, 179, 0, 0, 179, 0, |
|
0, 179, 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, 1026, 0, 0, 103, |
|
104, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
981, 0, 0, 0, 105, 106, 107, 108, 56, 24, |
|
0, 25, 0, 0, 26, 254, 0, 0, 0, 27, |
|
61, 62, 179, 28, 0, 0, 179, 0, 179, 64, |
|
0, 179, 30, 0, 0, 0, 179, 0, 0, 32, |
|
179, 0, 0, 0, 33, 0, 71, 72, 34, 179, |
|
0, 0, 0, 0, 0, 0, 179, 0, 0, 0, |
|
36, 179, 37, 74, 982, 179, 38, 0, 0, 76, |
|
0, 78, 0, 80, 39, 40, 255, 179, 41, 179, |
|
0, 0, 0, 179, 0, 86, 0, 0, 87, 88, |
|
0, 179, 179, 0, 0, 179, 0, 0, 179, 0, |
|
0, 0, 0, 89, 90, 91, 92, 302, 0, 0, |
|
0, 531, 0, 0, 0, 95, 0, 0, 0, 0, |
|
0, 97, 98, 99, 100, 0, 0, 0, 101, 0, |
|
102, 1026, 0, 0, 0, 0, 103, 104, 0, 0, |
|
0, 0, 0, 0, 56, 24, 0, 25, 0, 0, |
|
26, 254, 0, 0, 0, 27, 61, 62, 0, 28, |
|
0, 105, 303, 107, 108, 64, 0, 0, 30, 0, |
|
0, 0, 0, 0, 0, 32, 0, 0, 0, 179, |
|
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, 255, 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, 768, 0, 0, 0, 769, 1050, 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, 783, 0, 105, 770, 107, |
|
108, 0, 0, 56, 24, 0, 25, 0, 771, 26, |
|
254, 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, 982, |
|
34, 38, 0, 0, 76, 0, 78, 0, 80, 39, |
|
40, 255, 36, 41, 37, 0, 0, 0, 38, 0, |
|
86, 0, 0, 87, 88, 0, 39, 40, 0, 0, |
|
41, 0, 0, 324, 0, 0, 0, 0, 89, 90, |
|
91, 92, 302, 0, 0, 0, 531, 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, 254, 0, 0, 0, |
|
27, 61, 62, 0, 28, 0, 105, 303, 107, 108, |
|
64, 0, 0, 30, 0, 0, 0, 0, 0, 0, |
|
32, 0, 0, 0, 368, 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, 255, 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, 768, 0, |
|
0, 0, 769, 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, |
|
783, 0, 105, 770, 107, 108, 0, 0, 56, 24, |
|
0, 25, 0, 771, 26, 254, 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, 255, 36, 41, 37, |
|
0, 0, 0, 38, 0, 86, 0, 0, 87, 88, |
|
0, 39, 40, 0, 0, 41, 0, 0, 533, 0, |
|
0, 0, 0, 89, 90, 91, 92, 302, 0, 0, |
|
0, 531, 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, 301, 0, 0, |
|
0, 105, 303, 107, 108, 56, 24, 0, 25, 0, |
|
0, 26, 254, 0, 0, 0, 27, 61, 62, 368, |
|
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, 255, 36, 41, 37, 0, 0, 0, |
|
38, 0, 86, 0, 0, 87, 88, 0, 39, 40, |
|
0, 0, 41, 0, 0, 588, 0, 0, 0, 0, |
|
89, 90, 91, 92, 302, 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, 310, 0, 0, 0, 105, 303, |
|
107, 108, 56, 24, 0, 25, 0, 0, 26, 254, |
|
0, 0, 0, 27, 61, 62, 368, 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, |
|
255, 36, 41, 37, 0, 0, 0, 38, 0, 86, |
|
0, 0, 87, 88, 0, 39, 40, 0, 0, 41, |
|
0, 0, 799, 0, 0, 0, 0, 89, 90, 91, |
|
92, 302, 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, 610, 0, 0, 0, 105, 303, 107, 108, 56, |
|
24, 0, 25, 0, 0, 26, 254, 0, 0, 0, |
|
27, 61, 62, 368, 28, 0, 0, 499, 0, 499, |
|
64, 0, 499, 30, 0, 0, 0, 499, 0, 0, |
|
32, 499, 0, 0, 0, 33, 0, 71, 72, 34, |
|
499, 0, 0, 0, 0, 0, 0, 499, 0, 0, |
|
0, 36, 499, 37, 74, 0, 499, 38, 0, 0, |
|
76, 0, 78, 0, 80, 39, 40, 255, 499, 41, |
|
499, 0, 0, 0, 499, 0, 86, 0, 0, 87, |
|
88, 0, 499, 499, 0, 0, 499, 0, 0, 499, |
|
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, 866, 0, |
|
0, 0, 105, 106, 107, 108, 56, 24, 0, 25, |
|
0, 0, 26, 254, 0, 0, 0, 27, 61, 62, |
|
499, 28, 0, 0, 180, 0, 180, 64, 0, 180, |
|
30, 0, 0, 0, 180, 0, 0, 32, 180, 0, |
|
0, 0, 33, 0, 71, 72, 34, 180, 0, 0, |
|
0, 0, 0, 0, 180, 0, 0, 0, 36, 180, |
|
37, 74, 0, 180, 38, 0, 0, 76, 0, 78, |
|
0, 80, 39, 40, 255, 180, 41, 180, 0, 0, |
|
0, 180, 0, 86, 0, 0, 87, 88, 0, 180, |
|
180, 0, 0, 180, 0, 0, 180, 0, 0, 0, |
|
0, 89, 90, 91, 92, 302, 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, 979, 0, 0, 0, 105, |
|
303, 107, 108, 56, 24, 0, 25, 0, 0, 26, |
|
254, 0, 0, 0, 27, 61, 62, 180, 28, 0, |
|
0, 179, 0, 179, 64, 0, 179, 30, 0, 0, |
|
0, 179, 0, 0, 32, 179, 0, 0, 0, 33, |
|
0, 71, 72, 34, 179, 0, 0, 0, 0, 0, |
|
0, 179, 0, 0, 0, 36, 179, 37, 74, 0, |
|
179, 38, 0, 0, 76, 0, 78, 0, 80, 39, |
|
40, 255, 179, 41, 179, 0, 0, 0, 179, 0, |
|
86, 0, 0, 87, 88, 0, 179, 179, 0, 0, |
|
179, 0, 0, 179, 0, 0, 0, 0, 89, 90, |
|
91, 92, 302, 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, 1235, 0, 0, 0, 105, 303, 107, 108, |
|
56, 24, 0, 25, 0, 0, 26, 254, 0, 0, |
|
0, 27, 61, 62, 179, 28, 0, 0, 189, 0, |
|
189, 64, 0, 189, 30, 0, 0, 0, 189, 0, |
|
0, 32, 189, 0, 0, 0, 33, 0, 71, 72, |
|
34, 189, 0, 0, 0, 0, 0, 0, 189, 0, |
|
0, 0, 36, 189, 37, 74, 0, 189, 38, 0, |
|
0, 76, 0, 78, 0, 80, 39, 40, 255, 189, |
|
41, 189, 0, 0, 0, 189, 0, 86, 0, 0, |
|
87, 88, 0, 189, 189, 0, 0, 189, 0, 0, |
|
189, 0, 0, 0, 0, 89, 90, 91, 92, 302, |
|
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, 340, |
|
0, 0, 0, 105, 303, 107, 108, 56, 24, 0, |
|
25, 0, 0, 26, 254, 0, 0, 0, 27, 61, |
|
62, 189, 28, 0, 0, 0, 0, 0, 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, 255, 0, 41, 0, 0, |
|
0, 0, 0, 0, 0, 0, 341, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 89, 90, 91, 256, 342, 0, 0, 0, |
|
0, 0, 0, 0, 95, 0, 0, 0, 0, 0, |
|
97, 98, 99, 100, 932, 0, 0, 101, 0, 102, |
|
340, 0, 0, 0, 0, 103, 104, 0, 56, 24, |
|
0, 25, 0, 0, 26, 254, 0, 0, 0, 27, |
|
61, 62, 0, 28, 0, 0, 0, 0, 0, 64, |
|
105, 257, 30, 108, 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, 255, 0, 41, 0, |
|
0, 0, 0, 0, 0, 0, 0, 341, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 89, 90, 91, 256, 342, 0, 0, |
|
0, 0, 0, 0, 0, 95, 0, 0, 0, 0, |
|
0, 97, 98, 99, 100, 0, 0, 0, 101, 0, |
|
102, 346, 0, 0, 0, 0, 103, 104, 0, 56, |
|
24, 0, 25, 0, 0, 26, 254, 0, 0, 0, |
|
27, 61, 62, 0, 28, 0, 0, 0, 0, 0, |
|
64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, |
|
0, 0, 0, 0, 0, 0, 95, 0, 0, 0, |
|
0, 0, 97, 98, 99, 100, 0, 0, 0, 101, |
|
0, 102, 348, 0, 0, 0, 0, 103, 104, 0, |
|
56, 24, 0, 25, 0, 0, 26, 254, 0, 0, |
|
0, 27, 61, 62, 0, 28, 0, 0, 0, 0, |
|
0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, |
|
0, 0, 0, 0, 0, 0, 0, 95, 0, 0, |
|
0, 0, 0, 97, 98, 99, 100, 0, 0, 0, |
|
101, 0, 102, 350, 0, 0, 0, 0, 103, 104, |
|
0, 56, 24, 0, 25, 0, 0, 26, 254, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 0, 0, |
|
0, 0, 64, 105, 257, 30, 108, 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, 255, |
|
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, 89, 90, 91, 256, |
|
342, 0, 0, 0, 0, 0, 0, 0, 95, 0, |
|
0, 0, 0, 0, 97, 98, 99, 100, 0, 0, |
|
0, 101, 0, 102, 352, 0, 0, 0, 0, 103, |
|
104, 0, 56, 24, 0, 25, 0, 0, 26, 254, |
|
0, 0, 0, 27, 61, 62, 0, 28, 0, 0, |
|
0, 0, 0, 64, 105, 257, 30, 108, 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, |
|
255, 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, 89, 90, 91, |
|
256, 342, 0, 0, 0, 0, 0, 0, 0, 95, |
|
0, 0, 0, 0, 0, 97, 98, 99, 100, 0, |
|
0, 0, 101, 0, 102, 354, 0, 0, 0, 0, |
|
103, 104, 0, 56, 24, 0, 25, 0, 0, 26, |
|
254, 0, 0, 0, 27, 61, 62, 0, 28, 0, |
|
0, 0, 0, 0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, |
|
91, 256, 342, 0, 0, 0, 0, 0, 0, 0, |
|
95, 0, 0, 0, 0, 0, 97, 98, 99, 100, |
|
0, 0, 0, 101, 0, 102, 356, 0, 0, 0, |
|
0, 103, 104, 0, 56, 24, 0, 25, 0, 0, |
|
26, 254, 0, 0, 0, 27, 61, 62, 0, 28, |
|
0, 0, 0, 0, 0, 64, 105, 257, 30, 108, |
|
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, 255, 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, 89, |
|
90, 91, 256, 342, 0, 0, 0, 0, 0, 0, |
|
0, 95, 0, 0, 0, 0, 0, 97, 98, 99, |
|
100, 0, 0, 0, 101, 0, 102, 358, 0, 0, |
|
0, 0, 103, 104, 0, 56, 24, 0, 25, 0, |
|
0, 26, 254, 0, 0, 0, 27, 61, 62, 0, |
|
28, 0, 0, 0, 0, 0, 64, 105, 257, 30, |
|
108, 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, 255, 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, |
|
89, 90, 91, 256, 342, 0, 0, 0, 0, 0, |
|
0, 0, 95, 0, 0, 0, 0, 0, 97, 98, |
|
99, 100, 0, 0, 0, 101, 0, 102, 360, 0, |
|
0, 0, 0, 103, 104, 0, 56, 24, 0, 25, |
|
0, 0, 26, 254, 0, 0, 0, 27, 61, 62, |
|
0, 28, 0, 0, 0, 0, 0, 64, 105, 257, |
|
30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, 0, 0, |
|
0, 0, 0, 95, 0, 0, 0, 0, 0, 97, |
|
98, 99, 100, 0, 0, 0, 101, 0, 102, 340, |
|
0, 0, 0, 0, 103, 104, 0, 56, 24, 0, |
|
25, 0, 0, 26, 254, 0, 0, 0, 27, 61, |
|
62, 0, 28, 0, 0, 0, 0, 0, 64, 105, |
|
257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, 0, |
|
0, 0, 0, 0, 95, 0, 0, 0, 0, 0, |
|
97, 98, 99, 100, 0, 0, 0, 101, 0, 102, |
|
635, 0, 0, 0, 0, 103, 104, 0, 56, 24, |
|
0, 25, 0, 0, 26, 254, 0, 0, 0, 27, |
|
61, 62, 0, 28, 0, 0, 0, 0, 0, 64, |
|
105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, |
|
0, 0, 0, 0, 0, 95, 0, 0, 0, 0, |
|
0, 97, 98, 99, 100, 0, 0, 0, 101, 0, |
|
102, 637, 0, 0, 0, 0, 103, 104, 0, 56, |
|
24, 0, 25, 0, 0, 26, 254, 0, 0, 0, |
|
27, 61, 62, 0, 28, 0, 0, 0, 0, 0, |
|
64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, |
|
0, 0, 0, 0, 0, 0, 95, 0, 0, 0, |
|
0, 0, 97, 98, 99, 100, 0, 0, 0, 101, |
|
0, 102, 639, 0, 0, 0, 0, 103, 104, 0, |
|
56, 24, 0, 25, 0, 0, 26, 254, 0, 0, |
|
0, 27, 61, 62, 0, 28, 0, 0, 0, 0, |
|
0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, |
|
0, 0, 0, 0, 0, 0, 0, 95, 0, 0, |
|
0, 0, 0, 97, 98, 99, 100, 0, 0, 0, |
|
101, 0, 102, 645, 0, 0, 0, 0, 103, 104, |
|
0, 56, 24, 0, 25, 0, 0, 26, 254, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 0, 0, |
|
0, 0, 64, 105, 257, 30, 108, 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, 255, |
|
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, 89, 90, 91, 256, |
|
342, 0, 0, 0, 0, 0, 0, 0, 95, 0, |
|
0, 0, 0, 0, 97, 98, 99, 100, 0, 0, |
|
0, 101, 0, 102, 647, 0, 0, 0, 0, 103, |
|
104, 0, 56, 24, 0, 25, 0, 0, 26, 254, |
|
0, 0, 0, 27, 61, 62, 0, 28, 0, 0, |
|
0, 0, 0, 64, 105, 257, 30, 108, 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, |
|
255, 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, 89, 90, 91, |
|
256, 342, 0, 0, 0, 0, 0, 0, 0, 95, |
|
0, 0, 0, 0, 0, 97, 98, 99, 100, 0, |
|
0, 0, 101, 0, 102, 649, 0, 0, 0, 0, |
|
103, 104, 0, 56, 24, 0, 25, 0, 0, 26, |
|
254, 0, 0, 0, 27, 61, 62, 0, 28, 0, |
|
0, 0, 0, 0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, |
|
91, 256, 342, 0, 0, 0, 0, 0, 0, 0, |
|
95, 0, 0, 0, 0, 0, 97, 98, 99, 100, |
|
0, 0, 0, 101, 0, 102, 651, 0, 0, 0, |
|
0, 103, 104, 0, 56, 24, 0, 25, 0, 0, |
|
26, 254, 0, 0, 0, 27, 61, 62, 0, 28, |
|
0, 0, 0, 0, 0, 64, 105, 257, 30, 108, |
|
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, 255, 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, 89, |
|
90, 91, 256, 342, 0, 0, 0, 0, 0, 0, |
|
0, 95, 0, 0, 0, 0, 0, 97, 98, 99, |
|
100, 0, 0, 0, 101, 0, 102, 653, 0, 0, |
|
0, 0, 103, 104, 0, 56, 24, 0, 25, 0, |
|
0, 26, 254, 0, 0, 0, 27, 61, 62, 0, |
|
28, 0, 0, 0, 0, 0, 64, 105, 257, 30, |
|
108, 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, 255, 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, |
|
89, 90, 91, 256, 342, 0, 0, 0, 0, 0, |
|
0, 0, 95, 0, 0, 0, 0, 0, 97, 98, |
|
99, 100, 0, 0, 0, 101, 0, 102, 655, 0, |
|
0, 0, 0, 103, 104, 0, 56, 24, 0, 25, |
|
0, 0, 26, 254, 0, 0, 0, 27, 61, 62, |
|
0, 28, 0, 0, 0, 0, 0, 64, 105, 257, |
|
30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, 0, 0, |
|
0, 0, 0, 95, 0, 0, 0, 0, 0, 97, |
|
98, 99, 100, 0, 0, 0, 101, 0, 102, 657, |
|
0, 0, 0, 0, 103, 104, 0, 56, 24, 0, |
|
25, 0, 0, 26, 254, 0, 0, 0, 27, 61, |
|
62, 0, 28, 0, 0, 0, 0, 0, 64, 105, |
|
257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, 0, |
|
0, 0, 0, 0, 95, 0, 0, 0, 0, 0, |
|
97, 98, 99, 100, 0, 0, 0, 101, 0, 102, |
|
659, 0, 0, 0, 0, 103, 104, 0, 56, 24, |
|
0, 25, 0, 0, 26, 254, 0, 0, 0, 27, |
|
61, 62, 0, 28, 0, 0, 0, 0, 0, 64, |
|
105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, |
|
0, 0, 0, 0, 0, 95, 0, 0, 0, 0, |
|
0, 97, 98, 99, 100, 0, 0, 0, 101, 0, |
|
102, 661, 0, 0, 0, 0, 103, 104, 0, 56, |
|
24, 0, 25, 0, 0, 26, 254, 0, 0, 0, |
|
27, 61, 62, 0, 28, 0, 0, 0, 0, 0, |
|
64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, |
|
0, 0, 0, 0, 0, 0, 95, 0, 0, 0, |
|
0, 0, 97, 98, 99, 100, 0, 0, 0, 101, |
|
0, 102, 663, 0, 0, 0, 0, 103, 104, 0, |
|
56, 24, 0, 25, 0, 0, 26, 254, 0, 0, |
|
0, 27, 61, 62, 0, 28, 0, 0, 0, 0, |
|
0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, 91, 256, 342, |
|
0, 0, 0, 0, 0, 0, 0, 95, 0, 0, |
|
0, 0, 0, 97, 98, 99, 100, 0, 0, 0, |
|
101, 0, 102, 665, 0, 0, 0, 0, 103, 104, |
|
0, 56, 24, 0, 25, 0, 0, 26, 254, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 0, 0, |
|
0, 0, 64, 105, 257, 30, 108, 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, 255, |
|
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, 89, 90, 91, 256, |
|
342, 0, 0, 0, 0, 0, 0, 0, 95, 0, |
|
0, 0, 0, 0, 97, 98, 99, 100, 0, 0, |
|
0, 101, 0, 102, 667, 0, 0, 0, 0, 103, |
|
104, 0, 56, 24, 0, 25, 0, 0, 26, 254, |
|
0, 0, 0, 27, 61, 62, 0, 28, 0, 0, |
|
0, 0, 0, 64, 105, 257, 30, 108, 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, |
|
255, 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, 89, 90, 91, |
|
256, 342, 0, 0, 0, 0, 0, 0, 0, 95, |
|
0, 0, 0, 0, 0, 97, 98, 99, 100, 0, |
|
0, 0, 101, 0, 102, 669, 0, 0, 0, 0, |
|
103, 104, 0, 56, 24, 0, 25, 0, 0, 26, |
|
254, 0, 0, 0, 27, 61, 62, 0, 28, 0, |
|
0, 0, 0, 0, 64, 105, 257, 30, 108, 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, 255, 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, 89, 90, |
|
91, 256, 342, 0, 0, 0, 0, 0, 0, 0, |
|
95, 0, 0, 0, 0, 0, 97, 98, 99, 100, |
|
0, 0, 0, 101, 0, 102, 671, 0, 0, 0, |
|
0, 103, 104, 0, 56, 24, 0, 25, 0, 0, |
|
26, 254, 0, 0, 0, 27, 61, 62, 0, 28, |
|
0, 0, 0, 0, 0, 64, 105, 257, 30, 108, |
|
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, 255, 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, 89, |
|
90, 91, 256, 342, 0, 0, 0, 0, 0, 0, |
|
0, 95, 0, 0, 0, 0, 0, 97, 98, 99, |
|
100, 0, 0, 0, 101, 0, 102, 673, 0, 0, |
|
0, 0, 103, 104, 0, 56, 24, 0, 25, 0, |
|
0, 26, 254, 0, 0, 0, 27, 61, 62, 0, |
|
28, 0, 0, 0, 0, 0, 64, 105, 257, 30, |
|
108, 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, 255, 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, |
|
89, 90, 91, 256, 342, 0, 0, 0, 0, 0, |
|
0, 0, 95, 0, 0, 0, 0, 0, 97, 98, |
|
99, 100, 0, 0, 0, 101, 0, 102, 839, 0, |
|
0, 0, 0, 103, 104, 0, 56, 24, 0, 25, |
|
0, 0, 26, 254, 0, 0, 0, 27, 61, 62, |
|
0, 28, 0, 0, 0, 0, 0, 64, 105, 257, |
|
30, 108, 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, 255, 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, 89, 90, 91, 256, 342, 0, 0, 0, 0, |
|
0, 0, 0, 95, 0, 0, 0, 0, 0, 97, |
|
98, 99, 100, 0, 0, 0, 101, 0, 102, 513, |
|
0, 0, 0, 0, 103, 104, 343, 56, 24, 0, |
|
25, 0, 0, 26, 254, 0, 0, 0, 27, 61, |
|
62, 0, 28, 0, 0, 0, 0, 0, 64, 105, |
|
257, 30, 108, 0, 0, 0, 0, 0, 32, 0, |
|
0, 0, 343, 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, 255, 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, 89, 90, 91, 256, 291, 0, 0, 0, |
|
0, 0, 0, 0, 95, 343, 343, 343, 343, 792, |
|
0, 0, 343, 343, 0, 0, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 0, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 343, 343, |
|
343, 343, 343, 343, 343, 343, 343, 343, 0, 0, |
|
105, 514, 0, 0, 343, 0, 52, 343, 52, 0, |
|
52, 0, 52, 0, 0, 52, 0, 52, 52, 0, |
|
52, 0, 52, 0, 52, 0, 52, 52, 52, 52, |
|
0, 0, 52, 52, 0, 0, 0, 0, 52, 52, |
|
52, 52, 52, 0, 0, 52, 0, 52, 0, 52, |
|
0, 52, 52, 0, 52, 52, 52, 52, 0, 0, |
|
52, 52, 52, 52, 0, 0, 52, 52, 52, 0, |
|
0, 0, 0, 0, 0, 52, 52, 0, 52, 52, |
|
0, 52, 52, 52, 0, 0, 0, 52, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 52, 0, 52, |
|
52, 51, 0, 0, 0, 51, 0, 51, 0, 0, |
|
51, 0, 51, 51, 0, 51, 0, 51, 0, 51, |
|
0, 51, 51, 51, 51, 0, 0, 51, 51, 0, |
|
0, 0, 0, 51, 0, 51, 51, 51, 0, 0, |
|
51, 0, 51, 0, 51, 0, 0, 51, 0, 51, |
|
51, 51, 51, 52, 0, 0, 51, 51, 51, 0, |
|
0, 51, 51, 51, 0, 0, 0, 0, 0, 0, |
|
51, 51, 0, 51, 51, 0, 51, 51, 51, 0, |
|
0, 0, 51, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
51, 0, 51, 0, 51, 0, 51, 0, 84, 51, |
|
0, 51, 51, 0, 51, 0, 51, 51, 51, 0, |
|
51, 51, 51, 51, 0, 0, 51, 51, 0, 0, |
|
0, 0, 51, 0, 51, 51, 51, 0, 0, 51, |
|
0, 51, 0, 51, 0, 0, 51, 0, 51, 51, |
|
51, 51, 0, 0, 0, 51, 51, 51, 51, 0, |
|
51, 51, 51, 0, 0, 0, 0, 0, 0, 51, |
|
51, 0, 51, 51, 0, 51, 51, 51, 0, 0, |
|
0, 51, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 52, |
|
0, 51, 0, 52, 0, 52, 0, 85, 52, 0, |
|
52, 52, 0, 52, 0, 52, 51, 52, 0, 52, |
|
52, 52, 52, 0, 0, 52, 52, 0, 0, 0, |
|
0, 52, 0, 52, 52, 52, 0, 0, 52, 0, |
|
52, 0, 52, 0, 0, 52, 0, 52, 52, 52, |
|
52, 0, 0, 0, 52, 52, 52, 51, 0, 52, |
|
52, 52, 0, 0, 0, 0, 0, 0, 52, 52, |
|
0, 52, 52, 0, 52, 52, 52, 0, 0, 0, |
|
52, 0, 0, 0, 0, 51, 0, 0, 0, 51, |
|
0, 51, 0, 0, 51, 0, 51, 51, 0, 51, |
|
52, 51, 0, 51, 0, 51, 51, 51, 51, 0, |
|
0, 51, 51, 0, 0, 52, 0, 51, 0, 51, |
|
51, 51, 0, 0, 51, 0, 51, 0, 51, 0, |
|
0, 51, 0, 51, 51, 51, 51, 0, 0, 0, |
|
51, 51, 51, 0, 0, 51, 51, 51, 0, 0, |
|
0, 0, 0, 0, 51, 51, 52, 51, 51, 0, |
|
51, 51, 51, 0, 0, 0, 51, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 51, |
|
0, 0, 0, 51, 0, 51, 51, 0, 51, 0, |
|
51, 51, 219, 51, 0, 51, 0, 51, 0, 51, |
|
51, 51, 51, 0, 0, 51, 51, 0, 0, 0, |
|
0, 51, 0, 51, 51, 51, 0, 0, 51, 0, |
|
51, 343, 51, 0, 0, 51, 0, 51, 51, 51, |
|
51, 0, 0, 0, 51, 51, 51, 0, 0, 51, |
|
51, 51, 51, 0, 343, 0, 0, 0, 51, 51, |
|
0, 51, 51, 465, 51, 51, 51, 343, 0, 0, |
|
51, 0, 343, 0, 0, 343, 0, 343, 0, 343, |
|
343, 343, 343, 0, 0, 0, 466, 343, 0, 0, |
|
51, 343, 0, 0, 0, 343, 220, 0, 0, 467, |
|
0, 364, 0, 343, 469, 0, 343, 0, 343, 470, |
|
0, 471, 472, 473, 474, 0, 0, 0, 0, 475, |
|
0, 0, 0, 476, 364, 0, 0, 343, 0, 0, |
|
0, 465, 343, 0, 0, 477, 0, 364, 478, 343, |
|
479, 270, 364, 343, 0, 236, 51, 364, 0, 364, |
|
364, 364, 364, 0, 466, 0, 343, 364, 0, 0, |
|
0, 364, 0, 0, 480, 364, 0, 467, 0, 0, |
|
0, 0, 469, 364, 0, 0, 364, 470, 364, 471, |
|
472, 473, 474, 0, 0, 0, 0, 475, 343, 0, |
|
0, 476, 0, 0, 0, 1376, 0, 0, 56, 24, |
|
0, 25, 364, 477, 26, 254, 478, 0, 479, 27, |
|
61, 62, 0, 28, 0, 0, 0, 0, 0, 64, |
|
1394, 0, 30, 0, 0, 0, 0, 0, 0, 32, |
|
0, 0, 480, 0, 33, 0, 71, 72, 34, 0, |
|
613, 0, 0, 0, 0, 0, 0, 614, 0, 0, |
|
36, 0, 37, 74, 0, 0, 38, 0, 364, 76, |
|
0, 78, 0, 80, 39, 40, 255, 0, 41, 0, |
|
0, 0, 0, 0, 0, 615, 0, 0, 87, 88, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1377, 0, |
|
0, 0, 0, 89, 90, 91, 92, 93, 0, 0, |
|
0, 0, 0, 0, 0, 95, 974, 0, 616, 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, 254, 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, 613, 0, 0, 0, |
|
0, 0, 0, 614, 0, 0, 36, 0, 37, 74, |
|
0, 0, 38, 0, 0, 76, 0, 78, 0, 80, |
|
39, 40, 255, 0, 41, 0, 0, 0, 0, 0, |
|
0, 615, 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, 616, 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, 254, 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, 255, 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, 302, |
|
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, 254, 0, 0, 0, 27, 61, 62, |
|
0, 28, 0, 105, 303, 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, 255, 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, 302, 0, 0, 0, 0, |
|
933, 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, 254, |
|
0, 0, 0, 27, 61, 62, 0, 28, 0, 105, |
|
303, 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, |
|
255, 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, 302, 0, 0, 0, 531, 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, 254, 0, 0, 0, 27, |
|
61, 62, 0, 28, 0, 105, 303, 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, 255, 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, 302, 0, 0, |
|
0, 525, 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, 254, 0, 0, 0, 27, 61, 62, 0, 28, |
|
0, 105, 303, 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, 255, 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, 302, 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, 254, 0, 0, |
|
0, 27, 61, 62, 0, 28, 0, 105, 303, 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, 255, 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, 254, 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, 255, 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, 651, 651, 0, 651, 0, 0, 651, 651, |
|
0, 0, 0, 651, 651, 651, 0, 651, 0, 105, |
|
1090, 107, 108, 651, 0, 0, 651, 0, 0, 0, |
|
0, 0, 0, 651, 0, 0, 0, 0, 651, 0, |
|
651, 651, 651, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 651, 0, 651, 651, 0, 0, |
|
651, 0, 0, 651, 0, 651, 0, 651, 651, 651, |
|
651, 0, 651, 0, 0, 0, 0, 0, 0, 651, |
|
0, 0, 651, 651, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 651, 651, 651, |
|
651, 651, 0, 0, 0, 0, 0, 0, 0, 651, |
|
0, 0, 0, 0, 0, 651, 651, 651, 651, 0, |
|
0, 0, 651, 0, 651, 0, 0, 0, 0, 0, |
|
651, 651, 0, 0, 0, 0, 0, 0, 81, 81, |
|
0, 81, 0, 0, 81, 81, 0, 0, 0, 81, |
|
81, 81, 0, 81, 0, 651, 651, 651, 651, 81, |
|
0, 0, 81, 0, 0, 0, 0, 0, 0, 81, |
|
0, 0, 0, 0, 81, 0, 81, 81, 81, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
81, 0, 81, 81, 0, 0, 81, 0, 0, 81, |
|
0, 81, 0, 81, 81, 81, 81, 0, 81, 0, |
|
0, 0, 0, 0, 0, 81, 0, 0, 81, 81, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 81, 81, 81, 81, 81, 0, 0, |
|
0, 0, 0, 0, 0, 81, 0, 0, 0, 0, |
|
0, 81, 81, 81, 81, 0, 0, 0, 81, 0, |
|
81, 0, 0, 0, 0, 0, 81, 81, 0, 0, |
|
0, 0, 0, 0, 140, 140, 0, 140, 0, 0, |
|
140, 140, 0, 0, 0, 140, 140, 140, 0, 140, |
|
0, 81, 81, 81, 81, 140, 0, 0, 140, 0, |
|
0, 0, 0, 0, 0, 140, 0, 0, 0, 0, |
|
140, 0, 140, 140, 140, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 140, 0, 140, 140, |
|
0, 0, 140, 0, 0, 140, 0, 140, 0, 140, |
|
140, 140, 140, 0, 140, 0, 0, 0, 0, 0, |
|
0, 140, 0, 0, 140, 140, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 140, |
|
140, 140, 140, 140, 0, 0, 0, 0, 0, 0, |
|
0, 140, 0, 0, 0, 0, 0, 140, 140, 140, |
|
140, 0, 0, 0, 140, 0, 140, 0, 0, 0, |
|
0, 0, 140, 140, 0, 0, 0, 0, 0, 0, |
|
56, 24, 0, 25, 0, 0, 26, 254, 0, 0, |
|
0, 27, 61, 62, 0, 28, 0, 140, 140, 140, |
|
140, 64, 0, 0, 30, 0, 0, 0, 0, 0, |
|
0, 32, 0, 31, 0, 0, 33, 0, 71, 72, |
|
34, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 36, 0, 37, 74, 31, 0, 38, 0, |
|
0, 76, 0, 78, 0, 80, 39, 40, 255, 31, |
|
41, 0, 0, 0, 31, 0, 0, 0, 0, 31, |
|
0, 31, 31, 31, 31, 0, 0, 31, 0, 31, |
|
0, 0, 0, 31, 0, 89, 90, 91, 256, 342, |
|
0, 0, 0, 0, 0, 31, 0, 95, 31, 0, |
|
31, 0, 0, 97, 98, 99, 100, 0, 0, 0, |
|
101, 0, 102, 0, 0, 0, 0, 0, 103, 104, |
|
0, 0, 0, 0, 31, 0, 0, 0, 0, 0, |
|
31, 31, 0, 0, 0, 0, 0, 0, 688, 0, |
|
688, 0, 688, 105, 257, 688, 108, 688, 688, 0, |
|
688, 0, 688, 0, 688, 0, 688, 688, 688, 0, |
|
0, 0, 688, 688, 0, 0, 0, 0, 688, 0, |
|
688, 688, 0, 0, 0, 688, 0, 0, 0, 688, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
688, 688, 0, 688, 0, 0, 0, 688, 688, 0, |
|
0, 0, 0, 0, 0, 688, 688, 56, 24, 688, |
|
25, 0, 688, 26, 254, 0, 0, 688, 27, 61, |
|
62, 0, 28, 0, 0, 0, 0, 0, 64, 0, |
|
0, 30, 0, 0, 0, 0, 0, 0, 32, 688, |
|
688, 0, 0, 33, 0, 71, 72, 34, 0, 0, |
|
0, 0, 688, 0, 0, 0, 0, 0, 0, 36, |
|
0, 37, 74, 0, 0, 38, 0, 0, 76, 0, |
|
78, 0, 80, 39, 40, 255, 0, 41, 0, 0, |
|
84, 0, 0, 0, 0, 0, 0, 24, 0, 25, |
|
0, 0, 26, 688, 1283, 0, 0, 27, 0, 0, |
|
0, 28, 89, 90, 91, 256, 0, 0, 0, 0, |
|
30, 687, 0, 687, 95, 0, 687, 32, 687, 687, |
|
0, 687, 33, 687, 1284, 687, 34, 687, 687, 687, |
|
0, 0, 0, 687, 687, 0, 0, 0, 36, 687, |
|
37, 687, 687, 0, 38, 1285, 687, 0, 0, 0, |
|
687, 0, 39, 40, 0, 0, 41, 0, 0, 324, |
|
105, 257, 687, 0, 687, 0, 0, 0, 687, 687, |
|
0, 0, 0, 0, 0, 0, 687, 687, 0, 687, |
|
687, 687, 0, 687, 687, 0, 687, 687, 687, 687, |
|
0, 687, 0, 687, 0, 687, 687, 687, 0, 0, |
|
0, 687, 687, 0, 0, 0, 0, 687, 0, 687, |
|
687, 0, 0, 0, 687, 0, 0, 0, 687, 0, |
|
0, 0, 0, 687, 0, 0, 0, 0, 0, 0, |
|
687, 0, 687, 0, 0, 0, 687, 687, 0, 0, |
|
368, 0, 0, 0, 687, 687, 0, 0, 687, 0, |
|
0, 687, 0, 24, 0, 25, 687, 0, 26, 0, |
|
0, 1345, 0, 27, 687, 725, 0, 28, 0, 726, |
|
1346, 1347, 0, 0, 0, 1348, 30, 0, 0, 0, |
|
0, 1349, 0, 32, 0, 24, 0, 25, 33, 0, |
|
26, 0, 34, 1345, 0, 27, 0, 725, 0, 28, |
|
0, 726, 1346, 1347, 36, 0, 37, 1348, 30, 0, |
|
38, 0, 0, 1349, 0, 32, 0, 0, 39, 40, |
|
33, 0, 41, 0, 34, 1350, 0, 0, 0, 51, |
|
1351, 51, 687, 0, 51, 0, 36, 0, 37, 51, |
|
0, 0, 38, 51, 0, 0, 0, 0, 0, 0, |
|
39, 40, 51, 0, 41, 0, 0, 1350, 0, 51, |
|
0, 51, 1351, 51, 51, 1352, 51, 0, 51, 0, |
|
51, 51, 51, 0, 0, 51, 0, 51, 0, 0, |
|
51, 0, 51, 0, 51, 0, 51, 0, 0, 51, |
|
0, 51, 0, 0, 51, 51, 51, 0, 51, 0, |
|
51, 51, 51, 0, 51, 24, 1353, 25, 0, 51, |
|
26, 0, 51, 0, 51, 27, 0, 0, 51, 28, |
|
0, 51, 0, 0, 0, 0, 51, 51, 30, 0, |
|
51, 0, 0, 51, 0, 32, 159, 0, 1353, 0, |
|
33, 0, 0, 0, 34, 0, 585, 0, 0, 0, |
|
0, 0, 0, 586, 0, 0, 36, 0, 37, 0, |
|
0, 0, 38, 0, 0, 587, 159, 0, 0, 0, |
|
39, 40, 0, 0, 41, 0, 52, 588, 52, 0, |
|
0, 52, 51, 0, 0, 0, 52, 0, 0, 0, |
|
52, 0, 0, 0, 0, 0, 0, 0, 0, 52, |
|
0, 0, 0, 589, 0, 0, 52, 0, 51, 0, |
|
51, 52, 0, 51, 51, 52, 0, 52, 51, 52, |
|
0, 0, 51, 0, 52, 0, 0, 52, 0, 52, |
|
0, 51, 0, 52, 0, 0, 52, 0, 51, 0, |
|
0, 52, 52, 51, 0, 52, 0, 51, 52, 51, |
|
0, 51, 0, 0, 0, 0, 51, 0, 590, 51, |
|
0, 51, 0, 0, 0, 51, 0, 0, 51, 0, |
|
0, 0, 0, 51, 51, 0, 0, 51, 0, 24, |
|
51, 25, 0, 0, 26, 0, 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, 52, |
|
36, 0, 37, 33, 0, 0, 38, 34, 0, 0, |
|
0, 0, 37, 0, 39, 40, 0, 0, 41, 36, |
|
0, 37, 0, 37, 0, 38, 0, 0, 37, 0, |
|
0, 51, 37, 39, 40, 37, 0, 41, 0, 0, |
|
324, 0, 0, 0, 0, 0, 0, 37, 37, 0, |
|
0, 0, 37, 37, 0, 0, 0, 0, 37, 0, |
|
37, 37, 37, 37, 0, 0, 291, 0, 37, 0, |
|
0, 0, 37, 0, 37, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 37, 0, 37, 37, 35, 37, |
|
0, 0, 0, 37, 0, 0, 0, 0, 0, 35, |
|
0, 0, 42, 0, 35, 0, 0, 0, 35, 0, |
|
0, 35, 0, 37, 0, 0, 0, 0, 0, 37, |
|
37, 325, 0, 35, 35, 0, 0, 0, 35, 35, |
|
31, 0, 31, 0, 35, 0, 35, 35, 35, 35, |
|
0, 0, 0, 0, 35, 0, 0, 0, 35, 0, |
|
35, 0, 0, 31, 0, 0, 0, 0, 0, 0, |
|
35, 0, 0, 35, 0, 35, 31, 0, 0, 35, |
|
0, 31, 0, 0, 0, 0, 31, 0, 31, 31, |
|
31, 31, 0, 0, 0, 0, 31, 0, 0, 35, |
|
31, 0, 0, 51, 0, 35, 35, 0, 0, 0, |
|
0, 0, 31, 0, 51, 31, 0, 31, 0, 51, |
|
0, 0, 0, 51, 0, 0, 51, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 51, 51, |
|
0, 31, 0, 51, 51, 0, 51, 31, 31, 51, |
|
0, 51, 51, 51, 51, 0, 0, 51, 0, 51, |
|
0, 0, 51, 51, 0, 51, 51, 0, 0, 51, |
|
0, 0, 0, 0, 0, 51, 0, 0, 51, 0, |
|
51, 51, 51, 0, 51, 0, 51, 51, 51, 0, |
|
0, 0, 51, 0, 51, 51, 51, 51, 0, 0, |
|
0, 0, 51, 0, 51, 0, 51, 0, 51, 0, |
|
39, 51, 0, 0, 0, 0, 0, 0, 51, 0, |
|
0, 51, 0, 51, 51, 0, 51, 51, 0, 51, |
|
0, 0, 0, 0, 51, 0, 51, 51, 51, 51, |
|
0, 0, 0, 0, 51, 0, 0, 51, 51, 51, |
|
0, 0, 0, 40, 0, 0, 0, 0, 0, 0, |
|
51, 0, 51, 51, 51, 51, 0, 51, 0, 0, |
|
0, 0, 51, 0, 51, 51, 51, 51, 0, 0, |
|
0, 0, 51, 0, 0, 0, 51, 51, 0, 51, |
|
0, 51, 51, 0, 0, 201, 0, 0, 51, 0, |
|
51, 51, 51, 51, 51, 51, 0, 0, 0, 0, |
|
51, 0, 51, 51, 51, 51, 0, 0, 51, 0, |
|
51, 0, 0, 0, 51, 51, 0, 51, 0, 51, |
|
51, 0, 0, 203, 0, 0, 51, 0, 51, 51, |
|
51, 51, 0, 51, 0, 0, 0, 0, 51, 0, |
|
51, 51, 51, 51, 0, 0, 0, 0, 51, 0, |
|
0, 0, 51, 51, 0, 51, 0, 0, 0, 0, |
|
51, 305, 51, 0, 51, 0, 51, 51, 0, 51, |
|
0, 51, 0, 0, 0, 0, 51, 0, 51, 51, |
|
51, 51, 0, 51, 0, 0, 51, 0, 0, 0, |
|
51, 0, 0, 51, 0, 0, 51, 0, 0, 306, |
|
465, 51, 51, 0, 0, 51, 51, 51, 51, 51, |
|
51, 51, 0, 0, 51, 0, 51, 0, 0, 0, |
|
51, 0, 0, 466, 0, 0, 0, 0, 0, 0, |
|
465, 51, 51, 51, 51, 51, 467, 51, 0, 0, |
|
468, 469, 0, 0, 0, 0, 470, 0, 471, 472, |
|
473, 474, 0, 466, 0, 0, 475, 0, 0, 0, |
|
476, 51, 0, 0, 0, 0, 467, 0, 0, 0, |
|
0, 469, 477, 0, 0, 478, 470, 479, 471, 472, |
|
473, 474, 0, 0, 0, 0, 475, 0, 0, 0, |
|
476, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 480, 477, 0, 0, 478, 0, 479, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 480, |
|
}; |
|
protected static readonly short [] yyCheck = { 17, |
|
4, 18, 191, 529, 299, 189, 17, 300, 531, 51, |
|
289, 344, 51, 234, 232, 17, 247, 6, 482, 188, |
|
323, 68, 367, 84, 298, 20, 504, 17, 298, 59, |
|
574, 157, 581, 59, 334, 17, 383, 47, 684, 685, |
|
87, 88, 760, 296, 762, 92, 982, 58, 1159, 1195, |
|
1196, 788, 113, 77, 115, 73, 0, 601, 367, 77, |
|
330, 113, 592, 115, 256, 112, 256, 268, 79, 256, |
|
81, 256, 1290, 268, 256, 256, 256, 95, 987, 17, |
|
256, 256, 17, 368, 256, 325, 1502, 1503, 268, 1307, |
|
256, 809, 256, 368, 812, 0, 256, 256, 374, 1245, |
|
268, 1240, 256, 17, 372, 256, 368, 256, 276, 372, |
|
282, 256, 368, 256, 256, 401, 256, 17, 256, 369, |
|
357, 256, 256, 256, 1367, 172, 368, 413, 256, 294, |
|
372, 381, 256, 358, 376, 294, 325, 1380, 17, 157, |
|
416, 306, 314, 1559, 429, 257, 157, 189, 277, 386, |
|
189, 382, 17, 423, 429, 157, 418, 17, 339, 1402, |
|
17, 429, 418, 344, 340, 346, 429, 157, 349, 350, |
|
256, 352, 353, 368, 704, 157, 363, 367, 418, 368, |
|
372, 371, 374, 17, 373, 367, 371, 17, 256, 371, |
|
232, 256, 17, 232, 59, 363, 371, 339, 63, 246, |
|
247, 546, 344, 343, 346, 371, 1115, 349, 350, 363, |
|
352, 353, 259, 223, 363, 256, 370, 381, 372, 157, |
|
374, 422, 157, 568, 1363, 525, 447, 422, 446, 247, |
|
420, 418, 374, 528, 363, 253, 381, 429, 420, 228, |
|
763, 574, 422, 157, 0, 420, 418, 592, 429, 296, |
|
418, 391, 376, 381, 420, 1473, 286, 157, 418, 568, |
|
286, 322, 20, 452, 418, 326, 296, 418, 601, 418, |
|
331, 289, 358, 822, 414, 418, 294, 295, 157, 331, |
|
418, 328, 1500, 418, 418, 418, 333, 429, 428, 418, |
|
419, 309, 157, 319, 1512, 256, 1514, 157, 487, 317, |
|
157, 319, 367, 294, 369, 323, 371, 318, 376, 256, |
|
1154, 256, 335, 257, 256, 306, 1267, 335, 336, 256, |
|
374, 277, 371, 157, 373, 281, 1044, 157, 375, 87, |
|
88, 378, 157, 256, 375, 382, 383, 256, 424, 425, |
|
426, 427, 344, 989, 256, 991, 256, 371, 994, 368, |
|
108, 256, 1089, 371, 344, 420, 1467, 256, 423, 704, |
|
256, 256, 416, 256, 382, 383, 1039, 256, 386, 387, |
|
388, 389, 390, 391, 392, 393, 394, 395, 396, 256, |
|
725, 428, 429, 913, 256, 432, 342, 1533, 305, 256, |
|
367, 368, 256, 372, 335, 1068, 705, 325, 257, 376, |
|
418, 590, 256, 418, 446, 256, 367, 446, 1359, 256, |
|
429, 256, 1348, 1364, 456, 376, 605, 1563, 256, 608, |
|
609, 286, 367, 256, 947, 372, 371, 418, 373, 374, |
|
256, 376, 369, 375, 339, 1081, 381, 1083, 1084, 1390, |
|
256, 199, 200, 453, 454, 748, 341, 925, 266, 459, |
|
429, 1169, 375, 448, 319, 374, 503, 496, 505, 1177, |
|
372, 305, 367, 87, 88, 375, 371, 462, 373, 374, |
|
375, 376, 957, 369, 369, 374, 381, 370, 504, 344, |
|
701, 374, 529, 1201, 108, 374, 497, 256, 429, 266, |
|
418, 372, 837, 370, 363, 264, 314, 374, 369, 546, |
|
372, 257, 733, 550, 262, 372, 695, 854, 372, 527, |
|
262, 529, 765, 531, 368, 1038, 272, 1192, 369, 740, |
|
374, 277, 369, 1072, 376, 281, 715, 372, 837, 371, |
|
288, 542, 543, 368, 372, 1181, 369, 314, 556, 1257, |
|
296, 367, 300, 561, 591, 376, 298, 368, 429, 418, |
|
308, 546, 368, 368, 341, 376, 325, 375, 374, 570, |
|
1404, 363, 343, 368, 363, 363, 1212, 323, 913, 391, |
|
581, 263, 574, 343, 1249, 199, 200, 429, 420, 1064, |
|
343, 1066, 369, 369, 574, 256, 342, 373, 376, 1138, |
|
1434, 1435, 414, 1437, 429, 613, 614, 363, 375, 601, |
|
381, 386, 263, 912, 1448, 256, 364, 1451, 429, 367, |
|
391, 601, 1273, 1259, 429, 910, 418, 256, 381, 418, |
|
418, 391, 1466, 315, 429, 363, 378, 379, 391, 860, |
|
428, 369, 1278, 414, 681, 256, 683, 423, 262, 504, |
|
940, 363, 400, 401, 414, 692, 1490, 428, 256, 775, |
|
256, 414, 418, 363, 315, 394, 395, 1318, 428, 369, |
|
21, 679, 1206, 256, 288, 428, 684, 685, 339, 687, |
|
428, 429, 946, 344, 944, 346, 372, 368, 349, 350, |
|
418, 352, 353, 1273, 308, 376, 733, 1273, 339, 982, |
|
448, 52, 272, 344, 391, 346, 418, 305, 349, 350, |
|
339, 352, 353, 750, 462, 344, 428, 346, 418, 574, |
|
349, 350, 305, 352, 353, 733, 296, 414, 765, 1273, |
|
272, 367, 418, 374, 1202, 371, 373, 371, 1318, 376, |
|
748, 428, 1318, 272, 1273, 765, 601, 726, 1041, 800, |
|
364, 1273, 306, 323, 296, 763, 367, 354, 355, 313, |
|
371, 769, 373, 374, 339, 376, 803, 296, 429, 1054, |
|
381, 367, 368, 369, 1318, 371, 372, 956, 374, 256, |
|
376, 323, 1272, 1273, 420, 1006, 400, 401, 429, 1318, |
|
269, 371, 367, 373, 323, 796, 1318, 357, 546, 836, |
|
429, 376, 256, 1293, 415, 368, 814, 286, 816, 369, |
|
367, 374, 372, 373, 428, 429, 367, 854, 826, 820, |
|
568, 822, 418, 860, 420, 376, 386, 423, 1318, 61, |
|
1320, 367, 1273, 65, 66, 67, 272, 69, 70, 998, |
|
376, 277, 74, 75, 592, 281, 854, 368, 369, 81, |
|
1173, 83, 860, 85, 862, 887, 864, 1126, 90, 91, |
|
296, 421, 339, 1273, 371, 382, 383, 344, 381, 346, |
|
256, 389, 349, 350, 1159, 352, 353, 1318, 391, 396, |
|
397, 256, 114, 1206, 1063, 339, 373, 323, 917, 376, |
|
344, 384, 346, 1162, 269, 349, 350, 385, 352, 353, |
|
908, 414, 910, 400, 357, 760, 342, 762, 1318, 357, |
|
895, 286, 357, 369, 951, 339, 953, 1240, 339, 927, |
|
373, 900, 959, 367, 932, 373, 1380, 935, 373, 390, |
|
1199, 1152, 376, 386, 418, 367, 368, 945, 386, 947, |
|
306, 386, 1455, 367, 376, 371, 367, 313, 985, 368, |
|
294, 415, 429, 339, 809, 374, 704, 812, 344, 325, |
|
346, 256, 381, 349, 350, 368, 352, 353, 371, 1006, |
|
373, 374, 386, 387, 388, 429, 368, 725, 381, 367, |
|
306, 989, 308, 991, 376, 1022, 994, 313, 376, 392, |
|
393, 1028, 373, 1328, 367, 376, 0, 369, 1006, 325, |
|
372, 370, 1337, 376, 1517, 374, 368, 1215, 1219, 412, |
|
372, 1280, 374, 357, 376, 256, 1190, 420, 1003, 363, |
|
423, 418, 367, 255, 369, 369, 258, 277, 372, 373, |
|
1038, 368, 367, 1041, 1013, 372, 1015, 374, 1017, 376, |
|
1363, 1554, 386, 429, 339, 374, 794, 376, 372, 344, |
|
374, 346, 381, 376, 349, 350, 376, 352, 353, 370, |
|
1576, 1577, 371, 374, 373, 1348, 298, 373, 372, 817, |
|
374, 1072, 376, 1081, 418, 1083, 1084, 421, 1086, 398, |
|
399, 357, 314, 392, 393, 833, 368, 363, 6, 837, |
|
256, 370, 374, 369, 376, 374, 372, 373, 374, 17, |
|
354, 355, 1096, 412, 370, 371, 376, 373, 374, 375, |
|
386, 420, 370, 371, 423, 1152, 374, 370, 1126, 372, |
|
367, 374, 368, 369, 371, 1154, 373, 374, 372, 376, |
|
374, 370, 1140, 1141, 381, 374, 370, 1138, 372, 372, |
|
374, 59, 418, 376, 1152, 63, 1153, 895, 372, 372, |
|
376, 1159, 376, 376, 1162, 370, 372, 373, 1190, 374, |
|
1192, 1190, 370, 1192, 372, 913, 914, 372, 415, 87, |
|
88, 376, 368, 1181, 1353, 371, 294, 373, 374, 1187, |
|
794, 1173, 1467, 1215, 294, 374, 1215, 376, 343, 1044, |
|
108, 1199, 370, 1173, 372, 372, 392, 393, 1377, 406, |
|
407, 408, 409, 817, 1212, 1213, 370, 370, 372, 372, |
|
372, 372, 374, 374, 1206, 1394, 412, 1249, 376, 833, |
|
1249, 370, 414, 372, 420, 418, 1206, 423, 370, 374, |
|
372, 376, 418, 1412, 982, 1414, 374, 356, 376, 157, |
|
1272, 1273, 374, 1272, 376, 374, 418, 376, 1240, 414, |
|
415, 1259, 369, 257, 375, 1003, 376, 261, 364, 365, |
|
1240, 1293, 374, 1011, 1293, 364, 365, 499, 272, 372, |
|
1278, 372, 1280, 277, 381, 1157, 1158, 281, 402, 403, |
|
284, 199, 200, 368, 1321, 372, 1318, 294, 1320, 404, |
|
405, 1320, 296, 297, 410, 411, 294, 301, 302, 374, |
|
914, 372, 372, 307, 372, 309, 310, 311, 312, 374, |
|
542, 256, 376, 317, 1169, 428, 371, 321, 1173, 323, |
|
428, 256, 1177, 294, 294, 381, 372, 374, 373, 333, |
|
1331, 335, 336, 375, 338, 374, 373, 418, 342, 372, |
|
381, 429, 374, 374, 262, 374, 1201, 374, 372, 423, |
|
367, 1206, 374, 374, 421, 373, 372, 372, 362, 343, |
|
374, 294, 294, 374, 368, 369, 418, 370, 286, 371, |
|
288, 1363, 367, 256, 418, 1404, 375, 256, 374, 256, |
|
256, 381, 300, 1363, 1385, 1240, 280, 256, 367, 372, |
|
308, 0, 368, 343, 351, 370, 376, 1011, 371, 376, |
|
374, 319, 1257, 372, 370, 1434, 1435, 374, 1437, 372, |
|
372, 423, 367, 1445, 256, 256, 381, 347, 372, 1448, |
|
381, 381, 1451, 372, 376, 368, 344, 256, 347, 370, |
|
1462, 375, 374, 370, 370, 339, 367, 1466, 256, 368, |
|
348, 348, 256, 1475, 1476, 1193, 364, 1455, 372, 367, |
|
418, 374, 1453, 368, 418, 372, 367, 367, 93, 1467, |
|
381, 1490, 97, 98, 99, 100, 101, 102, 103, 104, |
|
1502, 1503, 381, 368, 367, 376, 1484, 376, 356, 371, |
|
368, 368, 400, 401, 374, 337, 372, 368, 305, 371, |
|
418, 418, 367, 402, 403, 404, 405, 406, 407, 408, |
|
409, 410, 411, 1251, 369, 368, 418, 371, 1363, 1517, |
|
428, 429, 371, 418, 376, 371, 373, 371, 367, 369, |
|
381, 339, 373, 1271, 371, 371, 344, 1559, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, 1576, |
|
1577, 381, 372, 374, 372, 256, 1554, 373, 418, 374, |
|
368, 0, 370, 374, 372, 374, 374, 375, 376, 1560, |
|
1561, 376, 372, 372, 370, 418, 1567, 1568, 1576, 1577, |
|
418, 376, 390, 376, 372, 418, 376, 372, 372, 1327, |
|
1328, 368, 400, 401, 381, 381, 504, 370, 372, 1337, |
|
368, 367, 315, 263, 371, 413, 371, 1345, 1346, 368, |
|
1348, 372, 372, 0, 0, 367, 1354, 368, 376, 376, |
|
0, 429, 372, 368, 372, 372, 418, 370, 368, 1367, |
|
372, 1369, 368, 372, 1372, 370, 367, 418, 546, 418, |
|
368, 315, 1380, 376, 376, 372, 0, 372, 368, 368, |
|
376, 367, 376, 367, 372, 372, 368, 368, 257, 367, |
|
568, 376, 261, 373, 1402, 263, 574, 1271, 50, 376, |
|
376, 376, 376, 272, 376, 12, 376, 302, 277, 376, |
|
376, 5, 281, 1003, 592, 284, 895, 1152, 1152, 1470, |
|
1320, 1293, 725, 601, 1523, 1507, 1458, 296, 297, 1487, |
|
1453, 1354, 301, 302, 912, 917, 917, 917, 307, 334, |
|
309, 310, 311, 312, 739, 1367, 256, 342, 317, 1318, |
|
1568, 1386, 321, 1327, 323, 1480, 1562, 1249, 1476, 1414, |
|
1475, 1561, 1354, 546, 333, 1251, 335, 336, 887, 338, |
|
940, 1345, 1346, 342, 935, 769, 382, 860, 1054, 733, |
|
614, 71, 765, 337, 412, 414, 413, 837, 568, 415, |
|
1327, 416, 157, 362, 417, 1369, 1229, 1173, 1372, 1040, |
|
369, 1117, 397, 398, 399, 1141, 1068, 402, 403, 404, |
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414, |
|
415, 416, 417, 1129, 1024, 1202, 704, 961, 1131, 339, |
|
544, 1213, 437, 690, 344, 437, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, 725, 257, 1323, |
|
893, -1, 261, 892, -1, -1, -1, -1, 368, -1, |
|
370, 0, 372, 272, 374, 375, 376, -1, 277, -1, |
|
-1, -1, 281, -1, -1, 284, -1, -1, -1, -1, |
|
390, -1, 760, -1, 762, -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, 794, -1, -1, 429, |
|
-1, -1, -1, -1, 333, -1, -1, 336, -1, 338, |
|
525, 809, 256, 342, 812, -1, -1, 261, 262, 817, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 362, -1, 833, -1, -1, -1, 837, |
|
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, 0, -1, 317, -1, -1, -1, 321, -1, -1, |
|
-1, 325, 597, -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, 913, 914, -1, 362, 363, |
|
-1, -1, -1, 367, 368, -1, 370, 371, 372, 373, |
|
374, 375, 376, -1, 378, 379, -1, 381, 382, 383, |
|
384, 385, 386, 387, 388, 389, 390, -1, 392, 393, |
|
394, 395, 396, 397, 398, 399, 400, 401, 402, 403, |
|
404, 405, 406, 407, 408, 409, 410, 411, 412, 413, |
|
-1, -1, 416, 0, 418, -1, 420, -1, -1, 423, |
|
-1, -1, -1, -1, 982, 429, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 256, 257, -1, |
|
-1, -1, -1, -1, -1, 264, 265, 266, 267, 268, |
|
-1, 270, 271, 1011, 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, 1044, -1, -1, -1, |
|
-1, -1, -1, 768, -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, 0, 371, -1, -1, -1, -1, 376, 377, 378, |
|
379, 380, -1, -1, -1, 384, -1, 386, 257, -1, |
|
-1, -1, 261, 392, 393, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 272, -1, -1, -1, -1, 277, -1, |
|
-1, -1, 281, -1, -1, 284, -1, -1, 417, 418, |
|
419, 420, -1, 422, -1, -1, -1, 296, 297, -1, |
|
429, 1169, 301, 302, -1, 1173, -1, -1, 307, 1177, |
|
309, 310, 311, 312, -1, -1, -1, -1, 317, -1, |
|
-1, -1, 321, -1, 323, 1193, -1, -1, -1, -1, |
|
-1, -1, -1, 1201, 333, -1, -1, 336, 1206, 338, |
|
-1, -1, -1, 342, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 940, -1, -1, -1, -1, |
|
257, -1, -1, 362, 261, -1, -1, 0, 367, 368, |
|
369, -1, 1240, -1, -1, 272, -1, -1, -1, -1, |
|
277, -1, -1, 1251, 281, -1, -1, 284, -1, 1257, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 296, |
|
297, -1, -1, 1271, 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, -1, 336, |
|
-1, 338, -1, -1, -1, 342, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 1327, |
|
1328, -1, -1, -1, -1, 362, -1, -1, -1, 1337, |
|
-1, 368, 369, -1, -1, -1, -1, 1345, 1346, -1, |
|
1348, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 1363, -1, 256, 257, -1, |
|
-1, 1369, -1, -1, 1372, 264, 265, 266, 267, 268, |
|
-1, 270, 271, 0, 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, 368, |
|
-1, -1, 371, -1, -1, -1, -1, 376, 377, 378, |
|
379, 380, -1, 256, -1, 384, -1, 386, 261, 262, |
|
-1, -1, -1, 392, 393, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 0, -1, -1, -1, -1, -1, -1, |
|
-1, 284, -1, -1, -1, -1, -1, -1, 417, 418, |
|
419, 420, -1, 422, 297, 298, -1, -1, -1, 302, |
|
429, -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, 256, |
|
-1, -1, -1, 0, 261, 262, -1, -1, -1, -1, |
|
413, -1, -1, 416, -1, 418, -1, 420, -1, -1, |
|
423, -1, -1, -1, -1, -1, 429, 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, 0, -1, -1, |
|
367, 368, 369, 370, 371, 372, -1, 374, 375, 376, |
|
-1, 378, 379, -1, -1, 382, 383, 384, 385, 256, |
|
-1, -1, 389, 390, 261, 262, -1, 394, 395, 396, |
|
397, 398, 399, 400, 401, -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, 0, -1, 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, 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, 0, -1, -1, -1, -1, 413, -1, -1, 416, |
|
-1, 418, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-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, -1, -1, 256, -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, 0, -1, 389, 390, -1, -1, |
|
-1, 394, 395, 396, 397, 398, 399, 400, 401, 256, |
|
-1, -1, -1, -1, -1, 262, -1, -1, -1, -1, |
|
413, -1, -1, 416, -1, 418, -1, 420, -1, -1, |
|
423, -1, -1, -1, -1, -1, 429, 0, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
339, 298, -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, |
|
0, 370, -1, 372, -1, 374, 375, 376, -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, 363, -1, -1, -1, |
|
367, 368, -1, 370, 371, 372, -1, 374, 375, 376, |
|
-1, 378, 379, -1, -1, 382, 383, 384, 385, -1, |
|
429, -1, 389, 390, -1, -1, -1, 394, 395, 396, |
|
397, 398, 399, 400, 401, -1, -1, -1, -1, -1, |
|
0, -1, -1, -1, -1, -1, 413, 256, 257, 416, |
|
-1, 418, 261, -1, -1, -1, 265, -1, 267, -1, |
|
-1, 270, 429, 272, 273, -1, 275, -1, 277, -1, |
|
279, -1, 281, 282, 283, 284, -1, -1, 287, 288, |
|
-1, -1, -1, 0, 293, -1, 295, 296, 297, -1, |
|
-1, 300, 301, 302, -1, 304, -1, -1, 307, -1, |
|
309, 310, 311, 312, -1, -1, -1, 316, 317, 318, |
|
-1, -1, 321, 322, 323, -1, -1, -1, -1, -1, |
|
-1, 330, 331, -1, 333, 334, 0, 336, 337, 338, |
|
-1, 257, -1, 342, -1, 261, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 272, -1, -1, -1, |
|
-1, 277, -1, 362, -1, 281, -1, -1, 284, 368, |
|
369, -1, -1, -1, -1, -1, -1, -1, 377, 0, |
|
296, 297, -1, -1, 257, 301, 302, -1, 261, -1, |
|
-1, 307, -1, 309, 310, 311, 312, -1, -1, 272, |
|
-1, 317, -1, -1, 277, 321, -1, 323, 281, -1, |
|
-1, 284, -1, -1, -1, -1, -1, 333, -1, 418, |
|
336, -1, 338, 296, 297, -1, 342, 257, 301, 302, |
|
-1, 261, -1, -1, 307, -1, 309, 310, 311, 312, |
|
-1, -1, 272, -1, 317, -1, 362, 277, 321, -1, |
|
323, 281, 368, 369, 284, -1, -1, -1, -1, -1, |
|
333, -1, -1, 336, -1, 338, 296, 297, -1, 342, |
|
-1, 301, 302, -1, -1, -1, -1, 307, -1, 309, |
|
310, 311, 312, -1, -1, -1, -1, 317, -1, 362, |
|
-1, 321, -1, 323, -1, -1, 369, -1, -1, -1, |
|
-1, -1, -1, 333, -1, -1, 336, 257, 338, -1, |
|
-1, 261, 342, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 272, -1, -1, -1, -1, 277, -1, -1, |
|
-1, 281, 362, -1, 284, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 296, 297, -1, -1, |
|
257, 301, 302, -1, 261, -1, -1, 307, -1, 309, |
|
310, 311, 312, -1, -1, 272, -1, 317, -1, -1, |
|
277, 321, -1, 323, 281, -1, -1, 284, -1, -1, |
|
-1, -1, -1, 333, -1, -1, 336, -1, 338, 296, |
|
297, -1, 342, 257, 301, 302, -1, 261, -1, -1, |
|
307, -1, 309, 310, 311, 312, -1, -1, 272, -1, |
|
317, -1, 362, 277, 321, -1, 323, 281, -1, -1, |
|
284, -1, -1, -1, -1, -1, 333, -1, -1, 336, |
|
-1, 338, 296, 297, -1, 342, 257, 301, 302, -1, |
|
261, -1, -1, 307, -1, 309, 310, 311, 312, -1, |
|
-1, 272, -1, 317, -1, 362, 277, 321, -1, 323, |
|
281, -1, -1, 284, -1, -1, -1, -1, -1, 333, |
|
-1, -1, 336, -1, 338, 296, 297, -1, 342, -1, |
|
301, 302, -1, -1, -1, -1, 307, -1, 309, 310, |
|
311, 312, -1, -1, -1, -1, 317, -1, 362, -1, |
|
321, -1, 323, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 333, -1, 256, 336, -1, 338, -1, -1, |
|
-1, 342, 264, 265, 266, 267, -1, -1, 270, 271, |
|
-1, 273, 274, 275, 276, 277, 278, 279, -1, -1, |
|
-1, 362, -1, 285, -1, 287, 288, 289, 290, 291, |
|
292, -1, -1, 295, -1, -1, -1, 299, 300, -1, |
|
302, 303, 304, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 314, -1, 316, -1, 318, 319, -1, -1, |
|
322, -1, 324, 325, 326, 327, 328, 329, 330, 331, |
|
332, 333, 334, 335, -1, 337, -1, -1, 340, 341, |
|
-1, 256, 344, 345, -1, -1, -1, 262, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 359, 360, 361, |
|
362, 363, -1, -1, -1, 367, -1, -1, -1, 371, |
|
-1, -1, -1, -1, 376, 377, 378, 379, 380, -1, |
|
-1, -1, 384, 298, 386, -1, -1, -1, -1, -1, |
|
392, 393, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 256, -1, -1, |
|
-1, -1, -1, 262, -1, 417, 418, 419, 420, -1, |
|
-1, -1, -1, -1, 339, -1, -1, 429, -1, 344, |
|
-1, 346, 347, 348, 349, 350, 351, 352, 353, 354, |
|
355, 356, 357, -1, -1, -1, -1, -1, 363, 298, |
|
-1, -1, -1, 368, 369, 370, 371, 372, 373, 374, |
|
375, 376, -1, 378, 379, -1, 381, 382, 383, 384, |
|
385, 386, 387, 388, 389, 390, -1, 392, 393, 394, |
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404, |
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414, |
|
256, -1, -1, 418, -1, 420, 262, -1, 423, -1, |
|
-1, -1, -1, -1, 429, -1, -1, -1, -1, 368, |
|
-1, -1, 371, -1, 373, 374, -1, -1, -1, 378, |
|
379, -1, -1, 382, 383, 384, 385, 386, 387, 388, |
|
389, 390, 298, 392, 393, 394, 395, 396, 397, 398, |
|
399, 400, 401, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 412, 413, -1, -1, -1, -1, -1, |
|
-1, 420, -1, -1, 423, -1, -1, -1, -1, -1, |
|
429, -1, 285, 339, -1, -1, -1, -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, -1, -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, |
|
-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, 256, |
|
-1, -1, -1, 420, 262, -1, -1, -1, 265, -1, |
|
267, -1, 429, 270, -1, -1, -1, -1, 275, -1, |
|
-1, -1, 279, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 288, -1, -1, -1, -1, -1, -1, 295, -1, |
|
298, -1, -1, 300, -1, -1, -1, 304, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 316, |
|
-1, 318, -1, -1, -1, 322, -1, -1, -1, 256, |
|
-1, -1, -1, 330, 331, 262, -1, 334, -1, -1, |
|
337, 339, -1, -1, -1, -1, 344, -1, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, -1, |
|
-1, -1, -1, -1, -1, -1, 363, -1, -1, 367, |
|
368, 298, 370, 371, 372, 373, 374, 375, 376, -1, |
|
378, 379, -1, 381, 382, 383, 384, 385, 386, 387, |
|
388, 389, 390, -1, 392, 393, 394, 395, 396, 397, |
|
398, 399, 400, 401, 402, 403, 404, 405, 406, 407, |
|
408, 409, 410, 411, 412, 413, -1, 256, -1, -1, |
|
-1, 418, 420, 262, -1, 423, -1, -1, -1, -1, |
|
-1, 429, -1, -1, -1, -1, 363, -1, -1, -1, |
|
-1, 368, 369, -1, 371, 372, 373, 374, -1, 376, |
|
-1, 378, 379, -1, 381, 382, 383, 384, 385, 298, |
|
387, 388, 389, 390, -1, 392, 393, 394, 395, 396, |
|
397, 398, 399, 400, 401, 402, 403, 404, 405, 406, |
|
407, 408, 409, 410, 411, 412, 413, -1, -1, -1, |
|
-1, 418, -1, 420, -1, -1, 423, -1, -1, -1, |
|
339, -1, 429, -1, -1, 344, -1, 346, 347, 348, |
|
349, 350, 351, 352, 353, 354, 355, 356, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 368, |
|
-1, 370, 371, 372, 373, 374, 375, 376, -1, 378, |
|
379, -1, 381, 382, 383, 384, 385, 386, 387, 388, |
|
389, 390, -1, 392, 393, 394, 395, 396, 397, 398, |
|
399, 400, 401, 402, 403, 404, 405, 406, 407, 408, |
|
409, 410, 411, 412, 413, -1, 256, 256, -1, -1, |
|
-1, 420, 262, -1, 423, -1, 265, -1, 267, -1, |
|
429, 270, -1, -1, -1, -1, 275, -1, -1, -1, |
|
279, -1, -1, -1, -1, -1, -1, -1, -1, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, 298, -1, |
|
-1, 300, -1, -1, -1, 304, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 316, -1, 318, |
|
-1, -1, -1, 322, -1, -1, -1, -1, -1, -1, |
|
-1, 330, 331, -1, -1, 334, -1, -1, 337, 339, |
|
-1, -1, -1, -1, 344, -1, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, 371, 372, 373, 374, 375, 376, -1, 378, 379, |
|
-1, 381, 382, 383, 384, 385, 386, 387, 388, 389, |
|
390, -1, 392, 393, 394, 395, 396, 397, 398, 399, |
|
400, 401, 402, 403, 404, 405, 406, 407, 408, 409, |
|
410, 411, 412, 413, -1, 256, 256, -1, -1, 418, |
|
420, 262, -1, 423, -1, 265, -1, 267, -1, 429, |
|
270, -1, -1, -1, -1, 275, -1, -1, -1, 279, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 288, -1, |
|
-1, -1, -1, -1, -1, 295, -1, 298, -1, -1, |
|
300, -1, -1, -1, 304, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 316, -1, 318, -1, |
|
-1, -1, 322, -1, -1, -1, -1, -1, -1, -1, |
|
330, 331, -1, -1, 334, -1, -1, 337, 339, -1, |
|
-1, -1, -1, 344, -1, 346, 347, 348, 349, 350, |
|
351, 352, 353, 354, 355, 356, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 368, -1, 370, |
|
371, 372, 373, 374, 375, 376, -1, 378, 379, -1, |
|
381, 382, 383, 384, 385, 386, 387, 388, 389, 390, |
|
-1, 392, 393, 394, 395, 396, 397, 398, 399, 400, |
|
401, 402, 403, 404, 405, 406, 407, 408, 409, 410, |
|
411, 412, 413, -1, 256, -1, -1, -1, 418, 420, |
|
262, 256, 423, -1, 266, -1, -1, -1, 429, -1, |
|
265, -1, 267, -1, -1, 270, -1, -1, -1, -1, |
|
275, -1, -1, -1, 279, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 288, -1, -1, 298, -1, -1, -1, |
|
295, -1, -1, -1, -1, 300, -1, -1, -1, 304, |
|
-1, -1, 314, -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, -1, -1, -1, -1, 256, -1, -1, |
|
-1, -1, -1, 262, -1, 357, -1, -1, -1, -1, |
|
-1, 363, -1, -1, -1, -1, 368, 369, 370, 371, |
|
372, 373, 374, 375, 376, -1, 378, 379, -1, 381, |
|
382, 383, 384, 385, 386, 387, 388, 389, 390, 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, 418, -1, -1, -1, 429, -1, -1, |
|
339, -1, -1, -1, -1, 344, -1, 346, 347, 348, |
|
349, 350, 351, 352, 353, 354, 355, 356, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 368, |
|
-1, 370, -1, 372, -1, 374, 375, 376, -1, 378, |
|
379, -1, 381, 382, 383, 384, 385, 386, 387, 388, |
|
389, 390, 261, -1, -1, 394, 395, 396, 397, 398, |
|
399, 400, 401, 402, 403, 404, 405, 406, 407, 408, |
|
409, 410, 411, 256, 413, 284, -1, -1, -1, 262, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 297, -1, |
|
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, 298, 325, -1, -1, -1, |
|
-1, -1, -1, -1, 333, -1, -1, 336, -1, 338, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 256, -1, -1, -1, -1, -1, 262, -1, -1, |
|
-1, -1, -1, 362, -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, 386, 387, 388, 389, 390, -1, 418, |
|
-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, 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, 368, 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, 306, |
|
-1, -1, -1, -1, -1, 295, 313, -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, 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, -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, |
|
-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, |
|
-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, 306, -1, -1, -1, -1, -1, 295, |
|
313, -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, 372, -1, -1, 392, |
|
393, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
256, -1, -1, -1, 417, 418, 419, 420, 264, 265, |
|
-1, 267, -1, -1, 270, 271, -1, -1, -1, 275, |
|
276, 277, 418, 279, -1, -1, 265, -1, 267, 285, |
|
-1, 270, 288, -1, -1, -1, 275, -1, -1, 295, |
|
279, -1, -1, -1, 300, -1, 302, 303, 304, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, -1, |
|
316, 300, 318, 319, 320, 304, 322, -1, -1, 325, |
|
-1, 327, -1, 329, 330, 331, 332, 316, 334, 318, |
|
-1, -1, -1, 322, -1, 341, -1, -1, 344, 345, |
|
-1, 330, 331, -1, -1, 334, -1, -1, 337, -1, |
|
-1, -1, -1, 359, 360, 361, 362, 363, -1, -1, |
|
-1, 367, -1, -1, -1, 371, -1, -1, -1, -1, |
|
-1, 377, 378, 379, 380, -1, -1, -1, 384, -1, |
|
386, 370, -1, -1, -1, -1, 392, 393, -1, -1, |
|
-1, -1, -1, -1, 264, 265, -1, 267, -1, -1, |
|
270, 271, -1, -1, -1, 275, 276, 277, -1, 279, |
|
-1, 417, 418, 419, 420, 285, -1, -1, 288, -1, |
|
-1, -1, -1, -1, -1, 295, -1, -1, -1, 418, |
|
300, -1, 302, 303, 304, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 316, -1, 318, 319, |
|
-1, -1, 322, -1, -1, 325, -1, 327, -1, 329, |
|
330, 331, 332, -1, 334, -1, -1, -1, -1, -1, |
|
-1, 341, -1, -1, 344, 345, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 359, |
|
360, 361, 362, 363, -1, -1, -1, 367, 368, -1, |
|
-1, 371, -1, -1, -1, -1, -1, 377, 378, 379, |
|
380, -1, -1, -1, 384, -1, 386, -1, -1, -1, |
|
-1, -1, 392, 393, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 256, -1, 417, 418, 419, |
|
420, -1, -1, 264, 265, -1, 267, -1, 428, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
-1, 265, -1, 267, 285, -1, 270, 288, -1, -1, |
|
-1, 275, -1, -1, 295, 279, -1, -1, -1, 300, |
|
-1, 302, 303, 304, 288, -1, -1, -1, -1, -1, |
|
-1, 295, -1, -1, -1, 316, 300, 318, 319, 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, -1, -1, -1, 371, -1, -1, -1, |
|
-1, -1, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
256, -1, 417, 418, 419, 420, -1, -1, 264, 265, |
|
-1, 267, -1, 428, 270, 271, -1, -1, -1, 275, |
|
276, 277, -1, 279, -1, -1, 265, -1, 267, 285, |
|
-1, 270, 288, -1, -1, -1, 275, -1, -1, 295, |
|
279, -1, -1, -1, 300, -1, 302, 303, 304, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, -1, |
|
316, 300, 318, 319, -1, 304, 322, -1, -1, 325, |
|
-1, 327, -1, 329, 330, 331, 332, 316, 334, 318, |
|
-1, -1, -1, 322, -1, 341, -1, -1, 344, 345, |
|
-1, 330, 331, -1, -1, 334, -1, -1, 337, -1, |
|
-1, -1, -1, 359, 360, 361, 362, 363, -1, -1, |
|
-1, 367, -1, -1, -1, 371, -1, -1, -1, -1, |
|
-1, 377, 378, 379, 380, -1, -1, -1, 384, -1, |
|
386, -1, -1, -1, -1, -1, 392, 393, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 256, -1, -1, |
|
-1, 417, 418, 419, 420, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, 418, |
|
279, -1, -1, 265, -1, 267, 285, -1, 270, 288, |
|
-1, -1, -1, 275, -1, -1, 295, 279, -1, -1, |
|
-1, 300, -1, 302, 303, 304, 288, -1, -1, -1, |
|
-1, -1, -1, 295, -1, -1, -1, 316, 300, 318, |
|
319, -1, 304, 322, -1, -1, 325, -1, 327, -1, |
|
329, 330, 331, 332, 316, 334, 318, -1, -1, -1, |
|
322, -1, 341, -1, -1, 344, 345, -1, 330, 331, |
|
-1, -1, 334, -1, -1, 337, -1, -1, -1, -1, |
|
359, 360, 361, 362, 363, -1, -1, -1, -1, -1, |
|
-1, -1, 371, -1, -1, -1, -1, -1, 377, 378, |
|
379, 380, -1, -1, -1, 384, -1, 386, -1, -1, |
|
-1, -1, -1, 392, 393, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 256, -1, -1, -1, 417, 418, |
|
419, 420, 264, 265, -1, 267, -1, -1, 270, 271, |
|
-1, -1, -1, 275, 276, 277, 418, 279, -1, -1, |
|
265, -1, 267, 285, -1, 270, 288, -1, -1, -1, |
|
275, -1, -1, 295, 279, -1, -1, -1, 300, -1, |
|
302, 303, 304, 288, -1, -1, -1, -1, -1, -1, |
|
295, -1, -1, -1, 316, 300, 318, 319, -1, 304, |
|
322, -1, -1, 325, -1, 327, -1, 329, 330, 331, |
|
332, 316, 334, 318, -1, -1, -1, 322, -1, 341, |
|
-1, -1, 344, 345, -1, 330, 331, -1, -1, 334, |
|
-1, -1, 337, -1, -1, -1, -1, 359, 360, 361, |
|
362, 363, -1, -1, -1, -1, -1, -1, -1, 371, |
|
-1, -1, -1, -1, -1, 377, 378, 379, 380, -1, |
|
-1, -1, 384, -1, 386, -1, -1, -1, -1, -1, |
|
392, 393, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 256, -1, -1, -1, 417, 418, 419, 420, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, 418, 279, -1, -1, 265, -1, 267, |
|
285, -1, 270, 288, -1, -1, -1, 275, -1, -1, |
|
295, 279, -1, -1, -1, 300, -1, 302, 303, 304, |
|
288, -1, -1, -1, -1, -1, -1, 295, -1, -1, |
|
-1, 316, 300, 318, 319, -1, 304, 322, -1, -1, |
|
325, -1, 327, -1, 329, 330, 331, 332, 316, 334, |
|
318, -1, -1, -1, 322, -1, 341, -1, -1, 344, |
|
345, -1, 330, 331, -1, -1, 334, -1, -1, 337, |
|
-1, -1, -1, -1, 359, 360, 361, 362, 363, -1, |
|
-1, -1, -1, -1, -1, -1, 371, -1, -1, -1, |
|
-1, -1, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 256, -1, |
|
-1, -1, 417, 418, 419, 420, 264, 265, -1, 267, |
|
-1, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
418, 279, -1, -1, 265, -1, 267, 285, -1, 270, |
|
288, -1, -1, -1, 275, -1, -1, 295, 279, -1, |
|
-1, -1, 300, -1, 302, 303, 304, 288, -1, -1, |
|
-1, -1, -1, -1, 295, -1, -1, -1, 316, 300, |
|
318, 319, -1, 304, 322, -1, -1, 325, -1, 327, |
|
-1, 329, 330, 331, 332, 316, 334, 318, -1, -1, |
|
-1, 322, -1, 341, -1, -1, 344, 345, -1, 330, |
|
331, -1, -1, 334, -1, -1, 337, -1, -1, -1, |
|
-1, 359, 360, 361, 362, 363, -1, -1, -1, -1, |
|
-1, -1, -1, 371, -1, -1, -1, -1, -1, 377, |
|
378, 379, 380, -1, -1, -1, 384, -1, 386, -1, |
|
-1, -1, -1, -1, 392, 393, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 256, -1, -1, -1, 417, |
|
418, 419, 420, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, 418, 279, -1, |
|
-1, 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, |
|
-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, -1, -1, 343, -1, -1, -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, 381, -1, -1, 384, -1, 386, |
|
256, -1, -1, -1, -1, 392, 393, -1, 264, 265, |
|
-1, 267, -1, -1, 270, 271, -1, -1, -1, 275, |
|
276, 277, -1, 279, -1, -1, -1, -1, -1, 285, |
|
417, 418, 288, 420, -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, -1, -1, 343, -1, -1, |
|
-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, 256, -1, -1, -1, -1, 392, 393, -1, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, -1, 279, -1, -1, -1, -1, -1, |
|
285, 417, 418, 288, 420, -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, -1, -1, -1, -1, |
|
-1, -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, 256, -1, -1, -1, -1, 392, 393, -1, |
|
264, 265, -1, 267, -1, -1, 270, 271, -1, -1, |
|
-1, 275, 276, 277, -1, 279, -1, -1, -1, -1, |
|
-1, 285, 417, 418, 288, 420, -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, -1, -1, -1, |
|
-1, -1, -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, 256, -1, -1, -1, -1, 392, 393, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, -1, -1, |
|
-1, -1, 285, 417, 418, 288, 420, -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, -1, -1, |
|
-1, -1, -1, -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, 256, -1, -1, -1, -1, 392, |
|
393, -1, 264, 265, -1, 267, -1, -1, 270, 271, |
|
-1, -1, -1, 275, 276, 277, -1, 279, -1, -1, |
|
-1, -1, -1, 285, 417, 418, 288, 420, -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, -1, |
|
-1, -1, -1, -1, -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, 256, -1, -1, -1, -1, |
|
392, 393, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
-1, -1, -1, -1, 285, 417, 418, 288, 420, -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, |
|
-1, -1, -1, -1, -1, -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, 256, -1, -1, -1, |
|
-1, 392, 393, -1, 264, 265, -1, 267, -1, -1, |
|
270, 271, -1, -1, -1, 275, 276, 277, -1, 279, |
|
-1, -1, -1, -1, -1, 285, 417, 418, 288, 420, |
|
-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, -1, -1, -1, -1, -1, -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, 256, -1, -1, |
|
-1, -1, 392, 393, -1, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, -1, |
|
279, -1, -1, -1, -1, -1, 285, 417, 418, 288, |
|
420, -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, -1, -1, -1, -1, -1, -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, 256, -1, |
|
-1, -1, -1, 392, 393, -1, 264, 265, -1, 267, |
|
-1, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
-1, 279, -1, -1, -1, -1, -1, 285, 417, 418, |
|
288, 420, -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, -1, -1, -1, -1, -1, -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, 256, |
|
-1, -1, -1, -1, 392, 393, -1, 264, 265, -1, |
|
267, -1, -1, 270, 271, -1, -1, -1, 275, 276, |
|
277, -1, 279, -1, -1, -1, -1, -1, 285, 417, |
|
418, 288, 420, -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, -1, -1, -1, -1, -1, -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, |
|
256, -1, -1, -1, -1, 392, 393, -1, 264, 265, |
|
-1, 267, -1, -1, 270, 271, -1, -1, -1, 275, |
|
276, 277, -1, 279, -1, -1, -1, -1, -1, 285, |
|
417, 418, 288, 420, -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, -1, -1, -1, -1, -1, |
|
-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, 256, -1, -1, -1, -1, 392, 393, -1, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, -1, 279, -1, -1, -1, -1, -1, |
|
285, 417, 418, 288, 420, -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, -1, -1, -1, -1, |
|
-1, -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, 256, -1, -1, -1, -1, 392, 393, -1, |
|
264, 265, -1, 267, -1, -1, 270, 271, -1, -1, |
|
-1, 275, 276, 277, -1, 279, -1, -1, -1, -1, |
|
-1, 285, 417, 418, 288, 420, -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, -1, -1, -1, |
|
-1, -1, -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, 256, -1, -1, -1, -1, 392, 393, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, -1, -1, |
|
-1, -1, 285, 417, 418, 288, 420, -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, -1, -1, |
|
-1, -1, -1, -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, 256, -1, -1, -1, -1, 392, |
|
393, -1, 264, 265, -1, 267, -1, -1, 270, 271, |
|
-1, -1, -1, 275, 276, 277, -1, 279, -1, -1, |
|
-1, -1, -1, 285, 417, 418, 288, 420, -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, -1, |
|
-1, -1, -1, -1, -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, 256, -1, -1, -1, -1, |
|
392, 393, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
-1, -1, -1, -1, 285, 417, 418, 288, 420, -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, |
|
-1, -1, -1, -1, -1, -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, 256, -1, -1, -1, |
|
-1, 392, 393, -1, 264, 265, -1, 267, -1, -1, |
|
270, 271, -1, -1, -1, 275, 276, 277, -1, 279, |
|
-1, -1, -1, -1, -1, 285, 417, 418, 288, 420, |
|
-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, -1, -1, -1, -1, -1, -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, 256, -1, -1, |
|
-1, -1, 392, 393, -1, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, -1, |
|
279, -1, -1, -1, -1, -1, 285, 417, 418, 288, |
|
420, -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, -1, -1, -1, -1, -1, -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, 256, -1, |
|
-1, -1, -1, 392, 393, -1, 264, 265, -1, 267, |
|
-1, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
-1, 279, -1, -1, -1, -1, -1, 285, 417, 418, |
|
288, 420, -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, -1, -1, -1, -1, -1, -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, 256, |
|
-1, -1, -1, -1, 392, 393, -1, 264, 265, -1, |
|
267, -1, -1, 270, 271, -1, -1, -1, 275, 276, |
|
277, -1, 279, -1, -1, -1, -1, -1, 285, 417, |
|
418, 288, 420, -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, -1, -1, -1, -1, -1, -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, |
|
256, -1, -1, -1, -1, 392, 393, -1, 264, 265, |
|
-1, 267, -1, -1, 270, 271, -1, -1, -1, 275, |
|
276, 277, -1, 279, -1, -1, -1, -1, -1, 285, |
|
417, 418, 288, 420, -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, -1, -1, -1, -1, -1, |
|
-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, 256, -1, -1, -1, -1, 392, 393, -1, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, -1, 279, -1, -1, -1, -1, -1, |
|
285, 417, 418, 288, 420, -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, -1, -1, -1, -1, |
|
-1, -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, 256, -1, -1, -1, -1, 392, 393, -1, |
|
264, 265, -1, 267, -1, -1, 270, 271, -1, -1, |
|
-1, 275, 276, 277, -1, 279, -1, -1, -1, -1, |
|
-1, 285, 417, 418, 288, 420, -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, -1, -1, -1, |
|
-1, -1, -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, 256, -1, -1, -1, -1, 392, 393, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, -1, -1, |
|
-1, -1, 285, 417, 418, 288, 420, -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, -1, -1, |
|
-1, -1, -1, -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, 256, -1, -1, -1, -1, 392, |
|
393, -1, 264, 265, -1, 267, -1, -1, 270, 271, |
|
-1, -1, -1, 275, 276, 277, -1, 279, -1, -1, |
|
-1, -1, -1, 285, 417, 418, 288, 420, -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, -1, |
|
-1, -1, -1, -1, -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, 256, -1, -1, -1, -1, |
|
392, 393, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
-1, -1, -1, -1, 285, 417, 418, 288, 420, -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, |
|
-1, -1, -1, -1, -1, -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, 256, -1, -1, -1, |
|
-1, 392, 393, -1, 264, 265, -1, 267, -1, -1, |
|
270, 271, -1, -1, -1, 275, 276, 277, -1, 279, |
|
-1, -1, -1, -1, -1, 285, 417, 418, 288, 420, |
|
-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, -1, -1, -1, -1, -1, -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, 256, -1, -1, |
|
-1, -1, 392, 393, -1, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, -1, |
|
279, -1, -1, -1, -1, -1, 285, 417, 418, 288, |
|
420, -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, -1, -1, -1, -1, -1, -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, 256, -1, |
|
-1, -1, -1, 392, 393, -1, 264, 265, -1, 267, |
|
-1, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
-1, 279, -1, -1, -1, -1, -1, 285, 417, 418, |
|
288, 420, -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, -1, -1, -1, -1, -1, -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, 256, |
|
-1, -1, -1, -1, 392, 393, 262, 264, 265, -1, |
|
267, -1, -1, 270, 271, -1, -1, -1, 275, 276, |
|
277, -1, 279, -1, -1, -1, -1, -1, 285, 417, |
|
418, 288, 420, -1, -1, -1, -1, -1, 295, -1, |
|
-1, -1, 298, 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, -1, -1, -1, -1, -1, -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, 371, 372, 373, 374, 375, |
|
-1, -1, 378, 379, -1, -1, 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, |
|
417, 418, -1, -1, 420, -1, 261, 423, 263, -1, |
|
265, -1, 267, -1, -1, 270, -1, 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, -1, 302, -1, 304, |
|
-1, 306, 307, -1, 309, 310, 311, 312, -1, -1, |
|
315, 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, -1, -1, 362, -1, 364, |
|
365, 261, -1, -1, -1, 265, -1, 267, -1, -1, |
|
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, 418, -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, 261, -1, -1, -1, 265, |
|
-1, 267, -1, -1, 270, -1, 272, 273, -1, 275, |
|
362, 277, -1, 279, -1, 281, 282, 283, 284, -1, |
|
-1, 287, 288, -1, -1, 377, -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, 418, 333, 334, -1, |
|
336, 337, 338, -1, -1, -1, 342, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 261, |
|
-1, -1, -1, 265, -1, 267, 362, -1, 270, -1, |
|
272, 273, 368, 275, -1, 277, -1, 279, -1, 281, |
|
282, 283, 284, -1, -1, 287, 288, -1, -1, -1, |
|
-1, 293, -1, 295, 296, 297, -1, -1, 300, -1, |
|
302, 261, 304, -1, -1, 307, -1, 309, 310, 311, |
|
312, -1, -1, -1, 316, 317, 318, -1, -1, 321, |
|
322, 323, 418, -1, 284, -1, -1, -1, 330, 331, |
|
-1, 333, 334, 261, 336, 337, 338, 297, -1, -1, |
|
342, -1, 302, -1, -1, 305, -1, 307, -1, 309, |
|
310, 311, 312, -1, -1, -1, 284, 317, -1, -1, |
|
362, 321, -1, -1, -1, 325, 368, -1, -1, 297, |
|
-1, 261, -1, 333, 302, -1, 336, -1, 338, 307, |
|
-1, 309, 310, 311, 312, -1, -1, -1, -1, 317, |
|
-1, -1, -1, 321, 284, -1, -1, 357, -1, -1, |
|
-1, 261, 362, -1, -1, 333, -1, 297, 336, 369, |
|
338, 371, 302, 373, -1, 305, 418, 307, -1, 309, |
|
310, 311, 312, -1, 284, -1, 386, 317, -1, -1, |
|
-1, 321, -1, -1, 362, 325, -1, 297, -1, -1, |
|
-1, -1, 302, 333, -1, -1, 336, 307, 338, 309, |
|
310, 311, 312, -1, -1, -1, -1, 317, 418, -1, |
|
-1, 321, -1, -1, -1, 325, -1, -1, 264, 265, |
|
-1, 267, 362, 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, 418, 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, -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, -1, -1, -1, |
|
300, -1, 302, 303, 304, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 316, -1, 318, 319, |
|
-1, -1, 322, -1, -1, 325, -1, 327, -1, 329, |
|
330, 331, 332, -1, 334, -1, -1, -1, -1, -1, |
|
-1, 341, -1, -1, 344, 345, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 359, |
|
360, 361, 362, 363, -1, -1, -1, -1, -1, -1, |
|
-1, 371, -1, -1, -1, -1, -1, 377, 378, 379, |
|
380, -1, -1, -1, 384, -1, 386, -1, -1, -1, |
|
-1, -1, 392, 393, -1, -1, -1, -1, -1, -1, |
|
264, 265, -1, 267, -1, -1, 270, 271, -1, -1, |
|
-1, 275, 276, 277, -1, 279, -1, 417, 418, 419, |
|
420, 285, -1, -1, 288, -1, -1, -1, -1, -1, |
|
-1, 295, -1, 261, -1, -1, 300, -1, 302, 303, |
|
304, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 316, -1, 318, 319, 284, -1, 322, -1, |
|
-1, 325, -1, 327, -1, 329, 330, 331, 332, 297, |
|
334, -1, -1, -1, 302, -1, -1, -1, -1, 307, |
|
-1, 309, 310, 311, 312, -1, -1, 315, -1, 317, |
|
-1, -1, -1, 321, -1, 359, 360, 361, 362, 363, |
|
-1, -1, -1, -1, -1, 333, -1, 371, 336, -1, |
|
338, -1, -1, 377, 378, 379, 380, -1, -1, -1, |
|
384, -1, 386, -1, -1, -1, -1, -1, 392, 393, |
|
-1, -1, -1, -1, 362, -1, -1, -1, -1, -1, |
|
368, 369, -1, -1, -1, -1, -1, -1, 263, -1, |
|
265, -1, 267, 417, 418, 270, 420, 272, 273, -1, |
|
275, -1, 277, -1, 279, -1, 281, 282, 283, -1, |
|
-1, -1, 287, 288, -1, -1, -1, -1, 293, -1, |
|
295, 296, -1, -1, -1, 300, -1, -1, -1, 304, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
315, 316, -1, 318, -1, -1, -1, 322, 323, -1, |
|
-1, -1, -1, -1, -1, 330, 331, 264, 265, 334, |
|
267, -1, 337, 270, 271, -1, -1, 342, 275, 276, |
|
277, -1, 279, -1, -1, -1, -1, -1, 285, -1, |
|
-1, 288, -1, -1, -1, -1, -1, -1, 295, 364, |
|
365, -1, -1, 300, -1, 302, 303, 304, -1, -1, |
|
-1, -1, 377, -1, -1, -1, -1, -1, -1, 316, |
|
-1, 318, 319, -1, -1, 322, -1, -1, 325, -1, |
|
327, -1, 329, 330, 331, 332, -1, 334, -1, -1, |
|
337, -1, -1, -1, -1, -1, -1, 265, -1, 267, |
|
-1, -1, 270, 418, 272, -1, -1, 275, -1, -1, |
|
-1, 279, 359, 360, 361, 362, -1, -1, -1, -1, |
|
288, 265, -1, 267, 371, -1, 270, 295, 272, 273, |
|
-1, 275, 300, 277, 302, 279, 304, 281, 282, 283, |
|
-1, -1, -1, 287, 288, -1, -1, -1, 316, 293, |
|
318, 295, 296, -1, 322, 323, 300, -1, -1, -1, |
|
304, -1, 330, 331, -1, -1, 334, -1, -1, 337, |
|
417, 418, 316, -1, 318, -1, -1, -1, 322, 323, |
|
-1, -1, -1, -1, -1, -1, 330, 331, -1, 265, |
|
334, 267, -1, 337, 270, -1, 272, 273, 342, 275, |
|
-1, 277, -1, 279, -1, 281, 282, 283, -1, -1, |
|
-1, 287, 288, -1, -1, -1, -1, 293, -1, 295, |
|
296, -1, -1, -1, 300, -1, -1, -1, 304, -1, |
|
-1, -1, -1, 377, -1, -1, -1, -1, -1, -1, |
|
316, -1, 318, -1, -1, -1, 322, 323, -1, -1, |
|
418, -1, -1, -1, 330, 331, -1, -1, 334, -1, |
|
-1, 337, -1, 265, -1, 267, 342, -1, 270, -1, |
|
-1, 273, -1, 275, 418, 277, -1, 279, -1, 281, |
|
282, 283, -1, -1, -1, 287, 288, -1, -1, -1, |
|
-1, 293, -1, 295, -1, 265, -1, 267, 300, -1, |
|
270, -1, 304, 273, -1, 275, -1, 277, -1, 279, |
|
-1, 281, 282, 283, 316, -1, 318, 287, 288, -1, |
|
322, -1, -1, 293, -1, 295, -1, -1, 330, 331, |
|
300, -1, 334, -1, 304, 337, -1, -1, -1, 265, |
|
342, 267, 418, -1, 270, -1, 316, -1, 318, 275, |
|
-1, -1, 322, 279, -1, -1, -1, -1, -1, -1, |
|
330, 331, 288, -1, 334, -1, -1, 337, -1, 295, |
|
-1, 265, 342, 267, 300, 377, 270, -1, 304, -1, |
|
306, 275, 308, -1, -1, 279, -1, 313, -1, -1, |
|
316, -1, 318, -1, 288, -1, 322, -1, -1, 325, |
|
-1, 295, -1, -1, 330, 331, 300, -1, 334, -1, |
|
304, 337, 306, -1, 308, 265, 418, 267, -1, 313, |
|
270, -1, 316, -1, 318, 275, -1, -1, 322, 279, |
|
-1, 325, -1, -1, -1, -1, 330, 331, 288, -1, |
|
334, -1, -1, 337, -1, 295, 372, -1, 418, -1, |
|
300, -1, -1, -1, 304, -1, 306, -1, -1, -1, |
|
-1, -1, -1, 313, -1, -1, 316, -1, 318, -1, |
|
-1, -1, 322, -1, -1, 325, 370, -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, -1, -1, -1, -1, -1, 288, |
|
-1, -1, -1, 363, -1, -1, 295, -1, 265, -1, |
|
267, 300, -1, 270, 418, 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, -1, -1, -1, -1, 313, -1, 418, 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, -1, -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, 261, -1, 330, 331, -1, -1, 334, 316, |
|
-1, 318, -1, 272, -1, 322, -1, -1, 277, -1, |
|
-1, 418, 281, 330, 331, 284, -1, 334, -1, -1, |
|
337, -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, 363, -1, 317, -1, |
|
-1, -1, 321, -1, 323, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 333, -1, 335, 336, 261, 338, |
|
-1, -1, -1, 342, -1, -1, -1, -1, -1, 272, |
|
-1, -1, 418, -1, 277, -1, -1, -1, 281, -1, |
|
-1, 284, -1, 362, -1, -1, -1, -1, -1, 368, |
|
369, 418, -1, 296, 297, -1, -1, -1, 301, 302, |
|
261, -1, 263, -1, 307, -1, 309, 310, 311, 312, |
|
-1, -1, -1, -1, 317, -1, -1, -1, 321, -1, |
|
323, -1, -1, 284, -1, -1, -1, -1, -1, -1, |
|
333, -1, -1, 336, -1, 338, 297, -1, -1, 342, |
|
-1, 302, -1, -1, -1, -1, 307, -1, 309, 310, |
|
311, 312, -1, -1, -1, -1, 317, -1, -1, 362, |
|
321, -1, -1, 261, -1, 368, 369, -1, -1, -1, |
|
-1, -1, 333, -1, 272, 336, -1, 338, -1, 277, |
|
-1, -1, -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 7019 "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 { |
|
expr.Error_InvalidExpressionStatement (report); |
|
} |
|
} |
|
|
|
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"); |
|
} |
|
|
|
object Error_AwaitAsIdentifier (object token) |
|
{ |
|
if (async_block) { |
|
report.Error (4003, GetLocation (token), "`await' cannot be used as an identifier within an async method or lambda expression"); |
|
return new Tokenizer.LocatedToken ("await", GetLocation (token)); |
|
} |
|
|
|
return token; |
|
} |
|
|
|
void push_current_container (TypeDefinition tc, object partial_token) |
|
{ |
|
if (module.Evaluator != null){ |
|
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.AddPartial (tc); |
|
else |
|
current_container.AddTypeContainer (tc); |
|
|
|
++lexer.parsing_declaration; |
|
current_container = tc; |
|
current_type = tc; |
|
} |
|
|
|
TypeContainer pop_current_class () |
|
{ |
|
var retval = current_container; |
|
|
|
current_container = current_container.Parent; |
|
current_type = current_type.Parent as TypeDefinition; |
|
|
|
return retval; |
|
} |
|
|
|
[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; |
|
} |
|
} |
|
|
|
public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file, ParserSession session) |
|
: this (reader, file, file.Compiler.Report, session) |
|
{ |
|
} |
|
|
|
public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file, Report report, ParserSession session) |
|
{ |
|
this.file = file; |
|
current_container = current_namespace = file; |
|
|
|
this.module = file.Module; |
|
this.compiler = file.Compiler; |
|
this.settings = compiler.Settings; |
|
this.report = report; |
|
|
|
lang_version = settings.Version; |
|
yacc_verbose_flag = settings.VerboseParserFlag; |
|
doc_support = settings.DocumentationFile != null; |
|
lexer = new Tokenizer (reader, file, session); |
|
oob_stack = new Stack<object> (); |
|
lbag = session.LocationsBag; |
|
use_global_stacks = session.UseJayGlobalArrays; |
|
parameters_bucket = session.ParametersStack; |
|
} |
|
|
|
public void parse () |
|
{ |
|
eof_token = Token.EOF; |
|
|
|
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) { |
|
if (report.Errors == 0) |
|
report.Error (-25, lexer.Location, "Parsing error"); |
|
} else { |
|
// Used by compiler-tester to test internal errors |
|
if (yacc_verbose_flag > 0 || e is FatalException) |
|
throw; |
|
|
|
report.Error (589, lexer.Location, "Internal compiler error during parsing" + e); |
|
} |
|
} |
|
} |
|
|
|
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; |
|
} |
|
|
|
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; |
|
|
|
// Avoid duplicit error message after unterminated string literals |
|
if (token == Token.LITERAL && lexer.Location.Column == 0) |
|
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
|
|
|