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.
13811 lines
496 KiB
13811 lines
496 KiB
// created by jay 0.7 (c) 1998 Axel.Schreiner@informatik.uni-osnabrueck.de |
|
|
|
#line 2 "cs-parser.jay" |
|
// |
|
// cs-parser.jay: The Parser for the C# compiler |
|
// |
|
// Authors: Miguel de Icaza (miguel@gnome.org) |
|
// Ravi Pratap (ravi@ximian.com) |
|
// Marek Safar (marek.safar@gmail.com) |
|
// |
|
// Dual Licensed under the terms of the GNU GPL and the MIT X11 license |
|
// |
|
// (C) 2001 Ximian, Inc (http://www.ximian.com) |
|
// (C) 2004-2011 Novell, Inc |
|
// Copyright 2011 Xamarin Inc. |
|
// |
|
// TODO: |
|
// (1) Figure out why error productions dont work. `type-declaration' is a |
|
// great spot to put an `error' because you can reproduce it with this input: |
|
// "public X { }" |
|
// |
|
|
|
using System.Text; |
|
using System.IO; |
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace Mono.CSharp |
|
{ |
|
/// <summary> |
|
/// The C# Parser |
|
/// </summary> |
|
public class CSharpParser |
|
{ |
|
[Flags] |
|
enum ParameterModifierType |
|
{ |
|
Ref = 1 << 1, |
|
Out = 1 << 2, |
|
This = 1 << 3, |
|
Params = 1 << 4, |
|
Arglist = 1 << 5, |
|
DefaultValue = 1 << 6, |
|
|
|
All = Ref | Out | This | Params | Arglist | DefaultValue |
|
} |
|
|
|
static readonly object ModifierNone = 0; |
|
|
|
NamespaceContainer current_namespace; |
|
TypeContainer current_container; |
|
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. |
|
/// |
|
static 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 |
|
// |
|
static List<Parameter> parameters_bucket = new List<Parameter> (6); |
|
|
|
// |
|
// Full AST support members |
|
// |
|
LocationsBag lbag; |
|
List<Tuple<Modifiers, Location>> mod_locations; |
|
Location parameterModifierLocation, savedLocation, savedOpenLocation, savedCloseLocation; |
|
Location savedAttrParenOpenLocation, savedAttrParenCloseLocation, savedOperatorLocation; |
|
Stack<List<Location>> locationListStack = new Stack<List<Location>> (); // used for type parameters |
|
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); |
|
} |
|
|
|
/* An EOF token */ |
|
public int eof_token; |
|
|
|
/** (syntax) error message. |
|
Can be overwritten to control message format. |
|
@param message text to be displayed. |
|
@param expected vector of acceptable tokens, if available. |
|
*/ |
|
public void yyerror (string message, string[] expected) { |
|
if ((yacc_verbose_flag > 0) && (expected != null) && (expected.Length > 0)) { |
|
ErrorOutput.Write (message+", expecting"); |
|
for (int n = 0; n < expected.Length; ++ n) |
|
ErrorOutput.Write (" "+expected[n]); |
|
ErrorOutput.WriteLine (); |
|
} else |
|
ErrorOutput.WriteLine (message); |
|
} |
|
|
|
/** debugging support, requires the package jay.yydebug. |
|
Set to null to suppress debugging messages. |
|
*/ |
|
//t internal yydebug.yyDebug debug; |
|
|
|
protected const int yyFinal = 7; |
|
//t // Put this array into a separate class so it is only initialized if debugging is actually used |
|
//t // Use MarshalByRefObject to disable inlining |
|
//t class YYRules : MarshalByRefObject { |
|
//t public static readonly string [] yyRule = { |
|
//t "$accept : compilation_unit", |
|
//t "compilation_unit : outer_declaration opt_EOF", |
|
//t "$$1 :", |
|
//t "compilation_unit : interactive_parsing $$1 opt_EOF", |
|
//t "compilation_unit : documentation_parsing", |
|
//t "outer_declaration : opt_extern_alias_directives opt_using_directives", |
|
//t "outer_declaration : opt_extern_alias_directives opt_using_directives namespace_or_type_declarations opt_attributes", |
|
//t "outer_declaration : opt_extern_alias_directives opt_using_directives attribute_sections", |
|
//t "outer_declaration : error", |
|
//t "opt_EOF :", |
|
//t "opt_EOF : EOF", |
|
//t "extern_alias_directives : extern_alias_directive", |
|
//t "extern_alias_directives : extern_alias_directives extern_alias_directive", |
|
//t "extern_alias_directive : EXTERN_ALIAS IDENTIFIER IDENTIFIER SEMICOLON", |
|
//t "extern_alias_directive : EXTERN_ALIAS error", |
|
//t "using_directives : using_directive", |
|
//t "using_directives : using_directives using_directive", |
|
//t "using_directive : using_namespace", |
|
//t "using_namespace : USING namespace_or_type_expr SEMICOLON", |
|
//t "using_namespace : USING IDENTIFIER ASSIGN namespace_or_type_expr SEMICOLON", |
|
//t "using_namespace : USING error", |
|
//t "$$2 :", |
|
//t "$$3 :", |
|
//t "namespace_declaration : opt_attributes NAMESPACE namespace_name $$2 OPEN_BRACE $$3 opt_extern_alias_directives opt_using_directives opt_namespace_or_type_declarations CLOSE_BRACE opt_semicolon", |
|
//t "namespace_name : IDENTIFIER", |
|
//t "namespace_name : namespace_name DOT IDENTIFIER", |
|
//t "namespace_name : error", |
|
//t "opt_semicolon :", |
|
//t "opt_semicolon : SEMICOLON", |
|
//t "opt_comma :", |
|
//t "opt_comma : COMMA", |
|
//t "opt_using_directives :", |
|
//t "opt_using_directives : using_directives", |
|
//t "opt_extern_alias_directives :", |
|
//t "opt_extern_alias_directives : extern_alias_directives", |
|
//t "opt_namespace_or_type_declarations :", |
|
//t "opt_namespace_or_type_declarations : namespace_or_type_declarations", |
|
//t "namespace_or_type_declarations : namespace_or_type_declaration", |
|
//t "namespace_or_type_declarations : namespace_or_type_declarations namespace_or_type_declaration", |
|
//t "namespace_or_type_declaration : type_declaration", |
|
//t "namespace_or_type_declaration : namespace_declaration", |
|
//t "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 "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", |
|
//t "fixed_parameter : opt_attributes opt_parameter_modifier parameter_type IDENTIFIER 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 ASSIGN $$26 constant_expression", |
|
//t "opt_parameter_modifier :", |
|
//t "opt_parameter_modifier : parameter_modifiers", |
|
//t "parameter_modifiers : parameter_modifier", |
|
//t "parameter_modifiers : parameter_modifiers parameter_modifier", |
|
//t "parameter_modifier : REF", |
|
//t "parameter_modifier : OUT", |
|
//t "parameter_modifier : THIS", |
|
//t "parameter_array : opt_attributes params_modifier type IDENTIFIER", |
|
//t "parameter_array : opt_attributes params_modifier type IDENTIFIER ASSIGN constant_expression", |
|
//t "parameter_array : opt_attributes params_modifier type error", |
|
//t "params_modifier : PARAMS", |
|
//t "params_modifier : PARAMS parameter_modifier", |
|
//t "params_modifier : PARAMS params_modifier", |
|
//t "arglist_modifier : ARGLIST", |
|
//t "$$27 :", |
|
//t "$$28 :", |
|
//t "$$29 :", |
|
//t "property_declaration : opt_attributes opt_modifiers member_type member_declaration_name $$27 OPEN_BRACE $$28 accessor_declarations $$29 CLOSE_BRACE", |
|
//t "$$30 :", |
|
//t "$$31 :", |
|
//t "$$32 :", |
|
//t "indexer_declaration : opt_attributes opt_modifiers member_type indexer_declaration_name OPEN_BRACKET $$30 opt_formal_parameter_list CLOSE_BRACKET OPEN_BRACE $$31 accessor_declarations $$32 CLOSE_BRACE", |
|
//t "accessor_declarations : get_accessor_declaration", |
|
//t "accessor_declarations : get_accessor_declaration accessor_declarations", |
|
//t "accessor_declarations : set_accessor_declaration", |
|
//t "accessor_declarations : set_accessor_declaration accessor_declarations", |
|
//t "accessor_declarations : error", |
|
//t "$$33 :", |
|
//t "get_accessor_declaration : opt_attributes opt_modifiers GET $$33 accessor_body", |
|
//t "$$34 :", |
|
//t "set_accessor_declaration : opt_attributes opt_modifiers SET $$34 accessor_body", |
|
//t "accessor_body : block", |
|
//t "accessor_body : SEMICOLON", |
|
//t "accessor_body : error", |
|
//t "$$35 :", |
|
//t "$$36 :", |
|
//t "$$37 :", |
|
//t "$$38 :", |
|
//t "interface_declaration : opt_attributes opt_modifiers opt_partial INTERFACE $$35 type_declaration_name $$36 opt_class_base opt_type_parameter_constraints_clauses $$37 OPEN_BRACE opt_interface_member_declarations CLOSE_BRACE $$38 opt_semicolon", |
|
//t "interface_declaration : opt_attributes opt_modifiers opt_partial INTERFACE error", |
|
//t "opt_interface_member_declarations :", |
|
//t "opt_interface_member_declarations : interface_member_declarations", |
|
//t "interface_member_declarations : interface_member_declaration", |
|
//t "interface_member_declarations : interface_member_declarations interface_member_declaration", |
|
//t "interface_member_declaration : constant_declaration", |
|
//t "interface_member_declaration : field_declaration", |
|
//t "interface_member_declaration : method_declaration", |
|
//t "interface_member_declaration : property_declaration", |
|
//t "interface_member_declaration : event_declaration", |
|
//t "interface_member_declaration : indexer_declaration", |
|
//t "interface_member_declaration : operator_declaration", |
|
//t "interface_member_declaration : constructor_declaration", |
|
//t "interface_member_declaration : type_declaration", |
|
//t "$$39 :", |
|
//t "operator_declaration : opt_attributes opt_modifiers operator_declarator $$39 operator_body", |
|
//t "operator_body : block", |
|
//t "operator_body : SEMICOLON", |
|
//t "operator_type : type_expression_or_array", |
|
//t "operator_type : VOID", |
|
//t "$$40 :", |
|
//t "operator_declarator : operator_type OPERATOR overloadable_operator OPEN_PARENS $$40 opt_formal_parameter_list CLOSE_PARENS", |
|
//t "operator_declarator : conversion_operator_declarator", |
|
//t "overloadable_operator : BANG", |
|
//t "overloadable_operator : TILDE", |
|
//t "overloadable_operator : OP_INC", |
|
//t "overloadable_operator : OP_DEC", |
|
//t "overloadable_operator : TRUE", |
|
//t "overloadable_operator : FALSE", |
|
//t "overloadable_operator : PLUS", |
|
//t "overloadable_operator : MINUS", |
|
//t "overloadable_operator : STAR", |
|
//t "overloadable_operator : DIV", |
|
//t "overloadable_operator : PERCENT", |
|
//t "overloadable_operator : BITWISE_AND", |
|
//t "overloadable_operator : BITWISE_OR", |
|
//t "overloadable_operator : CARRET", |
|
//t "overloadable_operator : OP_SHIFT_LEFT", |
|
//t "overloadable_operator : OP_SHIFT_RIGHT", |
|
//t "overloadable_operator : OP_EQ", |
|
//t "overloadable_operator : OP_NE", |
|
//t "overloadable_operator : OP_GT", |
|
//t "overloadable_operator : OP_LT", |
|
//t "overloadable_operator : OP_GE", |
|
//t "overloadable_operator : OP_LE", |
|
//t "$$41 :", |
|
//t "conversion_operator_declarator : IMPLICIT OPERATOR type OPEN_PARENS $$41 opt_formal_parameter_list CLOSE_PARENS", |
|
//t "$$42 :", |
|
//t "conversion_operator_declarator : EXPLICIT OPERATOR type OPEN_PARENS $$42 opt_formal_parameter_list CLOSE_PARENS", |
|
//t "conversion_operator_declarator : IMPLICIT error", |
|
//t "conversion_operator_declarator : EXPLICIT error", |
|
//t "constructor_declaration : constructor_declarator constructor_body", |
|
//t "$$43 :", |
|
//t "$$44 :", |
|
//t "constructor_declarator : opt_attributes opt_modifiers IDENTIFIER $$43 OPEN_PARENS opt_formal_parameter_list CLOSE_PARENS $$44 opt_constructor_initializer", |
|
//t "constructor_body : block_prepared", |
|
//t "constructor_body : SEMICOLON", |
|
//t "opt_constructor_initializer :", |
|
//t "opt_constructor_initializer : constructor_initializer", |
|
//t "$$45 :", |
|
//t "constructor_initializer : COLON BASE OPEN_PARENS $$45 opt_argument_list CLOSE_PARENS", |
|
//t "$$46 :", |
|
//t "constructor_initializer : COLON THIS OPEN_PARENS $$46 opt_argument_list CLOSE_PARENS", |
|
//t "constructor_initializer : 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 "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 "$$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 opt_type_argument_list", |
|
//t "member_access : builtin_types DOT IDENTIFIER opt_type_argument_list", |
|
//t "member_access : BASE DOT IDENTIFIER opt_type_argument_list", |
|
//t "member_access : qualified_alias_member IDENTIFIER opt_type_argument_list", |
|
//t "member_access : primary_expression DOT GENERATE_COMPLETION", |
|
//t "member_access : primary_expression DOT IDENTIFIER GENERATE_COMPLETION", |
|
//t "member_access : builtin_types DOT GENERATE_COMPLETION", |
|
//t "member_access : builtin_types DOT IDENTIFIER GENERATE_COMPLETION", |
|
//t "invocation_expression : primary_expression open_parens_any opt_argument_list close_parens", |
|
//t "opt_object_or_collection_initializer :", |
|
//t "opt_object_or_collection_initializer : object_or_collection_initializer", |
|
//t "object_or_collection_initializer : OPEN_BRACE opt_member_initializer_list close_brace_or_complete_completion", |
|
//t "object_or_collection_initializer : OPEN_BRACE member_initializer_list COMMA CLOSE_BRACE", |
|
//t "opt_member_initializer_list :", |
|
//t "opt_member_initializer_list : member_initializer_list", |
|
//t "member_initializer_list : member_initializer", |
|
//t "member_initializer_list : member_initializer_list COMMA member_initializer", |
|
//t "member_initializer_list : member_initializer_list error", |
|
//t "member_initializer : IDENTIFIER ASSIGN initializer_value", |
|
//t "member_initializer : GENERATE_COMPLETION", |
|
//t "member_initializer : non_assignment_expression opt_COMPLETE_COMPLETION", |
|
//t "member_initializer : OPEN_BRACE expression_list CLOSE_BRACE", |
|
//t "member_initializer : OPEN_BRACE CLOSE_BRACE", |
|
//t "initializer_value : expression", |
|
//t "initializer_value : object_or_collection_initializer", |
|
//t "opt_argument_list :", |
|
//t "opt_argument_list : argument_list", |
|
//t "argument_list : argument_or_named_argument", |
|
//t "argument_list : argument_list COMMA argument", |
|
//t "argument_list : argument_list COMMA named_argument", |
|
//t "argument_list : argument_list COMMA 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 ASSIGN variable_initializer", |
|
//t "anonymous_type_parameter : IDENTIFIER", |
|
//t "anonymous_type_parameter : member_access", |
|
//t "anonymous_type_parameter : error", |
|
//t "opt_rank_specifier :", |
|
//t "opt_rank_specifier : rank_specifiers", |
|
//t "rank_specifiers : rank_specifier", |
|
//t "rank_specifiers : rank_specifier rank_specifiers", |
|
//t "rank_specifier : OPEN_BRACKET CLOSE_BRACKET", |
|
//t "rank_specifier : OPEN_BRACKET dim_separators CLOSE_BRACKET", |
|
//t "dim_separators : COMMA", |
|
//t "dim_separators : dim_separators COMMA", |
|
//t "opt_array_initializer :", |
|
//t "opt_array_initializer : array_initializer", |
|
//t "array_initializer : OPEN_BRACE CLOSE_BRACE", |
|
//t "array_initializer : OPEN_BRACE variable_initializer_list opt_comma CLOSE_BRACE", |
|
//t "variable_initializer_list : variable_initializer", |
|
//t "variable_initializer_list : variable_initializer_list COMMA variable_initializer", |
|
//t "$$65 :", |
|
//t "typeof_expression : TYPEOF $$65 open_parens_any typeof_type_expression CLOSE_PARENS", |
|
//t "typeof_type_expression : type_and_void", |
|
//t "typeof_type_expression : unbound_type_name", |
|
//t "typeof_type_expression : error", |
|
//t "unbound_type_name : identifier_inside_body generic_dimension", |
|
//t "unbound_type_name : qualified_alias_member identifier_inside_body generic_dimension", |
|
//t "unbound_type_name : unbound_type_name DOT identifier_inside_body", |
|
//t "unbound_type_name : unbound_type_name DOT identifier_inside_body generic_dimension", |
|
//t "unbound_type_name : namespace_or_type_expr DOT identifier_inside_body generic_dimension", |
|
//t "generic_dimension : GENERIC_DIMENSION", |
|
//t "qualified_alias_member : IDENTIFIER DOUBLE_COLON", |
|
//t "sizeof_expression : SIZEOF open_parens_any type CLOSE_PARENS", |
|
//t "checked_expression : CHECKED open_parens_any expression CLOSE_PARENS", |
|
//t "unchecked_expression : UNCHECKED open_parens_any expression CLOSE_PARENS", |
|
//t "pointer_member_access : primary_expression OP_PTR IDENTIFIER opt_type_argument_list", |
|
//t "$$66 :", |
|
//t "anonymous_method_expression : DELEGATE opt_anonymous_method_signature $$66 block", |
|
//t "$$67 :", |
|
//t "anonymous_method_expression : ASYNC DELEGATE opt_anonymous_method_signature $$67 block", |
|
//t "opt_anonymous_method_signature :", |
|
//t "opt_anonymous_method_signature : anonymous_method_signature", |
|
//t "$$68 :", |
|
//t "anonymous_method_signature : OPEN_PARENS $$68 opt_formal_parameter_list CLOSE_PARENS", |
|
//t "default_value_expression : DEFAULT open_parens_any type CLOSE_PARENS", |
|
//t "unary_expression : primary_expression", |
|
//t "unary_expression : BANG prefixed_unary_expression", |
|
//t "unary_expression : TILDE prefixed_unary_expression", |
|
//t "unary_expression : OPEN_PARENS_CAST type CLOSE_PARENS prefixed_unary_expression", |
|
//t "unary_expression : AWAIT prefixed_unary_expression", |
|
//t "prefixed_unary_expression : unary_expression", |
|
//t "prefixed_unary_expression : PLUS prefixed_unary_expression", |
|
//t "prefixed_unary_expression : MINUS prefixed_unary_expression", |
|
//t "prefixed_unary_expression : OP_INC prefixed_unary_expression", |
|
//t "prefixed_unary_expression : OP_DEC prefixed_unary_expression", |
|
//t "prefixed_unary_expression : STAR prefixed_unary_expression", |
|
//t "prefixed_unary_expression : BITWISE_AND prefixed_unary_expression", |
|
//t "multiplicative_expression : prefixed_unary_expression", |
|
//t "multiplicative_expression : multiplicative_expression STAR prefixed_unary_expression", |
|
//t "multiplicative_expression : multiplicative_expression DIV prefixed_unary_expression", |
|
//t "multiplicative_expression : multiplicative_expression PERCENT prefixed_unary_expression", |
|
//t "additive_expression : multiplicative_expression", |
|
//t "additive_expression : additive_expression PLUS multiplicative_expression", |
|
//t "additive_expression : additive_expression MINUS multiplicative_expression", |
|
//t "additive_expression : parenthesized_expression MINUS multiplicative_expression", |
|
//t "additive_expression : additive_expression AS type", |
|
//t "additive_expression : additive_expression IS type", |
|
//t "shift_expression : additive_expression", |
|
//t "shift_expression : shift_expression OP_SHIFT_LEFT additive_expression", |
|
//t "shift_expression : shift_expression OP_SHIFT_RIGHT additive_expression", |
|
//t "relational_expression : shift_expression", |
|
//t "relational_expression : relational_expression OP_LT shift_expression", |
|
//t "relational_expression : relational_expression OP_GT shift_expression", |
|
//t "relational_expression : relational_expression OP_LE shift_expression", |
|
//t "relational_expression : relational_expression OP_GE shift_expression", |
|
//t "equality_expression : relational_expression", |
|
//t "equality_expression : equality_expression OP_EQ relational_expression", |
|
//t "equality_expression : equality_expression OP_NE relational_expression", |
|
//t "and_expression : equality_expression", |
|
//t "and_expression : and_expression BITWISE_AND equality_expression", |
|
//t "exclusive_or_expression : and_expression", |
|
//t "exclusive_or_expression : exclusive_or_expression CARRET and_expression", |
|
//t "inclusive_or_expression : exclusive_or_expression", |
|
//t "inclusive_or_expression : inclusive_or_expression BITWISE_OR exclusive_or_expression", |
|
//t "conditional_and_expression : inclusive_or_expression", |
|
//t "conditional_and_expression : conditional_and_expression OP_AND inclusive_or_expression", |
|
//t "conditional_or_expression : conditional_and_expression", |
|
//t "conditional_or_expression : conditional_or_expression OP_OR conditional_and_expression", |
|
//t "null_coalescing_expression : conditional_or_expression", |
|
//t "null_coalescing_expression : conditional_or_expression OP_COALESCING null_coalescing_expression", |
|
//t "conditional_expression : null_coalescing_expression", |
|
//t "conditional_expression : null_coalescing_expression INTERR expression COLON expression_or_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 "opt_lambda_parameter_list :", |
|
//t "opt_lambda_parameter_list : lambda_parameter_list", |
|
//t "lambda_expression_body : lambda_expression_body_simple", |
|
//t "lambda_expression_body : block", |
|
//t "$$69 :", |
|
//t "lambda_expression_body_simple : $$69 expression_or_error", |
|
//t "expression_or_error : expression", |
|
//t "expression_or_error : error", |
|
//t "$$70 :", |
|
//t "lambda_expression : IDENTIFIER ARROW $$70 lambda_expression_body", |
|
//t "$$71 :", |
|
//t "lambda_expression : ASYNC identifier_inside_body ARROW $$71 lambda_expression_body", |
|
//t "$$72 :", |
|
//t "$$73 :", |
|
//t "lambda_expression : OPEN_PARENS_LAMBDA $$72 opt_lambda_parameter_list CLOSE_PARENS ARROW $$73 lambda_expression_body", |
|
//t "$$74 :", |
|
//t "$$75 :", |
|
//t "lambda_expression : ASYNC OPEN_PARENS_LAMBDA $$74 opt_lambda_parameter_list CLOSE_PARENS ARROW $$75 lambda_expression_body", |
|
//t "expression : assignment_expression", |
|
//t "expression : non_assignment_expression", |
|
//t "non_assignment_expression : conditional_expression", |
|
//t "non_assignment_expression : lambda_expression", |
|
//t "non_assignment_expression : query_expression", |
|
//t "non_assignment_expression : ARGLIST", |
|
//t "undocumented_expressions : REFVALUE OPEN_PARENS non_assignment_expression COMMA type CLOSE_PARENS", |
|
//t "undocumented_expressions : REFTYPE open_parens_any expression CLOSE_PARENS", |
|
//t "undocumented_expressions : MAKEREF open_parens_any expression CLOSE_PARENS", |
|
//t "constant_expression : expression", |
|
//t "boolean_expression : expression", |
|
//t "$$76 :", |
|
//t "$$77 :", |
|
//t "$$78 :", |
|
//t "$$79 :", |
|
//t "class_declaration : opt_attributes opt_modifiers opt_partial CLASS $$76 type_declaration_name $$77 opt_class_base opt_type_parameter_constraints_clauses $$78 OPEN_BRACE opt_class_member_declarations CLOSE_BRACE $$79 opt_semicolon", |
|
//t "opt_partial :", |
|
//t "opt_partial : PARTIAL", |
|
//t "opt_modifiers :", |
|
//t "opt_modifiers : modifiers", |
|
//t "modifiers : modifier", |
|
//t "modifiers : modifiers modifier", |
|
//t "modifier : NEW", |
|
//t "modifier : PUBLIC", |
|
//t "modifier : PROTECTED", |
|
//t "modifier : INTERNAL", |
|
//t "modifier : PRIVATE", |
|
//t "modifier : ABSTRACT", |
|
//t "modifier : SEALED", |
|
//t "modifier : STATIC", |
|
//t "modifier : READONLY", |
|
//t "modifier : VIRTUAL", |
|
//t "modifier : OVERRIDE", |
|
//t "modifier : EXTERN", |
|
//t "modifier : VOLATILE", |
|
//t "modifier : UNSAFE", |
|
//t "modifier : ASYNC", |
|
//t "opt_class_base :", |
|
//t "opt_class_base : COLON type_list", |
|
//t "opt_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 "$$80 :", |
|
//t "block : OPEN_BRACE $$80 opt_statement_list block_end", |
|
//t "block_end : CLOSE_BRACE", |
|
//t "block_end : COMPLETE_COMPLETION", |
|
//t "$$81 :", |
|
//t "block_prepared : OPEN_BRACE $$81 opt_statement_list CLOSE_BRACE", |
|
//t "block_prepared : CLOSE_BRACE", |
|
//t "opt_statement_list :", |
|
//t "opt_statement_list : statement_list", |
|
//t "statement_list : statement", |
|
//t "statement_list : statement_list statement", |
|
//t "statement : block_variable_declaration", |
|
//t "statement : valid_declaration_statement", |
|
//t "statement : labeled_statement", |
|
//t "statement : IDENTIFIER error", |
|
//t "statement : error", |
|
//t "interactive_statement_list : interactive_statement", |
|
//t "interactive_statement_list : interactive_statement_list interactive_statement", |
|
//t "interactive_statement : block_variable_declaration", |
|
//t "interactive_statement : interactive_valid_declaration_statement", |
|
//t "interactive_statement : labeled_statement", |
|
//t "valid_declaration_statement : block", |
|
//t "valid_declaration_statement : empty_statement", |
|
//t "valid_declaration_statement : expression_statement", |
|
//t "valid_declaration_statement : selection_statement", |
|
//t "valid_declaration_statement : iteration_statement", |
|
//t "valid_declaration_statement : jump_statement", |
|
//t "valid_declaration_statement : try_statement", |
|
//t "valid_declaration_statement : checked_statement", |
|
//t "valid_declaration_statement : unchecked_statement", |
|
//t "valid_declaration_statement : lock_statement", |
|
//t "valid_declaration_statement : using_statement", |
|
//t "valid_declaration_statement : unsafe_statement", |
|
//t "valid_declaration_statement : fixed_statement", |
|
//t "interactive_valid_declaration_statement : block", |
|
//t "interactive_valid_declaration_statement : empty_statement", |
|
//t "interactive_valid_declaration_statement : interactive_expression_statement", |
|
//t "interactive_valid_declaration_statement : selection_statement", |
|
//t "interactive_valid_declaration_statement : iteration_statement", |
|
//t "interactive_valid_declaration_statement : jump_statement", |
|
//t "interactive_valid_declaration_statement : try_statement", |
|
//t "interactive_valid_declaration_statement : checked_statement", |
|
//t "interactive_valid_declaration_statement : unchecked_statement", |
|
//t "interactive_valid_declaration_statement : lock_statement", |
|
//t "interactive_valid_declaration_statement : using_statement", |
|
//t "interactive_valid_declaration_statement : unsafe_statement", |
|
//t "interactive_valid_declaration_statement : fixed_statement", |
|
//t "embedded_statement : valid_declaration_statement", |
|
//t "embedded_statement : block_variable_declaration", |
|
//t "embedded_statement : labeled_statement", |
|
//t "embedded_statement : error", |
|
//t "empty_statement : SEMICOLON", |
|
//t "$$82 :", |
|
//t "labeled_statement : identifier_inside_body COLON $$82 statement", |
|
//t "variable_type : variable_type_simple", |
|
//t "variable_type : variable_type_simple rank_specifiers", |
|
//t "variable_type_simple : primary_expression_or_type opt_nullable", |
|
//t "variable_type_simple : primary_expression_or_type pointer_stars", |
|
//t "variable_type_simple : builtin_types opt_nullable", |
|
//t "variable_type_simple : builtin_types pointer_stars", |
|
//t "variable_type_simple : VOID pointer_stars", |
|
//t "variable_type_simple : VOID", |
|
//t "pointer_stars : pointer_star", |
|
//t "pointer_stars : pointer_star pointer_stars", |
|
//t "pointer_star : STAR", |
|
//t "identifier_inside_body : IDENTIFIER", |
|
//t "identifier_inside_body : AWAIT", |
|
//t "$$83 :", |
|
//t "block_variable_declaration : variable_type identifier_inside_body $$83 opt_local_variable_initializer opt_variable_declarators semicolon_or_handle_error_close_brace", |
|
//t "$$84 :", |
|
//t "block_variable_declaration : CONST variable_type identifier_inside_body $$84 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 "$$85 :", |
|
//t "switch_statement : SWITCH open_parens_any expression CLOSE_PARENS OPEN_BRACE $$85 opt_switch_sections CLOSE_BRACE", |
|
//t "switch_statement : SWITCH open_parens_any expression error", |
|
//t "opt_switch_sections :", |
|
//t "opt_switch_sections : switch_sections", |
|
//t "switch_sections : switch_section", |
|
//t "switch_sections : switch_sections switch_section", |
|
//t "switch_sections : error", |
|
//t "$$86 :", |
|
//t "switch_section : switch_labels $$86 statement_list", |
|
//t "switch_labels : switch_label", |
|
//t "switch_labels : switch_labels switch_label", |
|
//t "switch_label : CASE constant_expression COLON", |
|
//t "switch_label : DEFAULT_COLON", |
|
//t "iteration_statement : while_statement", |
|
//t "iteration_statement : do_statement", |
|
//t "iteration_statement : for_statement", |
|
//t "iteration_statement : foreach_statement", |
|
//t "while_statement : WHILE open_parens_any boolean_expression CLOSE_PARENS embedded_statement", |
|
//t "while_statement : WHILE open_parens_any boolean_expression error", |
|
//t "do_statement : DO embedded_statement WHILE open_parens_any boolean_expression CLOSE_PARENS SEMICOLON", |
|
//t "do_statement : DO embedded_statement error", |
|
//t "do_statement : DO embedded_statement WHILE open_parens_any boolean_expression error", |
|
//t "$$87 :", |
|
//t "for_statement : FOR open_parens_any $$87 for_statement_cont", |
|
//t "$$88 :", |
|
//t "for_statement_cont : opt_for_initializer SEMICOLON $$88 for_statement_condition", |
|
//t "for_statement_cont : opt_for_initializer CLOSE_PARENS", |
|
//t "$$89 :", |
|
//t "for_statement_condition : opt_for_condition SEMICOLON $$89 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 "$$90 :", |
|
//t "for_initializer : variable_type identifier_inside_body $$90 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 "$$91 :", |
|
//t "foreach_statement : FOREACH open_parens_any type identifier_inside_body IN expression CLOSE_PARENS $$91 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 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 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 "$$92 :", |
|
//t "catch_clause : CATCH open_parens_any type opt_identifier CLOSE_PARENS $$92 block_prepared", |
|
//t "catch_clause : CATCH open_parens_any error", |
|
//t "checked_statement : CHECKED block", |
|
//t "unchecked_statement : UNCHECKED block", |
|
//t "$$93 :", |
|
//t "unsafe_statement : UNSAFE $$93 block", |
|
//t "lock_statement : LOCK open_parens_any expression CLOSE_PARENS embedded_statement", |
|
//t "lock_statement : LOCK open_parens_any expression error", |
|
//t "$$94 :", |
|
//t "$$95 :", |
|
//t "fixed_statement : FIXED open_parens_any variable_type identifier_inside_body $$94 using_or_fixed_variable_initializer opt_using_or_fixed_variable_declarators CLOSE_PARENS $$95 embedded_statement", |
|
//t "$$96 :", |
|
//t "$$97 :", |
|
//t "using_statement : USING open_parens_any variable_type identifier_inside_body $$96 using_initialization CLOSE_PARENS $$97 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 "$$98 :", |
|
//t "from_clause : FROM identifier_inside_body IN $$98 expression_or_error", |
|
//t "$$99 :", |
|
//t "from_clause : FROM type identifier_inside_body IN $$99 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 "$$100 :", |
|
//t "select_or_group_clause : SELECT $$100 expression_or_error", |
|
//t "$$101 :", |
|
//t "$$102 :", |
|
//t "select_or_group_clause : GROUP $$101 expression_or_error $$102 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 "$$103 :", |
|
//t "let_clause : LET identifier_inside_body ASSIGN $$103 expression_or_error", |
|
//t "$$104 :", |
|
//t "where_clause : WHERE $$104 expression_or_error", |
|
//t "$$105 :", |
|
//t "$$106 :", |
|
//t "$$107 :", |
|
//t "join_clause : JOIN identifier_inside_body IN $$105 expression_or_error ON $$106 expression_or_error EQUALS $$107 expression_or_error opt_join_into", |
|
//t "$$108 :", |
|
//t "$$109 :", |
|
//t "$$110 :", |
|
//t "join_clause : JOIN type identifier_inside_body IN $$108 expression_or_error ON $$109 expression_or_error EQUALS $$110 expression_or_error opt_join_into", |
|
//t "opt_join_into :", |
|
//t "opt_join_into : INTO identifier_inside_body", |
|
//t "$$111 :", |
|
//t "orderby_clause : ORDERBY $$111 orderings", |
|
//t "orderings : order_by", |
|
//t "$$112 :", |
|
//t "orderings : order_by COMMA $$112 orderings_then_by", |
|
//t "orderings_then_by : then_by", |
|
//t "$$113 :", |
|
//t "orderings_then_by : orderings_then_by COMMA $$113 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 "$$114 :", |
|
//t "opt_query_continuation : INTO identifier_inside_body $$114 query_body", |
|
//t "interactive_parsing : EVAL_STATEMENT_PARSER EOF", |
|
//t "interactive_parsing : EVAL_USING_DECLARATIONS_UNIT_PARSER using_directives opt_COMPLETE_COMPLETION", |
|
//t "$$115 :", |
|
//t "interactive_parsing : EVAL_STATEMENT_PARSER $$115 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 "$$116 :", |
|
//t "doc_cref : doc_type_declaration_name DOT THIS OPEN_BRACKET $$116 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 "$$117 :", |
|
//t "opt_doc_method_sig : OPEN_PARENS $$117 opt_doc_parameters CLOSE_PARENS", |
|
//t "opt_doc_parameters :", |
|
//t "opt_doc_parameters : doc_parameters", |
|
//t "doc_parameters : doc_parameter", |
|
//t "doc_parameters : doc_parameters COMMA doc_parameter", |
|
//t "doc_parameter : opt_parameter_modifier parameter_type", |
|
//t }; |
|
//t public static string getRule (int index) { |
|
//t return yyRule [index]; |
|
//t } |
|
//t} |
|
protected static readonly string [] yyNames = { |
|
"end-of-file",null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,null,null,null,null,null,null,null, |
|
null,null,null,null,null,null,null,"EOF","NONE","ERROR", |
|
"FIRST_KEYWORD","ABSTRACT","AS","ADD","BASE","BOOL","BREAK","BYTE", |
|
"CASE","CATCH","CHAR","CHECKED","CLASS","CONST","CONTINUE","DECIMAL", |
|
"DEFAULT","DELEGATE","DO","DOUBLE","ELSE","ENUM","EVENT","EXPLICIT", |
|
"EXTERN","FALSE","FINALLY","FIXED","FLOAT","FOR","FOREACH","GOTO", |
|
"IF","IMPLICIT","IN","INT","INTERFACE","INTERNAL","IS","LOCK","LONG", |
|
"NAMESPACE","NEW","NULL","OBJECT","OPERATOR","OUT","OVERRIDE", |
|
"PARAMS","PRIVATE","PROTECTED","PUBLIC","READONLY","REF","RETURN", |
|
"REMOVE","SBYTE","SEALED","SHORT","SIZEOF","STACKALLOC","STATIC", |
|
"STRING","STRUCT","SWITCH","THIS","THROW","TRUE","TRY","TYPEOF", |
|
"UINT","ULONG","UNCHECKED","UNSAFE","USHORT","USING","VIRTUAL","VOID", |
|
"VOLATILE","WHERE","WHILE","ARGLIST","PARTIAL","ARROW","FROM", |
|
"FROM_FIRST","JOIN","ON","EQUALS","SELECT","GROUP","BY","LET", |
|
"ORDERBY","ASCENDING","DESCENDING","INTO","INTERR_NULLABLE", |
|
"EXTERN_ALIAS","REFVALUE","REFTYPE","MAKEREF","ASYNC","AWAIT","GET", |
|
"SET","LAST_KEYWORD","OPEN_BRACE","CLOSE_BRACE","OPEN_BRACKET", |
|
"CLOSE_BRACKET","OPEN_PARENS","CLOSE_PARENS","DOT","COMMA","COLON", |
|
"SEMICOLON","TILDE","PLUS","MINUS","BANG","ASSIGN","OP_LT","OP_GT", |
|
"BITWISE_AND","BITWISE_OR","STAR","PERCENT","DIV","CARRET","INTERR", |
|
"DOUBLE_COLON","OP_INC","OP_DEC","OP_SHIFT_LEFT","OP_SHIFT_RIGHT", |
|
"OP_LE","OP_GE","OP_EQ","OP_NE","OP_AND","OP_OR","OP_MULT_ASSIGN", |
|
"OP_DIV_ASSIGN","OP_MOD_ASSIGN","OP_ADD_ASSIGN","OP_SUB_ASSIGN", |
|
"OP_SHIFT_LEFT_ASSIGN","OP_SHIFT_RIGHT_ASSIGN","OP_AND_ASSIGN", |
|
"OP_XOR_ASSIGN","OP_OR_ASSIGN","OP_PTR","OP_COALESCING", |
|
"OP_GENERICS_LT","OP_GENERICS_LT_DECL","OP_GENERICS_GT","LITERAL", |
|
"IDENTIFIER","OPEN_PARENS_LAMBDA","OPEN_PARENS_CAST", |
|
"GENERIC_DIMENSION","DEFAULT_COLON","OPEN_BRACKET_EXPR", |
|
"EVAL_STATEMENT_PARSER","EVAL_COMPILATION_UNIT_PARSER", |
|
"EVAL_USING_DECLARATIONS_UNIT_PARSER","DOC_SEE","GENERATE_COMPLETION", |
|
"COMPLETE_COMPLETION","UMINUS", |
|
}; |
|
|
|
/** index-checked interface to yyNames[]. |
|
@param token single character or %token value. |
|
@return token name or [illegal] or [unknown]. |
|
*/ |
|
//t public static string yyname (int token) { |
|
//t if ((token < 0) || (token > yyNames.Length)) return "[illegal]"; |
|
//t string name; |
|
//t if ((name = yyNames[token]) != null) return name; |
|
//t return "[unknown]"; |
|
//t } |
|
|
|
int yyExpectingState; |
|
/** computes list of expected tokens on error by tracing the tables. |
|
@param state for which to compute the list. |
|
@return list of token names. |
|
*/ |
|
protected int [] yyExpectingTokens (int state){ |
|
int token, n, len = 0; |
|
bool[] ok = new bool[yyNames.Length]; |
|
if ((n = yySindex[state]) != 0) |
|
for (token = n < 0 ? -n : 0; |
|
(token < yyNames.Length) && (n+token < yyTable.Length); ++ token) |
|
if (yyCheck[n+token] == token && !ok[token] && yyNames[token] != null) { |
|
++ len; |
|
ok[token] = true; |
|
} |
|
if ((n = yyRindex[state]) != 0) |
|
for (token = n < 0 ? -n : 0; |
|
(token < yyNames.Length) && (n+token < yyTable.Length); ++ token) |
|
if (yyCheck[n+token] == token && !ok[token] && yyNames[token] != null) { |
|
++ len; |
|
ok[token] = true; |
|
} |
|
int [] result = new int [len]; |
|
for (n = token = 0; n < len; ++ token) |
|
if (ok[token]) result[n++] = token; |
|
return result; |
|
} |
|
protected string[] yyExpecting (int state) { |
|
int [] tokens = yyExpectingTokens (state); |
|
string [] result = new string[tokens.Length]; |
|
for (int n = 0; n < tokens.Length; n++) |
|
result[n++] = yyNames[tokens [n]]; |
|
return result; |
|
} |
|
|
|
/** the generated parser, with debugging messages. |
|
Maintains a state and a value stack, currently with fixed maximum size. |
|
@param yyLex scanner. |
|
@param yydebug debug message writer implementing yyDebug, or null. |
|
@return result of the last reduction, if any. |
|
@throws yyException on irrecoverable parse error. |
|
*/ |
|
internal Object yyparse (yyParser.yyInput yyLex, Object yyd) |
|
{ |
|
//t this.debug = (yydebug.yyDebug)yyd; |
|
return yyparse(yyLex); |
|
} |
|
|
|
/** initial size and increment of the state/value stack [default 256]. |
|
This is not final so that it can be overwritten outside of invocations |
|
of yyparse(). |
|
*/ |
|
protected int yyMax; |
|
|
|
/** executed at the beginning of a reduce action. |
|
Used as $$ = yyDefault($1), prior to the user-specified action, if any. |
|
Can be overwritten to provide deep copy, etc. |
|
@param first value for $1, or null. |
|
@return first. |
|
*/ |
|
protected Object yyDefault (Object first) { |
|
return first; |
|
} |
|
|
|
static int[] global_yyStates; |
|
static object[] global_yyVals; |
|
protected bool use_global_stacks; |
|
object[] yyVals; // value stack |
|
object yyVal; // value stack ptr |
|
int yyToken; // current input |
|
int yyTop; |
|
|
|
/** the generated parser. |
|
Maintains a state and a value stack, currently with fixed maximum size. |
|
@param yyLex scanner. |
|
@return result of the last reduction, if any. |
|
@throws yyException on irrecoverable parse error. |
|
*/ |
|
internal Object yyparse (yyParser.yyInput yyLex) |
|
{ |
|
if (yyMax <= 0) yyMax = 256; // initial size |
|
int yyState = 0; // state stack ptr |
|
int [] yyStates; // state stack |
|
yyVal = null; |
|
yyToken = -1; |
|
int yyErrorFlag = 0; // #tks to shift |
|
if (use_global_stacks && global_yyStates != null) { |
|
yyVals = global_yyVals; |
|
yyStates = global_yyStates; |
|
} else { |
|
yyVals = new object [yyMax]; |
|
yyStates = new int [yyMax]; |
|
if (use_global_stacks) { |
|
global_yyVals = yyVals; |
|
global_yyStates = yyStates; |
|
} |
|
} |
|
|
|
/*yyLoop:*/ for (yyTop = 0;; ++ yyTop) { |
|
if (yyTop >= yyStates.Length) { // dynamically increase |
|
global::System.Array.Resize (ref yyStates, yyStates.Length+yyMax); |
|
global::System.Array.Resize (ref yyVals, yyVals.Length+yyMax); |
|
} |
|
yyStates[yyTop] = yyState; |
|
yyVals[yyTop] = yyVal; |
|
//t if (debug != null) debug.push(yyState, yyVal); |
|
|
|
/*yyDiscarded:*/ while (true) { // discarding a token does not change stack |
|
int yyN; |
|
if ((yyN = yyDefRed[yyState]) == 0) { // else [default] reduce (yyN) |
|
if (yyToken < 0) { |
|
yyToken = yyLex.advance() ? yyLex.token() : 0; |
|
//t if (debug != null) |
|
//t debug.lex(yyState, yyToken, yyname(yyToken), yyLex.value()); |
|
} |
|
if ((yyN = yySindex[yyState]) != 0 && ((yyN += yyToken) >= 0) |
|
&& (yyN < yyTable.Length) && (yyCheck[yyN] == yyToken)) { |
|
//t if (debug != null) |
|
//t debug.shift(yyState, yyTable[yyN], yyErrorFlag-1); |
|
yyState = yyTable[yyN]; // shift to yyN |
|
yyVal = yyLex.value(); |
|
yyToken = -1; |
|
if (yyErrorFlag > 0) -- yyErrorFlag; |
|
goto continue_yyLoop; |
|
} |
|
if ((yyN = yyRindex[yyState]) != 0 && (yyN += yyToken) >= 0 |
|
&& yyN < yyTable.Length && yyCheck[yyN] == yyToken) |
|
yyN = yyTable[yyN]; // reduce (yyN) |
|
else |
|
switch (yyErrorFlag) { |
|
|
|
case 0: |
|
yyExpectingState = yyState; |
|
// yyerror(String.Format ("syntax error, got token `{0}'", yyname (yyToken)), yyExpecting(yyState)); |
|
//t if (debug != null) debug.error("syntax error"); |
|
if (yyToken == 0 /*eof*/ || yyToken == eof_token) throw new yyParser.yyUnexpectedEof (); |
|
goto case 1; |
|
case 1: case 2: |
|
yyErrorFlag = 3; |
|
do { |
|
if ((yyN = yySindex[yyStates[yyTop]]) != 0 |
|
&& (yyN += Token.yyErrorCode) >= 0 && yyN < yyTable.Length |
|
&& yyCheck[yyN] == Token.yyErrorCode) { |
|
//t if (debug != null) |
|
//t debug.shift(yyStates[yyTop], yyTable[yyN], 3); |
|
yyState = yyTable[yyN]; |
|
yyVal = yyLex.value(); |
|
goto continue_yyLoop; |
|
} |
|
//t if (debug != null) debug.pop(yyStates[yyTop]); |
|
} while (-- yyTop >= 0); |
|
//t if (debug != null) debug.reject(); |
|
throw new yyParser.yyException("irrecoverable syntax error"); |
|
|
|
case 3: |
|
if (yyToken == 0) { |
|
//t if (debug != null) debug.reject(); |
|
throw new yyParser.yyException("irrecoverable syntax error at end-of-file"); |
|
} |
|
//t if (debug != null) |
|
//t debug.discard(yyState, yyToken, yyname(yyToken), |
|
//t yyLex.value()); |
|
yyToken = -1; |
|
goto continue_yyDiscarded; // leave stack alone |
|
} |
|
} |
|
int yyV = yyTop + 1-yyLen[yyN]; |
|
//t if (debug != null) |
|
//t debug.reduce(yyState, yyStates[yyV-1], yyN, YYRules.getRule (yyN), yyLen[yyN]); |
|
yyVal = yyV > yyTop ? null : yyVals[yyV]; // yyVal = yyDefault(yyV > yyTop ? null : yyVals[yyV]); |
|
switch (yyN) { |
|
case 1: |
|
#line 390 "cs-parser.jay" |
|
{ |
|
Lexer.check_incorrect_doc_comment (); |
|
} |
|
break; |
|
case 2: |
|
#line 391 "cs-parser.jay" |
|
{ Lexer.CompleteOnEOF = false; } |
|
break; |
|
case 6: |
|
case_6(); |
|
break; |
|
case 7: |
|
#line 410 "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 455 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
} |
|
break; |
|
case 17: |
|
case_17(); |
|
break; |
|
case 18: |
|
case_18(); |
|
break; |
|
case 19: |
|
case_19(); |
|
break; |
|
case 20: |
|
case_20(); |
|
break; |
|
case 21: |
|
case_21(); |
|
break; |
|
case 22: |
|
case_22(); |
|
break; |
|
case 23: |
|
case_23(); |
|
break; |
|
case 24: |
|
case_24(); |
|
break; |
|
case 25: |
|
case_25(); |
|
break; |
|
case 26: |
|
case_26(); |
|
break; |
|
case 39: |
|
case_39(); |
|
break; |
|
case 40: |
|
#line 621 "cs-parser.jay" |
|
{ |
|
current_namespace.DeclarationFound = true; |
|
} |
|
break; |
|
case 41: |
|
case_41(); |
|
break; |
|
case 49: |
|
case_49(); |
|
break; |
|
case 50: |
|
case_50(); |
|
break; |
|
case 51: |
|
case_51(); |
|
break; |
|
case 52: |
|
case_52(); |
|
break; |
|
case 53: |
|
case_53(); |
|
break; |
|
case 54: |
|
case_54(); |
|
break; |
|
case 55: |
|
case_55(); |
|
break; |
|
case 56: |
|
case_56(); |
|
break; |
|
case 57: |
|
#line 735 "cs-parser.jay" |
|
{ yyVal = "event"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 58: |
|
#line 736 "cs-parser.jay" |
|
{ yyVal = "return"; savedCloseLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 59: |
|
case_59(); |
|
break; |
|
case 60: |
|
#line 753 "cs-parser.jay" |
|
{ |
|
yyVal = new List<Attribute> (4) { (Attribute) yyVals[0+yyTop] }; |
|
} |
|
break; |
|
case 61: |
|
case_61(); |
|
break; |
|
case 62: |
|
#line 768 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 63: |
|
case_63(); |
|
break; |
|
case 65: |
|
#line 796 "cs-parser.jay" |
|
{ yyVal = null; HadAttributeParens = false; } |
|
break; |
|
case 66: |
|
case_66(); |
|
break; |
|
case 67: |
|
#line 808 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 68: |
|
case_68(); |
|
break; |
|
case 69: |
|
case_69(); |
|
break; |
|
case 70: |
|
case_70(); |
|
break; |
|
case 71: |
|
case_71(); |
|
break; |
|
case 72: |
|
#line 852 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 74: |
|
#line 860 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 75: |
|
case_75(); |
|
break; |
|
case 76: |
|
case_76(); |
|
break; |
|
case 77: |
|
#line 886 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 78: |
|
#line 890 "cs-parser.jay" |
|
{ |
|
yyVal = Argument.AType.Ref; |
|
} |
|
break; |
|
case 79: |
|
#line 894 "cs-parser.jay" |
|
{ |
|
yyVal = Argument.AType.Out; |
|
} |
|
break; |
|
case 82: |
|
#line 906 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 83: |
|
#line 910 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 95: |
|
case_95(); |
|
break; |
|
case 96: |
|
#line 941 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 97: |
|
case_97(); |
|
break; |
|
case 98: |
|
case_98(); |
|
break; |
|
case 99: |
|
case_99(); |
|
break; |
|
case 100: |
|
case_100(); |
|
break; |
|
case 101: |
|
case_101(); |
|
break; |
|
case 102: |
|
#line 984 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
} |
|
break; |
|
case 103: |
|
case_103(); |
|
break; |
|
case 104: |
|
case_104(); |
|
break; |
|
case 107: |
|
#line 1025 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 108: |
|
#line 1029 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 109: |
|
case_109(); |
|
break; |
|
case 110: |
|
#line 1045 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 111: |
|
case_111(); |
|
break; |
|
case 112: |
|
case_112(); |
|
break; |
|
case 115: |
|
case_115(); |
|
break; |
|
case 116: |
|
case_116(); |
|
break; |
|
case 117: |
|
case_117(); |
|
break; |
|
case 118: |
|
case_118(); |
|
break; |
|
case 119: |
|
#line 1124 "cs-parser.jay" |
|
{ |
|
report.Error (1641, GetLocation (yyVals[-1+yyTop]), "A fixed size buffer field must have the array size specifier after the field name"); |
|
} |
|
break; |
|
case 121: |
|
case_121(); |
|
break; |
|
case 122: |
|
case_122(); |
|
break; |
|
case 125: |
|
#line 1154 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 126: |
|
#line 1158 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 127: |
|
case_127(); |
|
break; |
|
case 128: |
|
#line 1171 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 129: |
|
case_129(); |
|
break; |
|
case 132: |
|
#line 1190 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 133: |
|
#line 1194 "cs-parser.jay" |
|
{ |
|
current_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 134: |
|
case_134(); |
|
break; |
|
case 135: |
|
#line 1210 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 136: |
|
case_136(); |
|
break; |
|
case 137: |
|
case_137(); |
|
break; |
|
case 140: |
|
case_140(); |
|
break; |
|
case 141: |
|
case_141(); |
|
break; |
|
case 142: |
|
case_142(); |
|
break; |
|
case 143: |
|
#line 1281 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
break; |
|
case 144: |
|
#line 1285 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 145: |
|
case_145(); |
|
break; |
|
case 146: |
|
#line 1311 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
break; |
|
case 147: |
|
case_147(); |
|
break; |
|
case 148: |
|
#line 1321 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 149: |
|
case_149(); |
|
break; |
|
case 150: |
|
case_150(); |
|
break; |
|
case 151: |
|
case_151(); |
|
break; |
|
case 153: |
|
#line 1386 "cs-parser.jay" |
|
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } |
|
break; |
|
case 154: |
|
#line 1390 "cs-parser.jay" |
|
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; } |
|
break; |
|
case 156: |
|
case_156(); |
|
break; |
|
case 157: |
|
case_157(); |
|
break; |
|
case 158: |
|
case_158(); |
|
break; |
|
case 159: |
|
case_159(); |
|
break; |
|
case 160: |
|
case_160(); |
|
break; |
|
case 161: |
|
case_161(); |
|
break; |
|
case 162: |
|
case_162(); |
|
break; |
|
case 163: |
|
#line 1462 "cs-parser.jay" |
|
{ |
|
yyVal = new ParametersCompiled (new Parameter[] { (Parameter) yyVals[0+yyTop] } ); |
|
} |
|
break; |
|
case 164: |
|
#line 1466 "cs-parser.jay" |
|
{ |
|
yyVal = new ParametersCompiled (new Parameter [] { new ArglistParameter (GetLocation (yyVals[0+yyTop])) }, true); |
|
} |
|
break; |
|
case 165: |
|
case_165(); |
|
break; |
|
case 166: |
|
case_166(); |
|
break; |
|
case 167: |
|
case_167(); |
|
break; |
|
case 168: |
|
case_168(); |
|
break; |
|
case 169: |
|
case_169(); |
|
break; |
|
case 170: |
|
case_170(); |
|
break; |
|
case 171: |
|
case_171(); |
|
break; |
|
case 172: |
|
#line 1547 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 173: |
|
case_173(); |
|
break; |
|
case 174: |
|
#line 1588 "cs-parser.jay" |
|
{ yyVal = Parameter.Modifier.NONE; } |
|
break; |
|
case 176: |
|
#line 1596 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 177: |
|
case_177(); |
|
break; |
|
case 178: |
|
case_178(); |
|
break; |
|
case 179: |
|
case_179(); |
|
break; |
|
case 180: |
|
case_180(); |
|
break; |
|
case 181: |
|
case_181(); |
|
break; |
|
case 182: |
|
case_182(); |
|
break; |
|
case 183: |
|
case_183(); |
|
break; |
|
case 184: |
|
case_184(); |
|
break; |
|
case 185: |
|
case_185(); |
|
break; |
|
case 186: |
|
#line 1689 "cs-parser.jay" |
|
{ |
|
Error_DuplicateParameterModifier (GetLocation (yyVals[-1+yyTop]), Parameter.Modifier.PARAMS); |
|
} |
|
break; |
|
case 187: |
|
case_187(); |
|
break; |
|
case 188: |
|
case_188(); |
|
break; |
|
case 189: |
|
case_189(); |
|
break; |
|
case 190: |
|
case_190(); |
|
break; |
|
case 191: |
|
case_191(); |
|
break; |
|
case 192: |
|
#line 1743 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Params | ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 193: |
|
case_193(); |
|
break; |
|
case 194: |
|
#line 1772 "cs-parser.jay" |
|
{ |
|
lexer.PropertyParsing = false; |
|
} |
|
break; |
|
case 195: |
|
case_195(); |
|
break; |
|
case 200: |
|
case_200(); |
|
break; |
|
case 201: |
|
case_201(); |
|
break; |
|
case 202: |
|
case_202(); |
|
break; |
|
case 203: |
|
case_203(); |
|
break; |
|
case 204: |
|
case_204(); |
|
break; |
|
case 206: |
|
case_206(); |
|
break; |
|
case 207: |
|
case_207(); |
|
break; |
|
case 208: |
|
#line 1921 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 209: |
|
case_209(); |
|
break; |
|
case 210: |
|
case_210(); |
|
break; |
|
case 211: |
|
case_211(); |
|
break; |
|
case 212: |
|
case_212(); |
|
break; |
|
case 213: |
|
#line 1960 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
} |
|
break; |
|
case 216: |
|
#line 1972 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 217: |
|
#line 1976 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = true; |
|
} |
|
break; |
|
case 218: |
|
#line 1983 "cs-parser.jay" |
|
{ |
|
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); |
|
} |
|
break; |
|
case 219: |
|
#line 1987 "cs-parser.jay" |
|
{ |
|
report.Error (525, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain fields or constants"); |
|
} |
|
break; |
|
case 224: |
|
#line 1995 "cs-parser.jay" |
|
{ |
|
report.Error (567, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain operators"); |
|
} |
|
break; |
|
case 225: |
|
#line 1999 "cs-parser.jay" |
|
{ |
|
report.Error (526, GetLocation (yyVals[0+yyTop]), "Interfaces cannot contain contructors"); |
|
} |
|
break; |
|
case 226: |
|
#line 2003 "cs-parser.jay" |
|
{ |
|
report.Error (524, GetLocation (yyVals[0+yyTop]), "Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations"); |
|
} |
|
break; |
|
case 227: |
|
#line 2009 "cs-parser.jay" |
|
{ |
|
} |
|
break; |
|
case 228: |
|
case_228(); |
|
break; |
|
case 230: |
|
#line 2042 "cs-parser.jay" |
|
{ savedLocation = GetLocation (yyVals[0+yyTop]); yyVal = null; } |
|
break; |
|
case 232: |
|
case_232(); |
|
break; |
|
case 233: |
|
#line 2058 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 234: |
|
case_234(); |
|
break; |
|
case 236: |
|
#line 2104 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LogicalNot; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 237: |
|
#line 2105 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.OnesComplement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 238: |
|
#line 2106 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Increment; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 239: |
|
#line 2107 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Decrement; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 240: |
|
#line 2108 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.True; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 241: |
|
#line 2109 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.False; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 242: |
|
#line 2111 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Addition; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 243: |
|
#line 2112 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Subtraction; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 244: |
|
#line 2114 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Multiply; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 245: |
|
#line 2115 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Division; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 246: |
|
#line 2116 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Modulus; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 247: |
|
#line 2117 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.BitwiseAnd; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 248: |
|
#line 2118 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.BitwiseOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 249: |
|
#line 2119 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.ExclusiveOr; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 250: |
|
#line 2120 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LeftShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 251: |
|
#line 2121 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.RightShift; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 252: |
|
#line 2122 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Equality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 253: |
|
#line 2123 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.Inequality; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 254: |
|
#line 2124 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.GreaterThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 255: |
|
#line 2125 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LessThan; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 256: |
|
#line 2126 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.GreaterThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 257: |
|
#line 2127 "cs-parser.jay" |
|
{ yyVal = Operator.OpType.LessThanOrEqual; savedOperatorLocation = GetLocation (yyVals[0+yyTop]); } |
|
break; |
|
case 258: |
|
#line 2134 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 259: |
|
case_259(); |
|
break; |
|
case 260: |
|
#line 2153 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 261: |
|
case_261(); |
|
break; |
|
case 262: |
|
case_262(); |
|
break; |
|
case 263: |
|
case_263(); |
|
break; |
|
case 264: |
|
case_264(); |
|
break; |
|
case 265: |
|
case_265(); |
|
break; |
|
case 266: |
|
case_266(); |
|
break; |
|
case 267: |
|
case_267(); |
|
break; |
|
case 269: |
|
#line 2259 "cs-parser.jay" |
|
{ current_block = null; yyVal = null; } |
|
break; |
|
case 272: |
|
#line 2271 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 273: |
|
case_273(); |
|
break; |
|
case 274: |
|
#line 2281 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 275: |
|
case_275(); |
|
break; |
|
case 276: |
|
case_276(); |
|
break; |
|
case 277: |
|
case_277(); |
|
break; |
|
case 278: |
|
case_278(); |
|
break; |
|
case 279: |
|
case_279(); |
|
break; |
|
case 280: |
|
case_280(); |
|
break; |
|
case 281: |
|
case_281(); |
|
break; |
|
case 282: |
|
case_282(); |
|
break; |
|
case 283: |
|
case_283(); |
|
break; |
|
case 284: |
|
case_284(); |
|
break; |
|
case 286: |
|
#line 2397 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 287: |
|
case_287(); |
|
break; |
|
case 290: |
|
#line 2414 "cs-parser.jay" |
|
{ |
|
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 291: |
|
#line 2418 "cs-parser.jay" |
|
{ |
|
current_event_field.AddDeclarator ((FieldDeclarator) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 292: |
|
case_292(); |
|
break; |
|
case 293: |
|
#line 2431 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
} |
|
break; |
|
case 294: |
|
case_294(); |
|
break; |
|
case 295: |
|
case_295(); |
|
break; |
|
case 296: |
|
#line 2456 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 299: |
|
case_299(); |
|
break; |
|
case 300: |
|
case_300(); |
|
break; |
|
case 301: |
|
case_301(); |
|
break; |
|
case 302: |
|
case_302(); |
|
break; |
|
case 303: |
|
case_303(); |
|
break; |
|
case 304: |
|
case_304(); |
|
break; |
|
case 305: |
|
case_305(); |
|
break; |
|
case 306: |
|
case_306(); |
|
break; |
|
case 308: |
|
case_308(); |
|
break; |
|
case 309: |
|
case_309(); |
|
break; |
|
case 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 318: |
|
#line 2630 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 320: |
|
case_320(); |
|
break; |
|
case 321: |
|
case_321(); |
|
break; |
|
case 322: |
|
case_322(); |
|
break; |
|
case 323: |
|
case_323(); |
|
break; |
|
case 324: |
|
#line 2688 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out | ParameterModifierType.Params | ParameterModifierType.DefaultValue; |
|
} |
|
break; |
|
case 325: |
|
case_325(); |
|
break; |
|
case 326: |
|
#line 2707 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
} |
|
break; |
|
case 327: |
|
case_327(); |
|
break; |
|
case 329: |
|
case_329(); |
|
break; |
|
case 331: |
|
case_331(); |
|
break; |
|
case 333: |
|
case_333(); |
|
break; |
|
case 334: |
|
case_334(); |
|
break; |
|
case 336: |
|
case_336(); |
|
break; |
|
case 337: |
|
case_337(); |
|
break; |
|
case 338: |
|
case_338(); |
|
break; |
|
case 339: |
|
case_339(); |
|
break; |
|
case 340: |
|
#line 2813 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
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: |
|
case_348(); |
|
break; |
|
case 349: |
|
case_349(); |
|
break; |
|
case 351: |
|
case_351(); |
|
break; |
|
case 352: |
|
case_352(); |
|
break; |
|
case 353: |
|
case_353(); |
|
break; |
|
case 354: |
|
case_354(); |
|
break; |
|
case 355: |
|
case_355(); |
|
break; |
|
case 357: |
|
#line 2935 "cs-parser.jay" |
|
{ |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 358: |
|
#line 2942 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = true; |
|
} |
|
break; |
|
case 360: |
|
case_360(); |
|
break; |
|
case 362: |
|
case_362(); |
|
break; |
|
case 364: |
|
case_364(); |
|
break; |
|
case 366: |
|
#line 2980 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 367: |
|
case_367(); |
|
break; |
|
case 368: |
|
#line 2999 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((ATypeNameExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 369: |
|
case_369(); |
|
break; |
|
case 370: |
|
#line 3008 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 371: |
|
#line 3012 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 372: |
|
case_372(); |
|
break; |
|
case 373: |
|
case_373(); |
|
break; |
|
case 374: |
|
case_374(); |
|
break; |
|
case 375: |
|
#line 3046 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Object, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 376: |
|
#line 3047 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.String, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 377: |
|
#line 3048 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Bool, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 378: |
|
#line 3049 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Decimal, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 379: |
|
#line 3050 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Float, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 380: |
|
#line 3051 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Double, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 382: |
|
#line 3056 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.SByte, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 383: |
|
#line 3057 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Byte, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 384: |
|
#line 3058 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Short, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 385: |
|
#line 3059 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UShort, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 386: |
|
#line 3060 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Int, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 387: |
|
#line 3061 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.UInt, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 388: |
|
#line 3062 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Long, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 389: |
|
#line 3063 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.ULong, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 390: |
|
#line 3064 "cs-parser.jay" |
|
{ yyVal = new TypeExpression (compiler.BuiltinTypes.Char, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 411: |
|
case_411(); |
|
break; |
|
case 412: |
|
case_412(); |
|
break; |
|
case 416: |
|
#line 3111 "cs-parser.jay" |
|
{ yyVal = new NullLiteral (GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 417: |
|
#line 3115 "cs-parser.jay" |
|
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, true, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 418: |
|
#line 3116 "cs-parser.jay" |
|
{ yyVal = new BoolLiteral (compiler.BuiltinTypes, false, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 423: |
|
case_423(); |
|
break; |
|
case 424: |
|
#line 3149 "cs-parser.jay" |
|
{ |
|
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); |
|
} |
|
break; |
|
case 425: |
|
case_425(); |
|
break; |
|
case 426: |
|
case_426(); |
|
break; |
|
case 427: |
|
case_427(); |
|
break; |
|
case 428: |
|
case_428(); |
|
break; |
|
case 429: |
|
#line 3184 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null,GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 430: |
|
case_430(); |
|
break; |
|
case 431: |
|
#line 3192 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-2+yyTop], null, lexer.Location); |
|
} |
|
break; |
|
case 432: |
|
case_432(); |
|
break; |
|
case 433: |
|
case_433(); |
|
break; |
|
case 434: |
|
#line 3208 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 436: |
|
case_436(); |
|
break; |
|
case 437: |
|
case_437(); |
|
break; |
|
case 438: |
|
#line 3231 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 439: |
|
#line 3235 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 440: |
|
case_440(); |
|
break; |
|
case 441: |
|
case_441(); |
|
break; |
|
case 442: |
|
case_442(); |
|
break; |
|
case 443: |
|
case_443(); |
|
break; |
|
case 444: |
|
#line 3268 "cs-parser.jay" |
|
{ |
|
yyVal = new CompletionElementInitializer (null, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 445: |
|
case_445(); |
|
break; |
|
case 446: |
|
case_446(); |
|
break; |
|
case 447: |
|
case_447(); |
|
break; |
|
case 450: |
|
#line 3298 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 452: |
|
case_452(); |
|
break; |
|
case 453: |
|
case_453(); |
|
break; |
|
case 454: |
|
case_454(); |
|
break; |
|
case 455: |
|
case_455(); |
|
break; |
|
case 456: |
|
case_456(); |
|
break; |
|
case 457: |
|
#line 3350 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 461: |
|
case_461(); |
|
break; |
|
case 462: |
|
case_462(); |
|
break; |
|
case 463: |
|
case_463(); |
|
break; |
|
case 464: |
|
case_464(); |
|
break; |
|
case 466: |
|
case_466(); |
|
break; |
|
case 467: |
|
case_467(); |
|
break; |
|
case 468: |
|
case_468(); |
|
break; |
|
case 469: |
|
case_469(); |
|
break; |
|
case 470: |
|
case_470(); |
|
break; |
|
case 471: |
|
case_471(); |
|
break; |
|
case 472: |
|
case_472(); |
|
break; |
|
case 473: |
|
case_473(); |
|
break; |
|
case 474: |
|
#line 3447 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 476: |
|
#line 3455 "cs-parser.jay" |
|
{ |
|
yyVal = new This (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 477: |
|
case_477(); |
|
break; |
|
case 478: |
|
case_478(); |
|
break; |
|
case 479: |
|
#line 3475 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PostIncrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 480: |
|
#line 3482 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PostDecrement, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 481: |
|
case_481(); |
|
break; |
|
case 482: |
|
case_482(); |
|
break; |
|
case 483: |
|
case_483(); |
|
break; |
|
case 484: |
|
case_484(); |
|
break; |
|
case 485: |
|
case_485(); |
|
break; |
|
case 486: |
|
case_486(); |
|
break; |
|
case 487: |
|
case_487(); |
|
break; |
|
case 488: |
|
#line 3549 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_type; |
|
} |
|
break; |
|
case 489: |
|
case_489(); |
|
break; |
|
case 490: |
|
case_490(); |
|
break; |
|
case 493: |
|
#line 3576 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 495: |
|
case_495(); |
|
break; |
|
case 496: |
|
case_496(); |
|
break; |
|
case 497: |
|
case_497(); |
|
break; |
|
case 498: |
|
case_498(); |
|
break; |
|
case 499: |
|
case_499(); |
|
break; |
|
case 500: |
|
case_500(); |
|
break; |
|
case 504: |
|
case_504(); |
|
break; |
|
case 505: |
|
case_505(); |
|
break; |
|
case 506: |
|
case_506(); |
|
break; |
|
case 507: |
|
#line 3654 "cs-parser.jay" |
|
{ |
|
yyVal = 2; |
|
} |
|
break; |
|
case 508: |
|
#line 3658 "cs-parser.jay" |
|
{ |
|
yyVal = ((int) yyVals[-1+yyTop]) + 1; |
|
} |
|
break; |
|
case 509: |
|
#line 3665 "cs-parser.jay" |
|
{ |
|
yyVal = null; |
|
} |
|
break; |
|
case 510: |
|
#line 3669 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 511: |
|
case_511(); |
|
break; |
|
case 512: |
|
case_512(); |
|
break; |
|
case 513: |
|
case_513(); |
|
break; |
|
case 514: |
|
case_514(); |
|
break; |
|
case 515: |
|
#line 3713 "cs-parser.jay" |
|
{ |
|
lexer.TypeOfParsing = true; |
|
} |
|
break; |
|
case 516: |
|
case_516(); |
|
break; |
|
case 519: |
|
case_519(); |
|
break; |
|
case 520: |
|
case_520(); |
|
break; |
|
case 521: |
|
case_521(); |
|
break; |
|
case 522: |
|
case_522(); |
|
break; |
|
case 523: |
|
case_523(); |
|
break; |
|
case 524: |
|
case_524(); |
|
break; |
|
case 525: |
|
case_525(); |
|
break; |
|
case 526: |
|
case_526(); |
|
break; |
|
case 527: |
|
case_527(); |
|
break; |
|
case 528: |
|
case_528(); |
|
break; |
|
case 529: |
|
case_529(); |
|
break; |
|
case 530: |
|
case_530(); |
|
break; |
|
case 531: |
|
#line 3833 "cs-parser.jay" |
|
{ |
|
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], false, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 532: |
|
case_532(); |
|
break; |
|
case 533: |
|
#line 3846 "cs-parser.jay" |
|
{ |
|
start_anonymous (false, (ParametersCompiled) yyVals[0+yyTop], true, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
break; |
|
case 534: |
|
case_534(); |
|
break; |
|
case 535: |
|
#line 3863 "cs-parser.jay" |
|
{ |
|
yyVal = ParametersCompiled.Undefined; |
|
} |
|
break; |
|
case 537: |
|
#line 3871 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 538: |
|
case_538(); |
|
break; |
|
case 539: |
|
case_539(); |
|
break; |
|
case 541: |
|
#line 3897 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.LogicalNot, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 542: |
|
#line 3901 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.OnesComplement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 543: |
|
case_543(); |
|
break; |
|
case 544: |
|
case_544(); |
|
break; |
|
case 546: |
|
#line 3937 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.UnaryPlus, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 547: |
|
#line 3941 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.UnaryNegation, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 548: |
|
#line 3945 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreIncrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 549: |
|
#line 3949 "cs-parser.jay" |
|
{ |
|
yyVal = new UnaryMutator (UnaryMutator.Mode.PreDecrement, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 550: |
|
#line 3953 "cs-parser.jay" |
|
{ |
|
yyVal = new Indirection ((Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 551: |
|
#line 3957 "cs-parser.jay" |
|
{ |
|
yyVal = new Unary (Unary.Operator.AddressOf, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 553: |
|
case_553(); |
|
break; |
|
case 554: |
|
case_554(); |
|
break; |
|
case 555: |
|
case_555(); |
|
break; |
|
case 557: |
|
case_557(); |
|
break; |
|
case 558: |
|
#line 3989 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 559: |
|
case_559(); |
|
break; |
|
case 560: |
|
#line 3998 "cs-parser.jay" |
|
{ |
|
yyVal = new As ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 561: |
|
#line 4002 "cs-parser.jay" |
|
{ |
|
yyVal = new Is ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 563: |
|
case_563(); |
|
break; |
|
case 564: |
|
case_564(); |
|
break; |
|
case 566: |
|
case_566(); |
|
break; |
|
case 567: |
|
case_567(); |
|
break; |
|
case 568: |
|
case_568(); |
|
break; |
|
case 569: |
|
case_569(); |
|
break; |
|
case 571: |
|
case_571(); |
|
break; |
|
case 572: |
|
case_572(); |
|
break; |
|
case 574: |
|
case_574(); |
|
break; |
|
case 576: |
|
case_576(); |
|
break; |
|
case 578: |
|
case_578(); |
|
break; |
|
case 580: |
|
case_580(); |
|
break; |
|
case 582: |
|
case_582(); |
|
break; |
|
case 584: |
|
case_584(); |
|
break; |
|
case 586: |
|
case_586(); |
|
break; |
|
case 587: |
|
#line 4126 "cs-parser.jay" |
|
{ |
|
yyVal = new SimpleAssign ((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 592: |
|
case_592(); |
|
break; |
|
case 593: |
|
case_593(); |
|
break; |
|
case 594: |
|
case_594(); |
|
break; |
|
case 595: |
|
case_595(); |
|
break; |
|
case 596: |
|
case_596(); |
|
break; |
|
case 597: |
|
case_597(); |
|
break; |
|
case 598: |
|
case_598(); |
|
break; |
|
case 599: |
|
case_599(); |
|
break; |
|
case 600: |
|
case_600(); |
|
break; |
|
case 601: |
|
case_601(); |
|
break; |
|
case 602: |
|
case_602(); |
|
break; |
|
case 603: |
|
#line 4223 "cs-parser.jay" |
|
{ yyVal = ParametersCompiled.EmptyReadOnlyParameters; } |
|
break; |
|
case 604: |
|
case_604(); |
|
break; |
|
case 607: |
|
#line 4239 "cs-parser.jay" |
|
{ |
|
start_block (Location.Null); |
|
} |
|
break; |
|
case 608: |
|
case_608(); |
|
break; |
|
case 610: |
|
case_610(); |
|
break; |
|
case 611: |
|
case_611(); |
|
break; |
|
case 612: |
|
case_612(); |
|
break; |
|
case 613: |
|
case_613(); |
|
break; |
|
case 614: |
|
case_614(); |
|
break; |
|
case 615: |
|
#line 4284 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 616: |
|
case_616(); |
|
break; |
|
case 617: |
|
case_617(); |
|
break; |
|
case 618: |
|
#line 4298 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 619: |
|
case_619(); |
|
break; |
|
case 620: |
|
case_620(); |
|
break; |
|
case 626: |
|
#line 4323 "cs-parser.jay" |
|
{ |
|
yyVal = new ArglistAccess (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 627: |
|
case_627(); |
|
break; |
|
case 628: |
|
case_628(); |
|
break; |
|
case 629: |
|
case_629(); |
|
break; |
|
case 631: |
|
#line 4352 "cs-parser.jay" |
|
{ |
|
yyVal = new BooleanExpression ((Expression) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 632: |
|
#line 4365 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = true; |
|
} |
|
break; |
|
case 633: |
|
case_633(); |
|
break; |
|
case 634: |
|
case_634(); |
|
break; |
|
case 635: |
|
case_635(); |
|
break; |
|
case 636: |
|
case_636(); |
|
break; |
|
case 637: |
|
#line 4410 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 638: |
|
#line 4412 "cs-parser.jay" |
|
{ yyVal = yyVals[0+yyTop]; StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[0+yyTop])); } |
|
break; |
|
case 639: |
|
case_639(); |
|
break; |
|
case 640: |
|
#line 4425 "cs-parser.jay" |
|
{ |
|
lexer.parsing_modifiers = false; |
|
} |
|
break; |
|
case 642: |
|
case_642(); |
|
break; |
|
case 643: |
|
case_643(); |
|
break; |
|
case 644: |
|
case_644(); |
|
break; |
|
case 645: |
|
case_645(); |
|
break; |
|
case 646: |
|
case_646(); |
|
break; |
|
case 647: |
|
case_647(); |
|
break; |
|
case 648: |
|
case_648(); |
|
break; |
|
case 649: |
|
case_649(); |
|
break; |
|
case 650: |
|
case_650(); |
|
break; |
|
case 651: |
|
case_651(); |
|
break; |
|
case 652: |
|
case_652(); |
|
break; |
|
case 653: |
|
case_653(); |
|
break; |
|
case 654: |
|
case_654(); |
|
break; |
|
case 655: |
|
case_655(); |
|
break; |
|
case 656: |
|
case_656(); |
|
break; |
|
case 657: |
|
case_657(); |
|
break; |
|
case 659: |
|
case_659(); |
|
break; |
|
case 660: |
|
case_660(); |
|
break; |
|
case 662: |
|
#line 4551 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 663: |
|
case_663(); |
|
break; |
|
case 664: |
|
case_664(); |
|
break; |
|
case 665: |
|
case_665(); |
|
break; |
|
case 666: |
|
case_666(); |
|
break; |
|
case 667: |
|
case_667(); |
|
break; |
|
case 668: |
|
case_668(); |
|
break; |
|
case 669: |
|
case_669(); |
|
break; |
|
case 670: |
|
case_670(); |
|
break; |
|
case 671: |
|
#line 4644 "cs-parser.jay" |
|
{ |
|
yyVal = new SpecialContraintExpr (SpecialConstraint.Class, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 672: |
|
#line 4648 "cs-parser.jay" |
|
{ |
|
yyVal = new SpecialContraintExpr (SpecialConstraint.Struct, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 673: |
|
#line 4655 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.None; |
|
} |
|
break; |
|
case 674: |
|
case_674(); |
|
break; |
|
case 675: |
|
case_675(); |
|
break; |
|
case 676: |
|
case_676(); |
|
break; |
|
case 677: |
|
case_677(); |
|
break; |
|
case 678: |
|
#line 4700 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 679: |
|
case_679(); |
|
break; |
|
case 680: |
|
case_680(); |
|
break; |
|
case 681: |
|
case_681(); |
|
break; |
|
case 682: |
|
case_682(); |
|
break; |
|
case 683: |
|
case_683(); |
|
break; |
|
case 688: |
|
#line 4749 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 689: |
|
#line 4753 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 691: |
|
case_691(); |
|
break; |
|
case 692: |
|
case_692(); |
|
break; |
|
case 695: |
|
#line 4787 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 696: |
|
#line 4791 "cs-parser.jay" |
|
{ |
|
current_block.AddStatement ((Statement) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 725: |
|
case_725(); |
|
break; |
|
case 726: |
|
case_726(); |
|
break; |
|
case 727: |
|
case_727(); |
|
break; |
|
case 728: |
|
case_728(); |
|
break; |
|
case 729: |
|
case_729(); |
|
break; |
|
case 732: |
|
case_732(); |
|
break; |
|
case 733: |
|
case_733(); |
|
break; |
|
case 734: |
|
case_734(); |
|
break; |
|
case 735: |
|
case_735(); |
|
break; |
|
case 736: |
|
#line 4935 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 737: |
|
#line 4939 "cs-parser.jay" |
|
{ |
|
yyVal = new ComposedCast (new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[-1+yyTop])), (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 738: |
|
case_738(); |
|
break; |
|
case 740: |
|
case_740(); |
|
break; |
|
case 741: |
|
#line 4960 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreatePointer (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 743: |
|
case_743(); |
|
break; |
|
case 744: |
|
case_744(); |
|
break; |
|
case 745: |
|
case_745(); |
|
break; |
|
case 746: |
|
case_746(); |
|
break; |
|
case 747: |
|
case_747(); |
|
break; |
|
case 749: |
|
case_749(); |
|
break; |
|
case 751: |
|
case_751(); |
|
break; |
|
case 752: |
|
case_752(); |
|
break; |
|
case 753: |
|
case_753(); |
|
break; |
|
case 757: |
|
case_757(); |
|
break; |
|
case 760: |
|
case_760(); |
|
break; |
|
case 761: |
|
case_761(); |
|
break; |
|
case 762: |
|
#line 5095 "cs-parser.jay" |
|
{ |
|
report.Error (145, lexer.Location, "A const field requires a value to be provided"); |
|
} |
|
break; |
|
case 763: |
|
case_763(); |
|
break; |
|
case 768: |
|
case_768(); |
|
break; |
|
case 770: |
|
case_770(); |
|
break; |
|
case 771: |
|
case_771(); |
|
break; |
|
case 772: |
|
case_772(); |
|
break; |
|
case 773: |
|
#line 5145 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
break; |
|
case 774: |
|
case_774(); |
|
break; |
|
case 775: |
|
#line 5155 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
break; |
|
case 776: |
|
#line 5156 "cs-parser.jay" |
|
{ yyVal = yyVals[-1+yyTop]; } |
|
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: |
|
#line 5231 "cs-parser.jay" |
|
{ |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 786: |
|
case_786(); |
|
break; |
|
case 787: |
|
case_787(); |
|
break; |
|
case 788: |
|
case_788(); |
|
break; |
|
case 790: |
|
case_790(); |
|
break; |
|
case 791: |
|
case_791(); |
|
break; |
|
case 792: |
|
case_792(); |
|
break; |
|
case 793: |
|
#line 5282 "cs-parser.jay" |
|
{ |
|
current_block = current_block.CreateSwitchBlock (lexer.Location); |
|
} |
|
break; |
|
case 794: |
|
#line 5286 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchSection ((List<SwitchLabel>) yyVals[-2+yyTop], current_block); |
|
} |
|
break; |
|
case 795: |
|
case_795(); |
|
break; |
|
case 796: |
|
case_796(); |
|
break; |
|
case 797: |
|
case_797(); |
|
break; |
|
case 798: |
|
#line 5315 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchLabel (null, GetLocation (yyVals[0+yyTop])); |
|
} |
|
break; |
|
case 803: |
|
case_803(); |
|
break; |
|
case 804: |
|
case_804(); |
|
break; |
|
case 805: |
|
case_805(); |
|
break; |
|
case 806: |
|
case_806(); |
|
break; |
|
case 807: |
|
case_807(); |
|
break; |
|
case 808: |
|
case_808(); |
|
break; |
|
case 809: |
|
#line 5376 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 810: |
|
case_810(); |
|
break; |
|
case 811: |
|
#line 5391 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 812: |
|
case_812(); |
|
break; |
|
case 813: |
|
case_813(); |
|
break; |
|
case 814: |
|
#line 5412 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 815: |
|
case_815(); |
|
break; |
|
case 816: |
|
case_816(); |
|
break; |
|
case 817: |
|
case_817(); |
|
break; |
|
case 818: |
|
#line 5445 "cs-parser.jay" |
|
{ yyVal = new EmptyStatement (lexer.Location); } |
|
break; |
|
case 820: |
|
case_820(); |
|
break; |
|
case 821: |
|
case_821(); |
|
break; |
|
case 823: |
|
#line 5466 "cs-parser.jay" |
|
{ yyVal = null; } |
|
break; |
|
case 825: |
|
#line 5471 "cs-parser.jay" |
|
{ yyVal = new EmptyStatement (lexer.Location); } |
|
break; |
|
case 829: |
|
case_829(); |
|
break; |
|
case 830: |
|
case_830(); |
|
break; |
|
case 831: |
|
case_831(); |
|
break; |
|
case 832: |
|
case_832(); |
|
break; |
|
case 833: |
|
case_833(); |
|
break; |
|
case 834: |
|
case_834(); |
|
break; |
|
case 835: |
|
case_835(); |
|
break; |
|
case 842: |
|
case_842(); |
|
break; |
|
case 843: |
|
case_843(); |
|
break; |
|
case 844: |
|
case_844(); |
|
break; |
|
case 845: |
|
case_845(); |
|
break; |
|
case 846: |
|
case_846(); |
|
break; |
|
case 847: |
|
case_847(); |
|
break; |
|
case 848: |
|
case_848(); |
|
break; |
|
case 849: |
|
case_849(); |
|
break; |
|
case 850: |
|
case_850(); |
|
break; |
|
case 851: |
|
case_851(); |
|
break; |
|
case 852: |
|
case_852(); |
|
break; |
|
case 853: |
|
case_853(); |
|
break; |
|
case 856: |
|
#line 5688 "cs-parser.jay" |
|
{ |
|
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], (List<Catch>) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), false); |
|
} |
|
break; |
|
case 857: |
|
case_857(); |
|
break; |
|
case 858: |
|
case_858(); |
|
break; |
|
case 859: |
|
case_859(); |
|
break; |
|
case 860: |
|
case_860(); |
|
break; |
|
case 861: |
|
case_861(); |
|
break; |
|
case 864: |
|
#line 5738 "cs-parser.jay" |
|
{ |
|
yyVal = new Catch ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 865: |
|
case_865(); |
|
break; |
|
case 866: |
|
#line 5757 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
break; |
|
case 867: |
|
case_867(); |
|
break; |
|
case 868: |
|
#line 5775 "cs-parser.jay" |
|
{ |
|
yyVal = new Checked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 869: |
|
#line 5782 "cs-parser.jay" |
|
{ |
|
yyVal = new Unchecked ((Block) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
break; |
|
case 870: |
|
case_870(); |
|
break; |
|
case 871: |
|
#line 5792 "cs-parser.jay" |
|
{ |
|
yyVal = new Unsafe ((Block) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
break; |
|
case 872: |
|
case_872(); |
|
break; |
|
case 873: |
|
case_873(); |
|
break; |
|
case 874: |
|
case_874(); |
|
break; |
|
case 875: |
|
case_875(); |
|
break; |
|
case 876: |
|
case_876(); |
|
break; |
|
case 877: |
|
case_877(); |
|
break; |
|
case 878: |
|
case_878(); |
|
break; |
|
case 879: |
|
case_879(); |
|
break; |
|
case 880: |
|
case_880(); |
|
break; |
|
case 881: |
|
case_881(); |
|
break; |
|
case 883: |
|
case_883(); |
|
break; |
|
case 884: |
|
#line 5897 "cs-parser.jay" |
|
{ |
|
Error_MissingInitializer (lexer.Location); |
|
} |
|
break; |
|
case 885: |
|
case_885(); |
|
break; |
|
case 886: |
|
case_886(); |
|
break; |
|
case 887: |
|
case_887(); |
|
break; |
|
case 888: |
|
case_888(); |
|
break; |
|
case 889: |
|
case_889(); |
|
break; |
|
case 890: |
|
case_890(); |
|
break; |
|
case 891: |
|
case_891(); |
|
break; |
|
case 892: |
|
case_892(); |
|
break; |
|
case 893: |
|
case_893(); |
|
break; |
|
case 894: |
|
#line 6002 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 895: |
|
case_895(); |
|
break; |
|
case 896: |
|
#line 6018 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 897: |
|
case_897(); |
|
break; |
|
case 898: |
|
case_898(); |
|
break; |
|
case 899: |
|
case_899(); |
|
break; |
|
case 901: |
|
case_901(); |
|
break; |
|
case 902: |
|
case_902(); |
|
break; |
|
case 903: |
|
#line 6082 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 904: |
|
case_904(); |
|
break; |
|
case 905: |
|
case_905(); |
|
break; |
|
case 906: |
|
case_906(); |
|
break; |
|
case 907: |
|
case_907(); |
|
break; |
|
case 909: |
|
case_909(); |
|
break; |
|
case 915: |
|
#line 6136 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 916: |
|
case_916(); |
|
break; |
|
case 917: |
|
#line 6155 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 918: |
|
case_918(); |
|
break; |
|
case 919: |
|
case_919(); |
|
break; |
|
case 920: |
|
case_920(); |
|
break; |
|
case 921: |
|
case_921(); |
|
break; |
|
case 922: |
|
case_922(); |
|
break; |
|
case 923: |
|
case_923(); |
|
break; |
|
case 924: |
|
case_924(); |
|
break; |
|
case 925: |
|
case_925(); |
|
break; |
|
case 926: |
|
case_926(); |
|
break; |
|
case 928: |
|
case_928(); |
|
break; |
|
case 929: |
|
#line 6309 "cs-parser.jay" |
|
{ |
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
break; |
|
case 930: |
|
case_930(); |
|
break; |
|
case 932: |
|
case_932(); |
|
break; |
|
case 933: |
|
case_933(); |
|
break; |
|
case 935: |
|
case_935(); |
|
break; |
|
case 936: |
|
case_936(); |
|
break; |
|
case 937: |
|
#line 6355 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 938: |
|
case_938(); |
|
break; |
|
case 939: |
|
case_939(); |
|
break; |
|
case 940: |
|
#line 6372 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 941: |
|
case_941(); |
|
break; |
|
case 942: |
|
case_942(); |
|
break; |
|
case 944: |
|
case_944(); |
|
break; |
|
case 945: |
|
case_945(); |
|
break; |
|
case 948: |
|
case_948(); |
|
break; |
|
case 949: |
|
case_949(); |
|
break; |
|
case 957: |
|
#line 6494 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedName = (MemberName) yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 958: |
|
#line 6501 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop]; |
|
} |
|
break; |
|
case 959: |
|
case_959(); |
|
break; |
|
case 960: |
|
case_960(); |
|
break; |
|
case 961: |
|
#line 6518 "cs-parser.jay" |
|
{ |
|
yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], MemberCache.IndexerNameAlias, Location.Null); |
|
} |
|
break; |
|
case 962: |
|
#line 6522 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 963: |
|
case_963(); |
|
break; |
|
case 964: |
|
case_964(); |
|
break; |
|
case 965: |
|
case_965(); |
|
break; |
|
case 966: |
|
case_966(); |
|
break; |
|
case 968: |
|
#line 6558 "cs-parser.jay" |
|
{ |
|
yyVal = new MemberName (((MemberName) yyVals[-2+yyTop]), (MemberName) yyVals[0+yyTop]); |
|
} |
|
break; |
|
case 970: |
|
#line 6566 "cs-parser.jay" |
|
{ |
|
valid_param_mod = ParameterModifierType.Ref | ParameterModifierType.Out; |
|
} |
|
break; |
|
case 971: |
|
#line 6570 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
break; |
|
case 972: |
|
#line 6577 "cs-parser.jay" |
|
{ |
|
yyVal = new List<DocumentationParameter> (0); |
|
} |
|
break; |
|
case 974: |
|
case_974(); |
|
break; |
|
case 975: |
|
case_975(); |
|
break; |
|
case 976: |
|
case_976(); |
|
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 398 "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 412 "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 432 "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 465 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_18() |
|
#line 473 "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 480 "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 492 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_21() |
|
#line 505 "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 533 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_23() |
|
#line 538 "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 550 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new MemberName (lt.Value, lt.Location); |
|
} |
|
|
|
void case_25() |
|
#line 555 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new MemberName ((MemberName) yyVals[-2+yyTop], lt.Value, lt.Location) { |
|
DotLocation = GetLocation (yyVals[-1+yyTop]) |
|
}; |
|
} |
|
|
|
void case_26() |
|
#line 562 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new MemberName ("<invalid>", lexer.Location); |
|
} |
|
|
|
void case_39() |
|
#line 600 "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_41() |
|
#line 622 "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_49() |
|
#line 655 "cs-parser.jay" |
|
{ |
|
var sect = (List<Attribute>) yyVals[0+yyTop]; |
|
yyVal = new Attributes (sect); |
|
if (locationListStack.Count > 0) |
|
lbag.AddLocation (sect, locationListStack.Pop ()); |
|
if (attributeCommas.Count > 0) { |
|
lbag.AppendTo (sect, attributeCommas); |
|
attributeCommas.Clear (); |
|
} |
|
} |
|
|
|
void case_50() |
|
#line 666 "cs-parser.jay" |
|
{ |
|
Attributes attrs = yyVals[-1+yyTop] as Attributes; |
|
var sect = (List<Attribute>) yyVals[0+yyTop]; |
|
|
|
if (locationListStack.Count > 0) |
|
lbag.AddLocation (sect, locationListStack.Pop ()); |
|
if (attrs == null) |
|
attrs = new Attributes (sect); |
|
else |
|
attrs.AddAttributes (sect); |
|
yyVal = attrs; |
|
} |
|
|
|
void case_51() |
|
#line 682 "cs-parser.jay" |
|
{ |
|
lexer.parsing_attribute_section = true; |
|
savedOpenLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_52() |
|
#line 687 "cs-parser.jay" |
|
{ |
|
lexer.parsing_attribute_section = false; |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_53() |
|
#line 695 "cs-parser.jay" |
|
{ |
|
current_attr_target = (string) yyVals[-1+yyTop]; |
|
if (current_attr_target == "assembly" || current_attr_target == "module") { |
|
Lexer.check_incorrect_doc_comment (); |
|
} |
|
} |
|
|
|
void case_54() |
|
#line 702 "cs-parser.jay" |
|
{ |
|
/* when attribute target is invalid*/ |
|
if (current_attr_target == string.Empty) |
|
yyVal = new List<Attribute> (0); |
|
else |
|
yyVal = yyVals[-2+yyTop]; |
|
|
|
current_attr_target = null; |
|
lexer.parsing_attribute_section = false; |
|
if (yyVals[-1+yyTop] != null) { |
|
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) })); |
|
} else { |
|
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, savedCloseLocation, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[0+yyTop]) })); |
|
} |
|
} |
|
|
|
void case_55() |
|
#line 718 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-2+yyTop]; |
|
if (yyVals[-1+yyTop] != null) { |
|
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop]) })); |
|
} else { |
|
locationListStack.Push (new List<Location>(new [] { savedOpenLocation, GetLocation (yyVals[0+yyTop]) })); |
|
} |
|
} |
|
|
|
void case_56() |
|
#line 730 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = CheckAttributeTarget (lt.Value, lt.Location); |
|
savedCloseLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_59() |
|
#line 738 "cs-parser.jay" |
|
{ |
|
if (yyToken == Token.IDENTIFIER) { |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} else { |
|
string name = GetTokenName (yyToken); |
|
yyVal = CheckAttributeTarget (name, GetLocation (yyVals[0+yyTop])); |
|
} |
|
} |
|
|
|
void case_61() |
|
#line 755 "cs-parser.jay" |
|
{ |
|
var attrs = (List<Attribute>) yyVals[-2+yyTop]; |
|
attrs.Add ((Attribute) yyVals[0+yyTop]); |
|
attributeCommas.Add (GetLocation (yyVals[-1+yyTop])); |
|
|
|
yyVal = attrs; |
|
} |
|
|
|
void case_63() |
|
#line 770 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
|
|
var tne = (ATypeNameExpression) yyVals[-2+yyTop]; |
|
if (tne.HasTypeArguments) { |
|
report.Error (404, tne.Location, "Attributes cannot be generic"); |
|
} |
|
Arguments [] arguments = (Arguments []) yyVals[0+yyTop]; |
|
|
|
yyVal = new Attribute (current_attr_target, tne, (Arguments[]) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop]), lexer.IsEscapedIdentifier (tne)); |
|
if (arguments != null) { |
|
attributeArgumentCommas.Insert (0, savedAttrParenOpenLocation); |
|
attributeArgumentCommas.Add (savedAttrParenCloseLocation); |
|
lbag.AddLocation (yyVal, attributeArgumentCommas); |
|
attributeArgumentCommas.Clear (); |
|
} else if (HadAttributeParens) { |
|
lbag.AddLocation (yyVal, savedAttrParenOpenLocation, savedAttrParenCloseLocation); |
|
} |
|
} |
|
|
|
void case_66() |
|
#line 798 "cs-parser.jay" |
|
{ |
|
savedAttrParenOpenLocation = GetLocation (yyVals[-2+yyTop]); |
|
savedAttrParenCloseLocation = GetLocation (yyVals[0+yyTop]); |
|
yyVal = yyVals[-1+yyTop]; |
|
HadAttributeParens = true; |
|
} |
|
|
|
void case_68() |
|
#line 810 "cs-parser.jay" |
|
{ |
|
Arguments a = new Arguments (4); |
|
a.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = new Arguments [] { a, null }; |
|
} |
|
|
|
void case_69() |
|
#line 816 "cs-parser.jay" |
|
{ |
|
Arguments a = new Arguments (4); |
|
a.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = new Arguments [] { null, a }; |
|
} |
|
|
|
void case_70() |
|
#line 822 "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_71() |
|
#line 837 "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_75() |
|
#line 862 "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_76() |
|
#line 872 "cs-parser.jay" |
|
{ |
|
if (lang_version <= LanguageVersion.V_3) |
|
FeatureIsNotAvailable (GetLocation (yyVals[-3+yyTop]), "named argument"); |
|
|
|
/* Avoid boxing in common case (no modifier)*/ |
|
var arg_mod = yyVals[-1+yyTop] == null ? Argument.AType.None : (Argument.AType) yyVals[-1+yyTop]; |
|
|
|
var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; |
|
yyVal = new NamedArgument (lt.Value, lt.Location, (Expression) yyVals[0+yyTop], arg_mod); |
|
lbag.AddLocation (yyVal, GetLocation(yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_95() |
|
#line 926 "cs-parser.jay" |
|
{ |
|
report.Error (1519, lexer.Location, "Unexpected symbol `{0}' in class, struct, or interface member declaration", |
|
GetSymbolName (yyToken)); |
|
yyVal = null; |
|
lexer.parsing_generic_declaration = false; |
|
} |
|
|
|
void case_97() |
|
#line 943 "cs-parser.jay" |
|
{ |
|
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_98() |
|
#line 949 "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_99() |
|
#line 962 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_100() |
|
#line 967 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_101() |
|
#line 973 "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_103() |
|
#line 991 "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_104() |
|
#line 1004 "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 1034 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (ConstInitializer) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_111() |
|
#line 1047 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = new ConstInitializer (current_field, (Expression) yyVals[0+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_112() |
|
#line 1053 "cs-parser.jay" |
|
{ |
|
report.Error (145, lexer.Location, "A const field requires a value to be provided"); |
|
yyVal = null; |
|
} |
|
|
|
void case_115() |
|
#line 1068 "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_116() |
|
#line 1083 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
current_field.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[0+yyTop])); |
|
yyVal = current_field; |
|
current_field = null; |
|
} |
|
|
|
void case_117() |
|
#line 1096 "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_118() |
|
#line 1107 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
current_field.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
current_field.Initializer = (ConstInitializer) yyVals[-2+yyTop]; |
|
lbag.AddMember (current_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
yyVal = current_field; |
|
current_field = null; |
|
} |
|
|
|
void case_121() |
|
#line 1130 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_122() |
|
#line 1136 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
current_field.Initializer = (Expression) yyVals[0+yyTop]; |
|
lbag.AppendToMember (current_field, GetLocation (yyVals[-2+yyTop])); |
|
end_block (lexer.Location); |
|
current_local_parameters = null; |
|
} |
|
|
|
void case_127() |
|
#line 1163 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), null); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_129() |
|
#line 1173 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; |
|
yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (Expression) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_134() |
|
#line 1199 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new FieldDeclarator (new SimpleMemberName (lt.Value, lt.Location), (ConstInitializer) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_136() |
|
#line 1212 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = new ConstInitializer (current_field, (Expression) yyVals[-1+yyTop], GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_137() |
|
#line 1218 "cs-parser.jay" |
|
{ |
|
report.Error (443, lexer.Location, "Value or constant expected"); |
|
yyVal = null; |
|
} |
|
|
|
void case_140() |
|
#line 1228 "cs-parser.jay" |
|
{ |
|
/* It has to be here for the parent to safely restore artificial block*/ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_141() |
|
#line 1237 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
|
|
/* Add it early in the case of body being eof for full ast*/ |
|
Method m = (Method) yyVals[0+yyTop]; |
|
async_block = (m.ModFlags & Modifiers.ASYNC) != 0; |
|
current_type.AddMember (m); |
|
} |
|
|
|
void case_142() |
|
#line 1247 "cs-parser.jay" |
|
{ |
|
Method method = (Method) yyVals[-2+yyTop]; |
|
method.Block = (ToplevelBlock) yyVals[0+yyTop]; |
|
async_block = false; |
|
|
|
if (method.Block == null) { |
|
lbag.AppendToMember (method, savedLocation); /* semicolon*/ |
|
method.ParameterInfo.CheckParameters (method); |
|
|
|
if ((method.ModFlags & Modifiers.ASYNC) != 0) { |
|
report.Error (1994, method.Location, "`{0}': The async modifier can only be used with methods that have a body", |
|
method.GetSignatureForError ()); |
|
} |
|
} else { |
|
if (current_container.Kind == MemberKind.Interface) { |
|
report.Error (531, method.Location, "`{0}': interface members cannot have a definition", |
|
method.GetSignatureForError ()); |
|
} |
|
} |
|
|
|
current_local_parameters = null; |
|
|
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_145() |
|
#line 1287 "cs-parser.jay" |
|
{ |
|
lexer.ConstraintsParsing = false; |
|
valid_param_mod = 0; |
|
MemberName name = (MemberName) yyVals[-6+yyTop]; |
|
current_local_parameters = (ParametersCompiled) yyVals[-3+yyTop]; |
|
|
|
var method = Method.Create (current_type, (FullNamedExpression) yyVals[-7+yyTop], (Modifiers) yyVals[-8+yyTop], |
|
name, current_local_parameters, (Attributes) yyVals[-9+yyTop], yyVals[0+yyTop] != null); |
|
|
|
if (yyVals[0+yyTop] != null) |
|
method.SetConstraints ((List<Constraints>) yyVals[0+yyTop]); |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
lbag.AddMember (method, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
yyVal = method; |
|
} |
|
|
|
void case_147() |
|
#line 1314 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
|
|
void case_149() |
|
#line 1323 "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], yyVals[-1+yyTop] != null); |
|
|
|
if (yyVals[-1+yyTop] != null) |
|
method.SetConstraints ((List<Constraints>) yyVals[-1+yyTop]); |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
StoreModifierLocation (Modifiers.PARTIAL, GetLocation (yyVals[-9+yyTop])); |
|
lbag.AddMember (method, GetModifierLocations (), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
yyVal = method; |
|
} |
|
|
|
void case_150() |
|
#line 1350 "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], false); |
|
|
|
current_local_parameters = (ParametersCompiled) yyVals[-1+yyTop]; |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
yyVal = method; |
|
} |
|
|
|
void case_151() |
|
#line 1369 "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], false); |
|
|
|
if (doc_support) |
|
method.DocComment = Lexer.consume_doc_comment (); |
|
|
|
yyVal = method; |
|
} |
|
|
|
void case_156() |
|
#line 1396 "cs-parser.jay" |
|
{ |
|
var pars_list = (List<Parameter>) yyVals[0+yyTop]; |
|
yyVal = new ParametersCompiled (pars_list.ToArray ()); |
|
lbag.AddLocation (yyVal, parameterListCommas); |
|
} |
|
|
|
void case_157() |
|
#line 1402 "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_158() |
|
#line 1411 "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_159() |
|
#line 1420 "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_160() |
|
#line 1428 "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_161() |
|
#line 1441 "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_162() |
|
#line 1448 "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_165() |
|
#line 1468 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = ParametersCompiled.EmptyReadOnlyParameters; |
|
} |
|
|
|
void case_166() |
|
#line 1476 "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_167() |
|
#line 1485 "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_168() |
|
#line 1509 "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_169() |
|
#line 1518 "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_170() |
|
#line 1525 "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_171() |
|
#line 1534 "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_173() |
|
#line 1549 "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_177() |
|
#line 1598 "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_178() |
|
#line 1622 "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_179() |
|
#line 1629 "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_180() |
|
#line 1636 "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_181() |
|
#line 1649 "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_182() |
|
#line 1655 "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_183() |
|
#line 1663 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_184() |
|
#line 1671 "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_185() |
|
#line 1677 "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_187() |
|
#line 1694 "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_188() |
|
#line 1705 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
tmpComment = Lexer.consume_doc_comment (); |
|
} |
|
|
|
void case_189() |
|
#line 1710 "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_190() |
|
#line 1724 "cs-parser.jay" |
|
{ |
|
lexer.PropertyParsing = false; |
|
|
|
if (doc_support) |
|
current_property.DocComment = ConsumeStoredComment (); |
|
} |
|
|
|
void case_191() |
|
#line 1731 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_property, GetLocation (yyVals[0+yyTop])); |
|
current_property = null; |
|
} |
|
|
|
void case_193() |
|
#line 1745 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
var type = (FullNamedExpression) yyVals[-6+yyTop]; |
|
Indexer indexer = new Indexer (current_type, type, (MemberName) yyVals[-5+yyTop], (Modifiers) yyVals[-7+yyTop], (ParametersCompiled) yyVals[-2+yyTop], (Attributes) yyVals[-8+yyTop]); |
|
|
|
current_property = indexer; |
|
|
|
current_type.AddIndexer (indexer); |
|
lbag.AddMember (current_property, GetModifierLocations (), GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
|
|
if (type.Type != null && type.Type.Kind == MemberKind.Void) |
|
report.Error (620, GetLocation (yyVals[-6+yyTop]), "`{0}': indexer return type cannot be `void'", indexer.GetSignatureForError ()); |
|
|
|
if (indexer.ParameterInfo.IsEmpty) { |
|
report.Error (1551, GetLocation (yyVals[-4+yyTop]), "Indexers must have at least one parameter"); |
|
} |
|
|
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
lexer.PropertyParsing = true; |
|
} |
|
|
|
void case_195() |
|
#line 1774 "cs-parser.jay" |
|
{ |
|
if (current_property.AccessorFirst != null && current_property.AccessorFirst.Block == null) |
|
((Indexer) current_property).ParameterInfo.CheckParameters (current_property); |
|
|
|
if (doc_support) |
|
current_property.DocComment = ConsumeStoredComment (); |
|
|
|
lbag.AppendToMember (current_property, GetLocation (yyVals[-1+yyTop])); |
|
current_property = null; |
|
} |
|
|
|
void case_200() |
|
#line 1793 "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_201() |
|
#line 1807 "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_202() |
|
#line 1828 "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_203() |
|
#line 1852 "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_204() |
|
#line 1878 "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_206() |
|
#line 1903 "cs-parser.jay" |
|
{ |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
yyVal = null; |
|
} |
|
|
|
void case_207() |
|
#line 1908 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (1043, yyToken, "Invalid accessor body"); |
|
yyVal = null; |
|
} |
|
|
|
void case_209() |
|
#line 1923 "cs-parser.jay" |
|
{ |
|
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_210() |
|
#line 1929 "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_211() |
|
#line 1943 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_212() |
|
#line 1949 "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_228() |
|
#line 2011 "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_232() |
|
#line 2048 "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_234() |
|
#line 2060 "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_259() |
|
#line 2136 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
|
|
Location loc = GetLocation (yyVals[-5+yyTop]); |
|
current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; |
|
|
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
|
|
yyVal = new OperatorDeclaration (Operator.OpType.Implicit, (FullNamedExpression) yyVals[-4+yyTop], loc); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_261() |
|
#line 2155 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
|
|
Location loc = GetLocation (yyVals[-5+yyTop]); |
|
current_local_parameters = (ParametersCompiled)yyVals[-1+yyTop]; |
|
|
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
|
|
yyVal = new OperatorDeclaration (Operator.OpType.Explicit, (FullNamedExpression) yyVals[-4+yyTop], loc); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[-5+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_262() |
|
#line 2170 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
yyVal = new OperatorDeclaration (Operator.OpType.Implicit, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_263() |
|
#line 2176 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
yyVal = new OperatorDeclaration (Operator.OpType.Explicit, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_264() |
|
#line 2186 "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_265() |
|
#line 2203 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
valid_param_mod = ParameterModifierType.All; |
|
} |
|
|
|
void case_266() |
|
#line 2212 "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_267() |
|
#line 2241 "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_273() |
|
#line 2273 "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_275() |
|
#line 2283 "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_276() |
|
#line 2289 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ConstructorThisInitializer (null, GetLocation (yyVals[0+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_277() |
|
#line 2295 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_278() |
|
#line 2303 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
|
|
current_local_parameters = ParametersCompiled.EmptyReadOnlyParameters; |
|
} |
|
|
|
void case_279() |
|
#line 2312 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; |
|
if (lt.Value != current_container.MemberName.Name){ |
|
report.Error (574, lt.Location, "Name of destructor must match name of class"); |
|
} else if (current_container.Kind != MemberKind.Class){ |
|
report.Error (575, lt.Location, "Only class types can contain destructor"); |
|
} |
|
|
|
Destructor d = new Destructor (current_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_280() |
|
#line 2338 "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_281() |
|
#line 2352 "cs-parser.jay" |
|
{ |
|
if (doc_support) { |
|
current_event_field.DocComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
lbag.AddMember (current_event_field, GetModifierLocations (), GetLocation (yyVals[-6+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
current_event_field = null; |
|
} |
|
|
|
void case_282() |
|
#line 2365 "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_283() |
|
#line 2373 "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_284() |
|
#line 2380 "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_287() |
|
#line 2399 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
current_event_field.Initializer = (Expression) yyVals[0+yyTop]; |
|
} |
|
|
|
void case_292() |
|
#line 2423 "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_294() |
|
#line 2433 "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_295() |
|
#line 2442 "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_299() |
|
#line 2463 "cs-parser.jay" |
|
{ |
|
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", |
|
current_event.GetSignatureForError ()); |
|
} |
|
|
|
void case_300() |
|
#line 2468 "cs-parser.jay" |
|
{ |
|
report.Error (65, lexer.Location, "`{0}': event property must have both add and remove accessors", |
|
current_event.GetSignatureForError ()); |
|
} |
|
|
|
void case_301() |
|
#line 2473 "cs-parser.jay" |
|
{ |
|
report.Error (1055, GetLocation (yyVals[0+yyTop]), "An add or remove accessor expected"); |
|
yyVal = null; |
|
} |
|
|
|
void case_302() |
|
#line 2481 "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_303() |
|
#line 2493 "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_304() |
|
#line 2509 "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_305() |
|
#line 2521 "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_306() |
|
#line 2537 "cs-parser.jay" |
|
{ |
|
report.Error (73, lexer.Location, "An add or remove accessor must have a body"); |
|
yyVal = null; |
|
} |
|
|
|
void case_308() |
|
#line 2546 "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_309() |
|
#line 2559 "cs-parser.jay" |
|
{ |
|
if (doc_support) |
|
enumTypeComment = Lexer.consume_doc_comment (); |
|
} |
|
|
|
void case_310() |
|
#line 2564 "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, (TypeExpression) 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_311() |
|
#line 2581 "cs-parser.jay" |
|
{ |
|
/* here will be evaluated after CLOSE_BLACE is consumed.*/ |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_312() |
|
#line 2587 "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_314() |
|
#line 2607 "cs-parser.jay" |
|
{ |
|
var te = yyVals[0+yyTop] as TypeExpression; |
|
if (te == null || !EnumSpec.IsValidUnderlyingType (te.Type)) { |
|
Enum.Error_1008 (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = null; |
|
} else { |
|
savedLocation = GetLocation (yyVals[-1+yyTop]); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
} |
|
|
|
void case_315() |
|
#line 2618 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (GetLocation (yyVals[-1+yyTop])); |
|
yyVal = null; |
|
} |
|
|
|
void case_320() |
|
#line 2636 "cs-parser.jay" |
|
{ |
|
lbag.AppendToMember (current_container, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_321() |
|
#line 2644 "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_322() |
|
#line 2657 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
if (doc_support) { |
|
tmpComment = Lexer.consume_doc_comment (); |
|
Lexer.doc_state = XmlCommentState.NotAllowed; |
|
} |
|
} |
|
|
|
void case_323() |
|
#line 2665 "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_325() |
|
#line 2690 "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_327() |
|
#line 2709 "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_329() |
|
#line 2728 "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_331() |
|
#line 2739 "cs-parser.jay" |
|
{ |
|
var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (TypeArguments) yyVals[0+yyTop], lt1.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_333() |
|
#line 2751 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (TypeArguments) yyVals[0+yyTop], lt.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_334() |
|
#line 2760 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); |
|
} |
|
|
|
void case_336() |
|
#line 2772 "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_337() |
|
#line 2783 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (lexer.Location); |
|
yyVal = new TypeArguments (); |
|
} |
|
|
|
void case_338() |
|
#line 2791 "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_339() |
|
#line 2798 "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_341() |
|
#line 2815 "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_342() |
|
#line 2824 "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_344() |
|
#line 2835 "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_345() |
|
#line 2844 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
yyVal = new MemberName (TypeDefinition.DefaultIndexerName, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_346() |
|
#line 2849 "cs-parser.jay" |
|
{ |
|
lexer.parsing_generic_declaration = false; |
|
yyVal = new MemberName (TypeDefinition.DefaultIndexerName, null, (ATypeNameExpression) yyVals[-1+yyTop], GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_347() |
|
#line 2857 "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_348() |
|
#line 2863 "cs-parser.jay" |
|
{ |
|
var lt1 = (Tokenizer.LocatedToken) yyVals[-3+yyTop]; |
|
var lt2 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
|
|
yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (TypeArguments) yyVals[-1+yyTop], lt1.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_349() |
|
#line 2871 "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_351() |
|
#line 2881 "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_352() |
|
#line 2895 "cs-parser.jay" |
|
{ |
|
var tparams = new TypeParameters (); |
|
tparams.Add ((TypeParameter)yyVals[0+yyTop]); |
|
yyVal = tparams; |
|
locationListStack.Push (new List<Location> ()); |
|
} |
|
|
|
void case_353() |
|
#line 2902 "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_354() |
|
#line 2912 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken)yyVals[0+yyTop]; |
|
yyVal = new TypeParameter (new MemberName (lt.Value, lt.Location), (Attributes)yyVals[-2+yyTop], (Variance) yyVals[-1+yyTop]); |
|
} |
|
|
|
void case_355() |
|
#line 2917 "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_360() |
|
#line 2951 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_362() |
|
#line 2960 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_364() |
|
#line 2969 "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_367() |
|
#line 2985 "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_369() |
|
#line 3001 "cs-parser.jay" |
|
{ |
|
if (yyVals[0+yyTop] != null) |
|
yyVal = new ComposedCast ((FullNamedExpression) yyVals[-1+yyTop], (ComposedTypeSpecifier) yyVals[0+yyTop]); |
|
} |
|
|
|
void case_372() |
|
#line 3017 "cs-parser.jay" |
|
{ |
|
var types = new List<FullNamedExpression> (2); |
|
types.Add ((FullNamedExpression) yyVals[0+yyTop]); |
|
yyVal = types; |
|
} |
|
|
|
void case_373() |
|
#line 3023 "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_374() |
|
#line 3033 "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_411() |
|
#line 3097 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new SimpleName (lt.Value, (TypeArguments)yyVals[0+yyTop], lt.Location); |
|
} |
|
|
|
void case_412() |
|
#line 3101 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionSimpleName (MemberName.MakeName (lt.Value, null), lt.Location); |
|
} |
|
|
|
void case_423() |
|
#line 3142 "cs-parser.jay" |
|
{ |
|
yyVal = new ParenthesizedExpression ((Expression) yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_425() |
|
#line 3154 "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_426() |
|
#line 3161 "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_427() |
|
#line 3168 "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_428() |
|
#line 3175 "cs-parser.jay" |
|
{ |
|
var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (TypeArguments) yyVals[0+yyTop], lt1.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_430() |
|
#line 3185 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); |
|
} |
|
|
|
void case_432() |
|
#line 3193 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new CompletionMemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, lt.Location); |
|
} |
|
|
|
void case_433() |
|
#line 3201 "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_436() |
|
#line 3214 "cs-parser.jay" |
|
{ |
|
if (yyVals[-1+yyTop] == null) { |
|
yyVal = CollectionOrObjectInitializers.Empty; |
|
/* TODO: lbag*/ |
|
} else { |
|
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
} |
|
|
|
void case_437() |
|
#line 3224 "cs-parser.jay" |
|
{ |
|
yyVal = new CollectionOrObjectInitializers ((List<Expression>) yyVals[-2+yyTop], GetLocation (yyVals[-3+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_440() |
|
#line 3240 "cs-parser.jay" |
|
{ |
|
var a = new List<Expression> (); |
|
a.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = a; |
|
} |
|
|
|
void case_441() |
|
#line 3246 "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_442() |
|
#line 3252 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_443() |
|
#line 3260 "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_445() |
|
#line 3269 "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_446() |
|
#line 3277 "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_447() |
|
#line 3286 "cs-parser.jay" |
|
{ |
|
report.Error (1920, GetLocation (yyVals[-1+yyTop]), "An element initializer cannot be empty"); |
|
yyVal = null; |
|
} |
|
|
|
void case_452() |
|
#line 3304 "cs-parser.jay" |
|
{ |
|
Arguments list = new Arguments (4); |
|
list.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_453() |
|
#line 3310 "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_454() |
|
#line 3320 "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_455() |
|
#line 3335 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-2+yyTop]; |
|
} |
|
|
|
void case_456() |
|
#line 3340 "cs-parser.jay" |
|
{ |
|
report.Error (839, GetLocation (yyVals[-1+yyTop]), "An argument is missing"); |
|
yyVal = null; |
|
} |
|
|
|
void case_461() |
|
#line 3361 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Ref); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_462() |
|
#line 3366 "cs-parser.jay" |
|
{ |
|
yyVal = new Argument ((Expression) yyVals[0+yyTop], Argument.AType.Out); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_463() |
|
#line 3371 "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_464() |
|
#line 3376 "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_466() |
|
#line 3388 "cs-parser.jay" |
|
{ |
|
yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_467() |
|
#line 3393 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess ((Expression) yyVals[-3+yyTop], (Arguments) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_468() |
|
#line 3398 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess ((Expression) yyVals[-2+yyTop], null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_469() |
|
#line 3406 "cs-parser.jay" |
|
{ |
|
var list = new List<Expression> (4); |
|
list.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_470() |
|
#line 3412 "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_471() |
|
#line 3418 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_472() |
|
#line 3426 "cs-parser.jay" |
|
{ |
|
Arguments args = new Arguments (4); |
|
args.Add ((Argument) yyVals[0+yyTop]); |
|
yyVal = args; |
|
} |
|
|
|
void case_473() |
|
#line 3432 "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_477() |
|
#line 3460 "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_478() |
|
#line 3465 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new ElementAccess (null, null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_481() |
|
#line 3487 "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_482() |
|
#line 3500 "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_483() |
|
#line 3512 "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_484() |
|
#line 3520 "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_485() |
|
#line 3527 "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_486() |
|
#line 3534 "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_487() |
|
#line 3539 "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_489() |
|
#line 3551 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_type; |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_490() |
|
#line 3559 "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_495() |
|
#line 3582 "cs-parser.jay" |
|
{ |
|
var a = new List<AnonymousTypeParameter> (4); |
|
a.Add ((AnonymousTypeParameter) yyVals[0+yyTop]); |
|
yyVal = a; |
|
} |
|
|
|
void case_496() |
|
#line 3588 "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_497() |
|
#line 3599 "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_498() |
|
#line 3605 "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_499() |
|
#line 3611 "cs-parser.jay" |
|
{ |
|
MemberAccess ma = (MemberAccess) yyVals[0+yyTop]; |
|
yyVal = new AnonymousTypeParameter (ma, ma.Name, ma.Location); |
|
} |
|
|
|
void case_500() |
|
#line 3616 "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_504() |
|
#line 3631 "cs-parser.jay" |
|
{ |
|
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_505() |
|
#line 3639 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreateArrayDimension (1, GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_506() |
|
#line 3644 "cs-parser.jay" |
|
{ |
|
yyVal = ComposedTypeSpecifier.CreateArrayDimension ((int)yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_511() |
|
#line 3674 "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_512() |
|
#line 3681 "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_513() |
|
#line 3695 "cs-parser.jay" |
|
{ |
|
var list = new List<Expression> (4); |
|
list.Add ((Expression) yyVals[0+yyTop]); |
|
yyVal = list; |
|
} |
|
|
|
void case_514() |
|
#line 3701 "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_516() |
|
#line 3715 "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_519() |
|
#line 3726 "cs-parser.jay" |
|
{ |
|
Error_TypeExpected (lexer.Location); |
|
yyVal = null; |
|
} |
|
|
|
void case_520() |
|
#line 3734 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
yyVal = new SimpleName (lt.Value, (int) yyVals[0+yyTop], lt.Location); |
|
} |
|
|
|
void case_521() |
|
#line 3740 "cs-parser.jay" |
|
{ |
|
var lt1 = (Tokenizer.LocatedToken) yyVals[-2+yyTop]; |
|
var lt2 = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
yyVal = new QualifiedAliasMember (lt1.Value, lt2.Value, (int) yyVals[0+yyTop], lt1.Location); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_522() |
|
#line 3748 "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_523() |
|
#line 3756 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
|
|
yyVal = new MemberAccess ((Expression) yyVals[-3+yyTop], lt.Value, (int) yyVals[0+yyTop], lt.Location) { |
|
DotLocation = GetLocation (yyVals[-2+yyTop]) |
|
}; |
|
} |
|
|
|
void case_524() |
|
#line 3764 "cs-parser.jay" |
|
{ |
|
var tne = (ATypeNameExpression) yyVals[-3+yyTop]; |
|
if (tne.HasTypeArguments) |
|
Error_TypeExpected (GetLocation (yyVals[0+yyTop])); |
|
|
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
yyVal = new MemberAccess (tne, lt.Value, (int) yyVals[0+yyTop], lt.Location) { |
|
DotLocation = GetLocation (yyVals[-2+yyTop]) |
|
}; |
|
} |
|
|
|
void case_525() |
|
#line 3778 "cs-parser.jay" |
|
{ |
|
if (lang_version < LanguageVersion.ISO_2) |
|
FeatureIsNotAvailable (GetLocation (yyVals[0+yyTop]), "generics"); |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_526() |
|
#line 3788 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[-1+yyTop]; |
|
if (lang_version == LanguageVersion.ISO_1) |
|
FeatureIsNotAvailable (lt.Location, "namespace alias qualifier"); |
|
|
|
yyVal = lt; |
|
} |
|
|
|
void case_527() |
|
#line 3799 "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_528() |
|
#line 3807 "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_529() |
|
#line 3815 "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_530() |
|
#line 3823 "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_532() |
|
#line 3835 "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_534() |
|
#line 3848 "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_538() |
|
#line 3873 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
yyVal = yyVals[-1+yyTop]; |
|
savedOpenLocation = GetLocation (yyVals[-3+yyTop]); |
|
savedCloseLocation = GetLocation (yyVals[-2+yyTop]); |
|
} |
|
|
|
void case_539() |
|
#line 3883 "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_543() |
|
#line 3903 "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_544() |
|
#line 3908 "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_553() |
|
#line 3963 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Multiply, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_554() |
|
#line 3968 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Division, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_555() |
|
#line 3973 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Modulus, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_557() |
|
#line 3982 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Addition, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_559() |
|
#line 3991 "cs-parser.jay" |
|
{ |
|
/* Shift/Reduce conflict*/ |
|
yyVal = new Binary (Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_563() |
|
#line 4008 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LeftShift, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_564() |
|
#line 4013 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.RightShift, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_566() |
|
#line 4022 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LessThan, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_567() |
|
#line 4027 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.GreaterThan, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_568() |
|
#line 4032 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LessThanOrEqual, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_569() |
|
#line 4037 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.GreaterThanOrEqual, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_571() |
|
#line 4046 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Equality, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_572() |
|
#line 4051 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.Inequality, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_574() |
|
#line 4060 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.BitwiseAnd, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_576() |
|
#line 4069 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.ExclusiveOr, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_578() |
|
#line 4078 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.BitwiseOr, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_580() |
|
#line 4087 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LogicalAnd, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_582() |
|
#line 4096 "cs-parser.jay" |
|
{ |
|
yyVal = new Binary (Binary.Operator.LogicalOr, |
|
(Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_584() |
|
#line 4105 "cs-parser.jay" |
|
{ |
|
if (lang_version < LanguageVersion.ISO_2) |
|
FeatureIsNotAvailable (GetLocation (yyVals[-1+yyTop]), "null coalescing operator"); |
|
|
|
yyVal = new Nullable.NullCoalescingOperator ((Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_586() |
|
#line 4116 "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_588() |
|
#line 4128 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.Multiply, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_589() |
|
#line 4133 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.Division, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_590() |
|
#line 4138 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.Modulus, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_591() |
|
#line 4143 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.Addition, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_592() |
|
#line 4148 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.Subtraction, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_593() |
|
#line 4153 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.LeftShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_594() |
|
#line 4158 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.RightShift, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_595() |
|
#line 4163 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.BitwiseAnd, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_596() |
|
#line 4168 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.BitwiseOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_597() |
|
#line 4173 "cs-parser.jay" |
|
{ |
|
yyVal = new CompoundAssign ( |
|
Binary.Operator.ExclusiveOr, (Expression) yyVals[-2+yyTop], (Expression) yyVals[0+yyTop], GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_598() |
|
#line 4181 "cs-parser.jay" |
|
{ |
|
var pars = new List<Parameter> (4); |
|
pars.Add ((Parameter) yyVals[0+yyTop]); |
|
parameterListCommas.Clear (); |
|
yyVal = pars; |
|
} |
|
|
|
void case_599() |
|
#line 4188 "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_600() |
|
#line 4204 "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_601() |
|
#line 4210 "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_602() |
|
#line 4216 "cs-parser.jay" |
|
{ |
|
var lt = (Tokenizer.LocatedToken) yyVals[0+yyTop]; |
|
yyVal = new ImplicitLambdaParameter (lt.Value, lt.Location); |
|
} |
|
|
|
void case_604() |
|
#line 4224 "cs-parser.jay" |
|
{ |
|
var pars_list = (List<Parameter>) yyVals[0+yyTop]; |
|
yyVal = new ParametersCompiled (pars_list.ToArray ()); |
|
lbag.AddLocation (yyVal, parameterListCommas); |
|
} |
|
|
|
void case_608() |
|
#line 4241 "cs-parser.jay" |
|
{ |
|
Block b = end_block (Location.Null); |
|
b.IsCompilerGenerated = true; |
|
b.AddStatement (new ContextualReturn ((Expression) yyVals[0+yyTop])); |
|
yyVal = b; |
|
} |
|
|
|
void case_610() |
|
#line 4252 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = EmptyExpression.Null; |
|
} |
|
|
|
void case_611() |
|
#line 4260 "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_612() |
|
#line 4266 "cs-parser.jay" |
|
{ |
|
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_613() |
|
#line 4271 "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_614() |
|
#line 4277 "cs-parser.jay" |
|
{ |
|
yyVal = end_anonymous ((ParametersBlock) yyVals[0+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_616() |
|
#line 4286 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], false, GetLocation (yyVals[-4+yyTop])); |
|
} |
|
|
|
void case_617() |
|
#line 4291 "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_619() |
|
#line 4300 "cs-parser.jay" |
|
{ |
|
valid_param_mod = 0; |
|
start_anonymous (true, (ParametersCompiled) yyVals[-2+yyTop], true, GetLocation (yyVals[-5+yyTop])); |
|
} |
|
|
|
void case_620() |
|
#line 4305 "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_627() |
|
#line 4328 "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_628() |
|
#line 4333 "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_629() |
|
#line 4338 "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_633() |
|
#line 4367 "cs-parser.jay" |
|
{ |
|
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_634() |
|
#line 4378 "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_635() |
|
#line 4392 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_declaration; |
|
if (doc_support) |
|
Lexer.doc_state = XmlCommentState.Allowed; |
|
} |
|
|
|
void case_636() |
|
#line 4398 "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_639() |
|
#line 4417 "cs-parser.jay" |
|
{ |
|
mod_locations = null; |
|
yyVal = ModifierNone; |
|
lexer.parsing_modifiers = false; |
|
} |
|
|
|
void case_642() |
|
#line 4431 "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_643() |
|
#line 4450 "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_644() |
|
#line 4458 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PUBLIC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_645() |
|
#line 4463 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PROTECTED; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_646() |
|
#line 4468 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.INTERNAL; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_647() |
|
#line 4473 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.PRIVATE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_648() |
|
#line 4478 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.ABSTRACT; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_649() |
|
#line 4483 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.SEALED; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_650() |
|
#line 4488 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.STATIC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_651() |
|
#line 4493 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.READONLY; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_652() |
|
#line 4498 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.VIRTUAL; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_653() |
|
#line 4503 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.OVERRIDE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_654() |
|
#line 4508 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.EXTERN; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_655() |
|
#line 4513 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.VOLATILE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_656() |
|
#line 4518 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.UNSAFE; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
if (!settings.Unsafe) |
|
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_657() |
|
#line 4525 "cs-parser.jay" |
|
{ |
|
yyVal = Modifiers.ASYNC; |
|
StoreModifierLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_659() |
|
#line 4534 "cs-parser.jay" |
|
{ |
|
current_type.AddBasesForPart ((List<FullNamedExpression>) yyVals[0+yyTop]); |
|
lbag.AppendToMember (current_type, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_660() |
|
#line 4539 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
current_type.AddBasesForPart ((List<FullNamedExpression>) yyVals[-1+yyTop]); |
|
} |
|
|
|
void case_663() |
|
#line 4556 "cs-parser.jay" |
|
{ |
|
var constraints = new List<Constraints> (1); |
|
constraints.Add ((Constraints) yyVals[0+yyTop]); |
|
yyVal = constraints; |
|
} |
|
|
|
void case_664() |
|
#line 4562 "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_665() |
|
#line 4581 "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_666() |
|
#line 4587 "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_667() |
|
#line 4597 "cs-parser.jay" |
|
{ |
|
var constraints = new List<FullNamedExpression> (1); |
|
constraints.Add ((FullNamedExpression) yyVals[0+yyTop]); |
|
yyVal = constraints; |
|
} |
|
|
|
void case_668() |
|
#line 4603 "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_669() |
|
#line 4630 "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_670() |
|
#line 4637 "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_674() |
|
#line 4657 "cs-parser.jay" |
|
{ |
|
if (lang_version <= LanguageVersion.V_3) |
|
FeatureIsNotAvailable (lexer.Location, "generic type variance"); |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_675() |
|
#line 4667 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.Covariant; |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_676() |
|
#line 4672 "cs-parser.jay" |
|
{ |
|
yyVal = Variance.Contravariant; |
|
savedLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_677() |
|
#line 4693 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
start_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_679() |
|
#line 4705 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_680() |
|
#line 4710 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (lexer.Location); |
|
} |
|
|
|
void case_681() |
|
#line 4719 "cs-parser.jay" |
|
{ |
|
++lexer.parsing_block; |
|
current_block.StartLocation = GetLocation (yyVals[0+yyTop]); |
|
} |
|
|
|
void case_682() |
|
#line 4724 "cs-parser.jay" |
|
{ |
|
--lexer.parsing_block; |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_683() |
|
#line 4728 "cs-parser.jay" |
|
{ |
|
report.Error (1525, GetLocation (yyVals[0+yyTop]), "Unexpected symbol '}', expected '{'"); |
|
lexer.putback ('}'); |
|
yyVal = end_block (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_691() |
|
#line 4757 "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_692() |
|
#line 4766 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_725() |
|
#line 4830 "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_726() |
|
#line 4835 "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_727() |
|
#line 4840 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_728() |
|
#line 4848 "cs-parser.jay" |
|
{ |
|
/* Uses lexer.Location because semicolon location is not kept in quick mode*/ |
|
yyVal = new EmptyStatement (lexer.Location); |
|
} |
|
|
|
void case_729() |
|
#line 4856 "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_732() |
|
#line 4869 "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_733() |
|
#line 4885 "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_734() |
|
#line 4915 "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_735() |
|
#line 4926 "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_738() |
|
#line 4941 "cs-parser.jay" |
|
{ |
|
Expression.Error_VoidInvalidInTheContext (GetLocation (yyVals[0+yyTop]), report); |
|
yyVal = new TypeExpression (compiler.BuiltinTypes.Void, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_740() |
|
#line 4950 "cs-parser.jay" |
|
{ |
|
((ComposedTypeSpecifier) yyVals[-1+yyTop]).Next = (ComposedTypeSpecifier) yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_743() |
|
#line 4966 "cs-parser.jay" |
|
{ |
|
if (async_block) { |
|
report.Error (4003, GetLocation (yyVals[0+yyTop]), "`await' cannot be used as an identifier within an async method or lambda expression"); |
|
yyVal = Tokenizer.LocatedToken.Create ("await", GetLocation (yyVals[0+yyTop])); |
|
} |
|
} |
|
|
|
void case_744() |
|
#line 4976 "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_745() |
|
#line 4983 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
lbag.AppendTo (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_746() |
|
#line 4989 "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_747() |
|
#line 4996 "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_749() |
|
#line 5009 "cs-parser.jay" |
|
{ |
|
/* Redundant, but wont regress*/ |
|
report.Error (1525, lexer.Location, "Unexpected symbol }"); |
|
lexer.putback ('}'); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_751() |
|
#line 5020 "cs-parser.jay" |
|
{ |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_752() |
|
#line 5025 "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_753() |
|
#line 5039 "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_757() |
|
#line 5057 "cs-parser.jay" |
|
{ |
|
foreach (var d in current_variable.Declarators) { |
|
if (d.Initializer == null) |
|
Error_MissingInitializer (d.Variable.Location); |
|
} |
|
} |
|
|
|
void case_760() |
|
#line 5072 "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_761() |
|
#line 5081 "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_763() |
|
#line 5097 "cs-parser.jay" |
|
{ |
|
savedLocation = GetLocation (yyVals[-1+yyTop]); |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
} |
|
|
|
void case_768() |
|
#line 5115 "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_770() |
|
#line 5128 "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_771() |
|
#line 5133 "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_772() |
|
#line 5141 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_774() |
|
#line 5147 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
report.Error (1002, GetLocation (yyVals[0+yyTop]), "; expected"); |
|
lexer.putback ('}'); |
|
} |
|
|
|
void case_777() |
|
#line 5165 "cs-parser.jay" |
|
{ |
|
ExpressionStatement s = yyVals[0+yyTop] as ExpressionStatement; |
|
if (s == null) { |
|
Expression.Error_InvalidExpressionStatement (report, GetLocation (yyVals[0+yyTop])); |
|
yyVal = new StatementErrorExpression (yyVals[0+yyTop] as Expression); |
|
} else { |
|
yyVal = new StatementExpression (s); |
|
} |
|
} |
|
|
|
void case_778() |
|
#line 5178 "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_779() |
|
#line 5186 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new EmptyStatement (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_782() |
|
#line 5200 "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_783() |
|
#line 5209 "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_784() |
|
#line 5219 "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_786() |
|
#line 5233 "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_787() |
|
#line 5239 "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_788() |
|
#line 5249 "cs-parser.jay" |
|
{ |
|
report.Warning (1522, 1, current_block.StartLocation, "Empty switch block"); |
|
yyVal = new List<SwitchSection> (); |
|
} |
|
|
|
void case_790() |
|
#line 5258 "cs-parser.jay" |
|
{ |
|
var sections = new List<SwitchSection> (4); |
|
|
|
sections.Add ((SwitchSection) yyVals[0+yyTop]); |
|
yyVal = sections; |
|
} |
|
|
|
void case_791() |
|
#line 5265 "cs-parser.jay" |
|
{ |
|
var sections = (List<SwitchSection>) yyVals[-1+yyTop]; |
|
|
|
sections.Add ((SwitchSection) yyVals[0+yyTop]); |
|
yyVal = sections; |
|
} |
|
|
|
void case_792() |
|
#line 5272 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new List<SwitchSection> (); |
|
} |
|
|
|
void case_795() |
|
#line 5291 "cs-parser.jay" |
|
{ |
|
var labels = new List<SwitchLabel> (2); |
|
|
|
labels.Add ((SwitchLabel) yyVals[0+yyTop]); |
|
yyVal = labels; |
|
} |
|
|
|
void case_796() |
|
#line 5298 "cs-parser.jay" |
|
{ |
|
var labels = (List<SwitchLabel>) (yyVals[-1+yyTop]); |
|
labels.Add ((SwitchLabel) yyVals[0+yyTop]); |
|
|
|
yyVal = labels; |
|
} |
|
|
|
void case_797() |
|
#line 5308 "cs-parser.jay" |
|
{ |
|
yyVal = new SwitchLabel ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_803() |
|
#line 5327 "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_804() |
|
#line 5335 "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_805() |
|
#line 5345 "cs-parser.jay" |
|
{ |
|
yyVal = new Do ((Statement) yyVals[-5+yyTop], (BooleanExpression) yyVals[-2+yyTop], GetLocation (yyVals[-6+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-4+yyTop]), GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_806() |
|
#line 5350 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Do ((Statement) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_807() |
|
#line 5355 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
|
|
yyVal = new Do ((Statement) yyVals[-4+yyTop], (BooleanExpression) yyVals[-1+yyTop], GetLocation (yyVals[-5+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-2+yyTop])); |
|
} |
|
|
|
void case_808() |
|
#line 5365 "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_810() |
|
#line 5382 "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_812() |
|
#line 5392 "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_813() |
|
#line 5403 "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_815() |
|
#line 5413 "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_816() |
|
#line 5425 "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_817() |
|
#line 5438 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = end_block (current_block.StartLocation); |
|
} |
|
|
|
void case_820() |
|
#line 5451 "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_821() |
|
#line 5458 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_829() |
|
#line 5482 "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_830() |
|
#line 5499 "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_831() |
|
#line 5512 "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_832() |
|
#line 5529 "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_833() |
|
#line 5538 "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_834() |
|
#line 5549 "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_835() |
|
#line 5562 "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_842() |
|
#line 5582 "cs-parser.jay" |
|
{ |
|
yyVal = new Break (GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_843() |
|
#line 5590 "cs-parser.jay" |
|
{ |
|
yyVal = new Continue (GetLocation (yyVals[-1+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_844() |
|
#line 5595 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Continue (GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_845() |
|
#line 5603 "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_846() |
|
#line 5609 "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_847() |
|
#line 5614 "cs-parser.jay" |
|
{ |
|
yyVal = new GotoDefault (GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop]), GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_848() |
|
#line 5622 "cs-parser.jay" |
|
{ |
|
yyVal = new Return ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_849() |
|
#line 5627 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Return (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_850() |
|
#line 5635 "cs-parser.jay" |
|
{ |
|
yyVal = new Throw ((Expression) yyVals[-1+yyTop], GetLocation (yyVals[-2+yyTop])); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_851() |
|
#line 5640 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = new Throw (null, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_852() |
|
#line 5648 "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_853() |
|
#line 5664 "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_857() |
|
#line 5690 "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_858() |
|
#line 5695 "cs-parser.jay" |
|
{ |
|
var loc = GetLocation (yyVals[-4+yyTop]); |
|
yyVal = new TryFinally (new TryCatch ((Block) yyVals[-3+yyTop], (List<Catch>) yyVals[-2+yyTop], loc, true), (Block) yyVals[0+yyTop], loc); |
|
lbag.AddStatement (yyVal, GetLocation (yyVals[-1+yyTop])); |
|
} |
|
|
|
void case_859() |
|
#line 5701 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (1524, yyToken); |
|
yyVal = new TryCatch ((Block) yyVals[-1+yyTop], null, GetLocation (yyVals[-2+yyTop]), false); |
|
} |
|
|
|
void case_860() |
|
#line 5709 "cs-parser.jay" |
|
{ |
|
var l = new List<Catch> (2); |
|
|
|
l.Add ((Catch) yyVals[0+yyTop]); |
|
yyVal = l; |
|
} |
|
|
|
void case_861() |
|
#line 5716 "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_865() |
|
#line 5740 "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_867() |
|
#line 5759 "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_870() |
|
#line 5787 "cs-parser.jay" |
|
{ |
|
if (!settings.Unsafe) |
|
Error_UnsafeCodeNotAllowed (GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_872() |
|
#line 5797 "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_873() |
|
#line 5805 "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_874() |
|
#line 5815 "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_875() |
|
#line 5825 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_876() |
|
#line 5830 "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_877() |
|
#line 5843 "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_878() |
|
#line 5853 "cs-parser.jay" |
|
{ |
|
yyVal = current_variable; |
|
current_variable = null; |
|
} |
|
|
|
void case_879() |
|
#line 5858 "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_880() |
|
#line 5868 "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_881() |
|
#line 5876 "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_883() |
|
#line 5887 "cs-parser.jay" |
|
{ |
|
/* It has to be here for the parent to safely restore artificial block*/ |
|
Error_SyntaxError (yyToken); |
|
} |
|
|
|
void case_885() |
|
#line 5899 "cs-parser.jay" |
|
{ |
|
current_variable.Initializer = (Expression) yyVals[0+yyTop]; |
|
lbag.AppendTo (current_variable, GetLocation (yyVals[-1+yyTop])); |
|
yyVal = current_variable; |
|
} |
|
|
|
void case_886() |
|
#line 5911 "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_887() |
|
#line 5923 "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_888() |
|
#line 5934 "cs-parser.jay" |
|
{ |
|
lexer.query_parsing = false; |
|
yyVal = yyVals[-1+yyTop]; |
|
|
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
} |
|
|
|
void case_889() |
|
#line 5941 "cs-parser.jay" |
|
{ |
|
yyVal = yyVals[-1+yyTop]; |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
} |
|
|
|
void case_890() |
|
#line 5950 "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_891() |
|
#line 5960 "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_892() |
|
#line 5975 "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_893() |
|
#line 5985 "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_895() |
|
#line 6004 "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_897() |
|
#line 6020 "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_898() |
|
#line 6039 "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_899() |
|
#line 6054 "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_901() |
|
#line 6067 "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_902() |
|
#line 6072 "cs-parser.jay" |
|
{ |
|
Error_SyntaxError (yyToken); |
|
yyVal = null; |
|
} |
|
|
|
void case_904() |
|
#line 6084 "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_905() |
|
#line 6091 "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_906() |
|
#line 6099 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
|
|
void case_907() |
|
#line 6106 "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_909() |
|
#line 6118 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-1+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-1+yyTop]; |
|
} |
|
|
|
void case_916() |
|
#line 6138 "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_918() |
|
#line 6157 "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_919() |
|
#line 6167 "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_920() |
|
#line 6175 "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_921() |
|
#line 6183 "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_922() |
|
#line 6191 "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_923() |
|
#line 6229 "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_924() |
|
#line 6237 "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_925() |
|
#line 6245 "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_926() |
|
#line 6253 "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_928() |
|
#line 6299 "cs-parser.jay" |
|
{ |
|
opt_intoStack.Push (GetLocation (yyVals[-1+yyTop])); |
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_930() |
|
#line 6311 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
yyVal = yyVals[0+yyTop]; |
|
} |
|
|
|
void case_932() |
|
#line 6322 "cs-parser.jay" |
|
{ |
|
current_block.SetEndLocation (lexer.Location); |
|
current_block = current_block.Parent; |
|
|
|
current_block = new Linq.QueryBlock (current_block, lexer.Location); |
|
} |
|
|
|
void case_933() |
|
#line 6329 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-3+yyTop]).Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-3+yyTop]; |
|
} |
|
|
|
void case_935() |
|
#line 6338 "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_936() |
|
#line 6345 "cs-parser.jay" |
|
{ |
|
((Linq.AQueryClause)yyVals[-3+yyTop]).Tail.Next = (Linq.AQueryClause)yyVals[0+yyTop]; |
|
yyVal = yyVals[-3+yyTop]; |
|
} |
|
|
|
void case_938() |
|
#line 6357 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_939() |
|
#line 6362 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.OrderByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_941() |
|
#line 6374 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByAscending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_942() |
|
#line 6379 "cs-parser.jay" |
|
{ |
|
yyVal = new Linq.ThenByDescending ((Linq.QueryBlock) current_block, (Expression)yyVals[-1+yyTop]); |
|
lbag.AddLocation (yyVal, GetLocation (yyVals[0+yyTop])); |
|
} |
|
|
|
void case_944() |
|
#line 6389 "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_945() |
|
#line 6405 "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_948() |
|
#line 6432 "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_949() |
|
#line 6460 "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_959() |
|
#line 6503 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedBuiltinType = (TypeExpression)yyVals[-1+yyTop]; |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[0+yyTop]; |
|
yyVal = null; |
|
} |
|
|
|
void case_960() |
|
#line 6509 "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_963() |
|
#line 6524 "cs-parser.jay" |
|
{ |
|
module.DocumentationBuilder.ParsedParameters = (List<DocumentationParameter>)yyVals[-1+yyTop]; |
|
yyVal = new MemberName ((MemberName) yyVals[-6+yyTop], MemberCache.IndexerNameAlias, Location.Null); |
|
} |
|
|
|
void case_964() |
|
#line 6529 "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_965() |
|
#line 6537 "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_966() |
|
#line 6545 "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_974() |
|
#line 6583 "cs-parser.jay" |
|
{ |
|
var parameters = new List<DocumentationParameter> (); |
|
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); |
|
yyVal = parameters; |
|
} |
|
|
|
void case_975() |
|
#line 6589 "cs-parser.jay" |
|
{ |
|
var parameters = yyVals[-2+yyTop] as List<DocumentationParameter>; |
|
parameters.Add ((DocumentationParameter) yyVals[0+yyTop]); |
|
yyVal = parameters; |
|
} |
|
|
|
void case_976() |
|
#line 6598 "cs-parser.jay" |
|
{ |
|
if (yyVals[-1+yyTop] != null) |
|
yyVal = new DocumentationParameter ((Parameter.Modifier) yyVals[-1+yyTop], (FullNamedExpression) yyVals[0+yyTop]); |
|
else |
|
yyVal = new DocumentationParameter ((FullNamedExpression) yyVals[0+yyTop]); |
|
} |
|
|
|
#line default |
|
static readonly short [] yyLhs = { -1, |
|
0, 4, 0, 0, 1, 1, 1, 1, 2, 2, |
|
11, 11, 12, 12, 13, 13, 14, 15, 15, 15, |
|
19, 20, 17, 18, 18, 18, 22, 22, 23, 23, |
|
7, 7, 6, 6, 21, 21, 8, 8, 24, 24, |
|
24, 25, 25, 25, 25, 25, 9, 9, 10, 10, |
|
33, 31, 36, 32, 32, 34, 34, 34, 34, 35, |
|
35, 40, 37, 38, 39, 39, 41, 41, 41, 41, |
|
41, 42, 42, 46, 43, 45, 48, 48, 48, 49, |
|
49, 50, 50, 51, 51, 51, 51, 51, 51, 51, |
|
51, 51, 51, 51, 51, 65, 67, 69, 70, 71, |
|
27, 27, 74, 52, 75, 75, 76, 76, 77, 79, |
|
73, 73, 78, 78, 84, 53, 88, 53, 53, 83, |
|
91, 83, 85, 85, 92, 92, 93, 94, 93, 89, |
|
89, 95, 95, 96, 97, 87, 87, 90, 90, 90, |
|
100, 54, 103, 104, 98, 105, 106, 107, 98, 98, |
|
98, 99, 99, 102, 102, 110, 110, 110, 110, 110, |
|
110, 110, 110, 110, 110, 111, 111, 114, 114, 114, |
|
114, 117, 114, 115, 115, 118, 118, 119, 119, 119, |
|
112, 112, 112, 120, 120, 120, 113, 122, 124, 125, |
|
55, 127, 128, 129, 57, 123, 123, 123, 123, 123, |
|
133, 130, 134, 131, 132, 132, 132, 135, 136, 137, |
|
139, 28, 28, 138, 138, 140, 140, 141, 141, 141, |
|
141, 141, 141, 141, 141, 141, 144, 58, 143, 143, |
|
145, 145, 148, 142, 142, 147, 147, 147, 147, 147, |
|
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, |
|
147, 147, 147, 147, 147, 147, 147, 150, 149, 151, |
|
149, 149, 149, 59, 154, 156, 152, 153, 153, 155, |
|
155, 160, 158, 161, 158, 158, 158, 162, 60, 164, |
|
56, 167, 168, 56, 163, 170, 163, 165, 165, 171, |
|
171, 172, 173, 172, 174, 169, 166, 166, 166, 166, |
|
166, 178, 175, 179, 176, 177, 177, 61, 181, 183, |
|
184, 29, 180, 180, 180, 182, 182, 182, 185, 185, |
|
186, 187, 186, 188, 189, 190, 30, 191, 191, 16, |
|
16, 192, 192, 195, 194, 194, 194, 196, 196, 198, |
|
64, 121, 101, 101, 126, 126, 199, 199, 199, 197, |
|
197, 200, 200, 201, 201, 203, 203, 82, 72, 72, |
|
86, 86, 116, 116, 146, 146, 204, 204, 204, 204, |
|
204, 208, 208, 209, 207, 207, 207, 207, 207, 207, |
|
207, 210, 210, 210, 210, 210, 210, 210, 210, 210, |
|
211, 211, 211, 211, 211, 211, 211, 211, 211, 211, |
|
211, 211, 211, 211, 211, 211, 211, 211, 211, 211, |
|
212, 212, 212, 213, 213, 213, 233, 233, 234, 234, |
|
235, 235, 215, 215, 232, 232, 232, 232, 232, 232, |
|
232, 232, 217, 236, 236, 237, 237, 238, 238, 240, |
|
240, 240, 241, 241, 241, 241, 241, 242, 242, 159, |
|
159, 246, 246, 246, 246, 246, 248, 248, 247, 247, |
|
249, 249, 249, 249, 250, 218, 218, 218, 245, 245, |
|
245, 251, 251, 252, 252, 219, 220, 220, 221, 222, |
|
223, 223, 214, 214, 214, 214, 214, 257, 253, 224, |
|
258, 258, 259, 259, 260, 260, 261, 261, 261, 261, |
|
254, 254, 205, 205, 256, 256, 262, 262, 255, 255, |
|
81, 81, 263, 263, 264, 225, 265, 265, 265, 266, |
|
266, 266, 266, 266, 267, 193, 226, 227, 228, 229, |
|
269, 230, 270, 230, 268, 268, 272, 271, 216, 273, |
|
273, 273, 273, 273, 274, 274, 274, 274, 274, 274, |
|
274, 275, 275, 275, 275, 276, 276, 276, 276, 276, |
|
276, 277, 277, 277, 278, 278, 278, 278, 278, 279, |
|
279, 279, 280, 280, 281, 281, 282, 282, 283, 283, |
|
284, 284, 285, 285, 286, 286, 288, 288, 288, 288, |
|
288, 288, 288, 288, 288, 288, 288, 289, 289, 290, |
|
290, 290, 291, 291, 292, 292, 294, 293, 287, 287, |
|
296, 295, 297, 295, 298, 299, 295, 300, 301, 295, |
|
44, 44, 243, 243, 243, 243, 231, 231, 231, 80, |
|
303, 304, 305, 306, 307, 26, 63, 63, 62, 62, |
|
108, 108, 308, 308, 308, 308, 308, 308, 308, 308, |
|
308, 308, 308, 308, 308, 308, 308, 66, 66, 66, |
|
68, 68, 309, 309, 310, 310, 311, 311, 312, 312, |
|
312, 312, 202, 202, 313, 313, 315, 109, 316, 316, |
|
317, 157, 157, 314, 314, 318, 318, 319, 319, 319, |
|
319, 319, 323, 323, 324, 324, 324, 321, 321, 321, |
|
321, 321, 321, 321, 321, 321, 321, 321, 321, 321, |
|
325, 325, 325, 325, 325, 325, 325, 325, 325, 325, |
|
325, 325, 325, 339, 339, 339, 339, 326, 340, 322, |
|
341, 341, 342, 342, 342, 342, 342, 342, 206, 206, |
|
343, 47, 47, 345, 320, 349, 320, 347, 347, 344, |
|
344, 344, 344, 346, 346, 353, 353, 352, 352, 354, |
|
354, 348, 348, 350, 350, 355, 355, 356, 351, 351, |
|
351, 327, 327, 327, 338, 338, 357, 358, 358, 328, |
|
328, 359, 359, 359, 362, 360, 360, 361, 361, 363, |
|
363, 363, 366, 364, 365, 365, 367, 367, 329, 329, |
|
329, 329, 368, 368, 369, 369, 369, 373, 370, 376, |
|
372, 372, 379, 375, 375, 378, 378, 374, 374, 382, |
|
381, 381, 377, 377, 380, 380, 384, 383, 383, 371, |
|
371, 385, 371, 371, 371, 330, 330, 330, 330, 330, |
|
330, 386, 387, 387, 388, 388, 388, 389, 389, 390, |
|
390, 391, 391, 392, 392, 331, 331, 331, 331, 393, |
|
393, 395, 395, 394, 396, 394, 394, 332, 333, 397, |
|
336, 334, 334, 399, 400, 337, 402, 403, 335, 335, |
|
335, 401, 401, 398, 398, 302, 302, 302, 302, 404, |
|
404, 406, 406, 408, 407, 409, 407, 405, 405, 405, |
|
405, 405, 413, 411, 414, 415, 411, 410, 410, 416, |
|
416, 416, 416, 416, 421, 417, 422, 418, 423, 424, |
|
425, 419, 427, 428, 429, 419, 426, 426, 431, 420, |
|
430, 434, 430, 433, 436, 433, 432, 432, 432, 435, |
|
435, 435, 412, 437, 412, 3, 3, 438, 3, 3, |
|
439, 439, 244, 244, 239, 239, 5, 440, 440, 440, |
|
440, 444, 440, 440, 440, 440, 441, 441, 442, 445, |
|
442, 443, 443, 446, 446, 447, |
|
}; |
|
static readonly short [] yyLen = { 2, |
|
2, 0, 3, 1, 2, 4, 3, 1, 0, 1, |
|
1, 2, 4, 2, 1, 2, 1, 3, 5, 2, |
|
0, 0, 11, 1, 3, 1, 0, 1, 0, 1, |
|
0, 1, 0, 1, 0, 1, 1, 2, 1, 1, |
|
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, 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, 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, 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, 0, 1, 3, 4, 0, 1, 1, |
|
3, 2, 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, 4, |
|
0, 4, 0, 5, 0, 1, 0, 4, 4, 1, |
|
2, 2, 4, 2, 1, 2, 2, 2, 2, 2, |
|
2, 1, 3, 3, 3, 1, 3, 3, 3, 3, |
|
3, 1, 3, 3, 1, 3, 3, 3, 3, 1, |
|
3, 3, 1, 3, 1, 3, 1, 3, 1, 3, |
|
1, 3, 1, 3, 1, 5, 3, 3, 3, 3, |
|
3, 3, 3, 3, 3, 3, 3, 1, 3, 3, |
|
2, 1, 0, 1, 1, 1, 0, 2, 1, 1, |
|
0, 4, 0, 5, 0, 0, 7, 0, 0, 8, |
|
1, 1, 1, 1, 1, 1, 6, 4, 4, 1, |
|
1, 0, 0, 0, 0, 15, 0, 1, 0, 1, |
|
1, 2, 1, 1, 1, 1, 1, 1, 1, 1, |
|
1, 1, 1, 1, 1, 1, 1, 0, 2, 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, 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, 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, 2, 3, |
|
2, 4, 3, 0, 1, 3, 4, 5, 3, 1, |
|
2, 0, 1, 2, 0, 7, 3, 2, 2, 0, |
|
3, 5, 4, 0, 0, 10, 0, 0, 9, 5, |
|
4, 2, 1, 0, 2, 2, 2, 2, 2, 4, |
|
5, 4, 5, 0, 5, 0, 6, 3, 2, 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, 946, 0, 0, 950, 0, |
|
0, 15, 17, 377, 383, 390, 378, 380, 0, 379, |
|
0, 386, 388, 375, 0, 382, 384, 376, 387, 389, |
|
385, 340, 967, 0, 381, 957, 0, 10, 1, 0, |
|
0, 0, 12, 0, 779, 0, 0, 0, 0, 0, |
|
0, 0, 0, 418, 0, 0, 0, 0, 0, 0, |
|
0, 416, 0, 0, 0, 476, 0, 417, 0, 515, |
|
0, 870, 0, 0, 0, 626, 0, 0, 0, 0, |
|
0, 0, 0, 677, 0, 728, 0, 0, 0, 0, |
|
0, 0, 0, 0, 415, 0, 615, 0, 778, 0, |
|
711, 0, 0, 0, 0, 392, 393, 0, 395, 396, |
|
397, 398, 399, 400, 401, 402, 403, 404, 405, 406, |
|
407, 408, 409, 410, 413, 414, 622, 545, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
623, 621, 624, 625, 695, 697, 0, 693, 696, 712, |
|
714, 715, 716, 717, 718, 719, 720, 721, 722, 723, |
|
713, 0, 0, 0, 780, 781, 799, 800, 801, 802, |
|
836, 837, 838, 839, 840, 841, 0, 0, 0, 20, |
|
0, 0, 330, 0, 332, 954, 16, 947, 0, 0, |
|
241, 240, 237, 242, 243, 236, 255, 254, 247, 248, |
|
244, 246, 245, 249, 238, 239, 250, 251, 257, 256, |
|
252, 253, 0, 0, 970, 0, 959, 0, 958, 3, |
|
51, 0, 0, 0, 40, 37, 39, 42, 43, 44, |
|
45, 46, 49, 13, 0, 0, 0, 842, 419, 420, |
|
868, 0, 0, 0, 0, 0, 0, 394, 0, 844, |
|
843, 0, 537, 531, 536, 727, 777, 698, 725, 724, |
|
726, 699, 700, 701, 702, 703, 704, 705, 706, 707, |
|
708, 709, 710, 0, 0, 0, 808, 0, 0, 0, |
|
743, 742, 0, 0, 0, 0, 0, 0, 0, 0, |
|
849, 0, 0, 855, 0, 391, 0, 0, 0, 851, |
|
0, 0, 0, 869, 0, 0, 0, 741, 737, 0, |
|
0, 0, 0, 0, 0, 0, 359, 0, 0, 0, |
|
0, 0, 0, 0, 0, 618, 0, 544, 0, 0, |
|
542, 546, 547, 541, 551, 550, 548, 549, 611, 526, |
|
0, 412, 411, 0, 0, 0, 0, 0, 729, 0, |
|
329, 0, 735, 736, 0, 479, 480, 0, 0, 0, |
|
733, 734, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 949, 694, 744, 732, |
|
0, 775, 776, 902, 917, 0, 0, 903, 905, 0, |
|
929, 888, 886, 910, 0, 0, 908, 911, 912, 913, |
|
914, 889, 887, 0, 0, 0, 334, 0, 18, 0, |
|
0, 0, 966, 0, 341, 0, 0, 0, 968, 0, |
|
0, 38, 648, 654, 646, 0, 643, 653, 647, 645, |
|
644, 651, 649, 650, 656, 652, 655, 657, 0, 0, |
|
641, 41, 50, 478, 0, 474, 475, 0, 0, 472, |
|
0, 746, 0, 0, 0, 806, 0, 774, 772, 773, |
|
0, 0, 0, 630, 0, 847, 845, 631, 0, 0, |
|
500, 0, 0, 0, 491, 0, 495, 505, 507, 0, |
|
487, 0, 0, 0, 0, 0, 482, 0, 485, 0, |
|
489, 361, 848, 0, 0, 850, 859, 0, 0, 0, |
|
860, 0, 0, 871, 0, 0, 740, 0, 371, 367, |
|
368, 0, 0, 366, 369, 370, 0, 0, 0, 552, |
|
0, 0, 533, 0, 613, 692, 0, 0, 0, 686, |
|
688, 689, 690, 423, 424, 0, 337, 338, 0, 179, |
|
178, 180, 0, 0, 0, 0, 363, 0, 598, 0, |
|
0, 853, 0, 0, 428, 0, 431, 0, 429, 0, |
|
468, 0, 0, 0, 0, 0, 457, 460, 0, 0, |
|
452, 459, 458, 0, 587, 588, 589, 590, 591, 592, |
|
593, 594, 595, 597, 596, 553, 555, 554, 560, 561, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 584, 0, 0, 504, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 901, 900, |
|
0, 909, 0, 899, 0, 0, 331, 964, 965, 355, |
|
0, 0, 0, 352, 0, 0, 176, 0, 0, 974, |
|
960, 962, 59, 57, 58, 0, 0, 52, 0, 0, |
|
60, 62, 26, 24, 0, 0, 0, 638, 0, 642, |
|
427, 0, 477, 0, 528, 0, 539, 165, 187, 0, |
|
0, 0, 155, 0, 0, 0, 166, 532, 0, 874, |
|
0, 828, 809, 0, 819, 0, 830, 0, 846, 784, |
|
0, 873, 0, 0, 490, 0, 506, 508, 0, 0, |
|
444, 0, 0, 440, 0, 0, 469, 0, 510, 484, |
|
0, 140, 511, 138, 139, 513, 0, 527, 787, 0, |
|
864, 0, 857, 0, 861, 519, 0, 0, 0, 356, |
|
0, 517, 0, 0, 529, 881, 0, 877, 804, 0, |
|
892, 0, 890, 0, 0, 628, 629, 0, 0, 0, |
|
691, 679, 680, 678, 687, 606, 612, 605, 0, 0, |
|
336, 601, 0, 0, 0, 543, 852, 730, 432, 426, |
|
430, 425, 530, 467, 466, 465, 462, 461, 0, 456, |
|
421, 422, 433, 0, 0, 753, 0, 0, 610, 609, |
|
918, 894, 0, 919, 0, 904, 906, 915, 0, 930, |
|
0, 898, 944, 19, 333, 676, 675, 0, 674, 0, |
|
351, 976, 177, 971, 0, 0, 53, 0, 0, 0, |
|
0, 0, 0, 358, 0, 632, 0, 0, 79, 78, |
|
0, 473, 0, 0, 0, 0, 0, 170, 538, 0, |
|
0, 0, 0, 0, 820, 812, 810, 0, 831, 0, |
|
0, 872, 497, 496, 447, 0, 0, 955, 956, 436, |
|
442, 0, 445, 0, 471, 0, 0, 0, 0, 0, |
|
785, 867, 0, 858, 0, 525, 520, 0, 0, 516, |
|
0, 880, 0, 803, 893, 891, 0, 534, 0, 614, |
|
608, 339, 600, 599, 616, 464, 0, 455, 454, 453, |
|
586, 140, 0, 769, 751, 0, 0, 0, 758, 0, |
|
896, 0, 923, 0, 0, 938, 939, 932, 0, 354, |
|
353, 975, 0, 0, 61, 55, 0, 63, 25, 22, |
|
0, 0, 309, 0, 213, 0, 102, 0, 76, 763, |
|
113, 114, 0, 0, 0, 766, 185, 186, 0, 0, |
|
0, 0, 158, 167, 159, 161, 807, 0, 0, 0, |
|
0, 0, 829, 0, 0, 446, 448, 449, 443, 437, |
|
441, 0, 502, 0, 470, 481, 435, 514, 512, 0, |
|
863, 0, 0, 0, 521, 0, 883, 0, 0, 627, |
|
619, 0, 463, 0, 0, 749, 748, 745, 759, 895, |
|
0, 0, 0, 0, 916, 0, 945, 963, 0, 0, |
|
0, 68, 69, 72, 73, 0, 324, 315, 314, 0, |
|
633, 209, 97, 0, 747, 767, 171, 0, 183, 0, |
|
0, 0, 805, 885, 0, 0, 0, 0, 811, 0, |
|
832, 783, 486, 483, 792, 0, 798, 0, 0, 790, |
|
0, 795, 865, 524, 523, 882, 878, 0, 617, 0, |
|
0, 897, 920, 0, 907, 0, 0, 934, 0, 74, |
|
66, 0, 0, 0, 310, 0, 0, 0, 0, 0, |
|
172, 0, 162, 160, 875, 821, 815, 813, 0, 0, |
|
786, 791, 0, 796, 0, 0, 620, 0, 761, 0, |
|
924, 941, 942, 935, 54, 0, 70, 71, 0, 0, |
|
0, 0, 0, 0, 0, 768, 169, 0, 182, 0, |
|
0, 833, 797, 0, 681, 683, 866, 879, 770, 0, |
|
0, 0, 75, 0, 0, 325, 0, 311, 0, 319, |
|
374, 0, 372, 0, 634, 0, 663, 210, 98, 173, |
|
876, 817, 814, 0, 0, 826, 0, 921, 0, 936, |
|
0, 0, 0, 0, 0, 660, 0, 0, 0, 664, |
|
0, 0, 0, 0, 0, 925, 28, 23, 326, 0, |
|
0, 320, 373, 666, 0, 0, 0, 99, 816, 682, |
|
0, 0, 0, 0, 312, 671, 0, 672, 669, 0, |
|
667, 95, 0, 0, 93, 0, 0, 82, 84, 85, |
|
86, 87, 88, 89, 90, 91, 92, 94, 141, 0, |
|
0, 226, 218, 219, 220, 221, 222, 223, 224, 225, |
|
0, 0, 216, 0, 0, 922, 0, 327, 323, 0, |
|
0, 0, 308, 635, 83, 0, 269, 264, 268, 0, |
|
211, 217, 0, 928, 926, 670, 668, 0, 0, 0, |
|
0, 0, 0, 0, 278, 0, 0, 227, 0, 0, |
|
235, 0, 153, 142, 152, 0, 100, 0, 0, 263, |
|
0, 0, 262, 0, 146, 0, 0, 345, 0, 343, |
|
0, 0, 188, 0, 0, 0, 0, 0, 636, 212, |
|
0, 103, 0, 342, 0, 0, 0, 0, 117, 0, |
|
0, 0, 0, 0, 0, 151, 143, 0, 0, 192, |
|
0, 346, 0, 230, 229, 228, 0, 101, 0, 282, |
|
0, 260, 119, 0, 258, 0, 0, 0, 121, 0, |
|
347, 0, 0, 189, 0, 0, 0, 344, 233, 112, |
|
110, 0, 0, 286, 0, 0, 0, 0, 0, 147, |
|
0, 266, 0, 0, 0, 0, 125, 0, 0, 0, |
|
0, 348, 349, 0, 0, 0, 0, 0, 107, 301, |
|
0, 283, 0, 0, 295, 0, 0, 0, 290, 0, |
|
137, 0, 0, 0, 0, 132, 0, 0, 279, 0, |
|
122, 0, 116, 126, 144, 150, 200, 0, 190, 0, |
|
0, 0, 0, 111, 0, 104, 108, 0, 0, 0, |
|
297, 0, 298, 287, 0, 0, 281, 291, 261, 0, |
|
0, 118, 133, 259, 0, 277, 0, 267, 271, 128, |
|
0, 0, 0, 197, 199, 193, 234, 109, 302, 304, |
|
284, 0, 0, 296, 293, 136, 134, 148, 276, 0, |
|
0, 0, 145, 201, 203, 191, 0, 0, 0, 295, |
|
0, 272, 274, 129, 0, 0, 194, 306, 307, 303, |
|
305, 294, 149, 0, 0, 207, 206, 205, 202, 204, |
|
0, 0, 0, 195, 273, 275, |
|
}; |
|
protected static readonly short [] yyDgoto = { 7, |
|
8, 49, 9, 50, 10, 11, 51, 232, 700, 662, |
|
12, 13, 52, 22, 23, 324, 235, 685, 852, 1046, |
|
1165, 1508, 849, 236, 237, 238, 239, 240, 241, 242, |
|
243, 678, 450, 679, 680, 954, 681, 682, 958, 850, |
|
1041, 1042, 1043, 267, 598, 1136, 110, 861, 1236, 1237, |
|
1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, |
|
1248, 469, 689, 1320, 968, 1143, 1108, 1175, 1202, 1264, |
|
1331, 1171, 1382, 1359, 1407, 1408, 1409, 970, 1405, 971, |
|
745, 1297, 1370, 1344, 1395, 521, 1388, 1364, 1424, 934, |
|
1393, 1396, 1397, 1492, 1425, 1426, 1422, 1249, 1304, 1276, |
|
1321, 702, 1372, 1471, 1341, 1428, 1501, 470, 268, 703, |
|
704, 705, 706, 707, 665, 575, 1148, 666, 667, 867, |
|
1323, 1349, 1439, 1400, 1473, 1324, 1375, 1497, 1521, 1440, |
|
1441, 1519, 1505, 1506, 966, 1107, 1201, 1261, 1306, 1262, |
|
1263, 1298, 1356, 1327, 1299, 327, 223, 1404, 1301, 1389, |
|
1386, 1250, 1278, 1317, 1468, 1430, 1157, 1469, 599, 1514, |
|
1515, 1316, 1385, 1361, 1417, 1412, 1383, 1449, 1454, 1415, |
|
1418, 1419, 1500, 1455, 1413, 1414, 1510, 1498, 1499, 963, |
|
1050, 1168, 1141, 1194, 1169, 1170, 1210, 1104, 1192, 1223, |
|
540, 193, 112, 353, 195, 569, 445, 224, 1336, 663, |
|
664, 838, 854, 328, 410, 539, 305, 1172, 1173, 45, |
|
114, 306, 116, 117, 118, 119, 120, 121, 122, 123, |
|
124, 125, 126, 127, 128, 129, 130, 131, 132, 133, |
|
134, 135, 136, 252, 813, 1006, 517, 732, 890, 733, |
|
734, 999, 137, 198, 738, 600, 601, 602, 603, 807, |
|
479, 480, 298, 1004, 740, 411, 300, 504, 505, 506, |
|
507, 510, 747, 313, 763, 764, 907, 264, 485, 778, |
|
265, 484, 138, 139, 140, 141, 142, 143, 144, 145, |
|
146, 147, 148, 149, 150, 151, 821, 152, 578, 579, |
|
580, 787, 788, 789, 153, 566, 780, 354, 1022, 554, |
|
1088, 154, 499, 964, 1106, 1199, 1302, 471, 1176, 1177, |
|
1230, 1231, 839, 558, 339, 784, 1187, 559, 560, 269, |
|
270, 271, 157, 158, 159, 272, 273, 274, 275, 276, |
|
277, 278, 279, 280, 281, 282, 283, 171, 284, 584, |
|
172, 173, 320, 818, 638, 937, 1028, 864, 696, 974, |
|
935, 938, 1066, 939, 975, 976, 285, 174, 175, 176, |
|
1078, 1010, 1079, 1080, 1081, 1123, 1082, 177, 178, 179, |
|
180, 713, 492, 714, 1069, 992, 1070, 1183, 1151, 1184, |
|
715, 991, 716, 1186, 1119, 181, 182, 183, 184, 185, |
|
186, 307, 530, 531, 1012, 1125, 316, 990, 874, 1150, |
|
1019, 913, 1126, 187, 423, 188, 424, 940, 1031, 425, |
|
426, 654, 645, 646, 944, 427, 428, 429, 430, 431, |
|
945, 640, 942, 1130, 1205, 1266, 1033, 1161, 1222, 830, |
|
648, 831, 1097, 1036, 1098, 1162, 949, 17, 19, 46, |
|
47, 227, 668, 846, 446, 669, 670, |
|
}; |
|
protected static readonly short [] yySindex = { -151, |
|
0, -197, -129, -19, -201,12453, 0, 329, 0, 0, |
|
-201, -19, 0, 0, 48, 0, 6730, -201, 0, -187, |
|
-33, 0, 0, 0, 0, 0, 0, 0, 180, 0, |
|
200, 0, 0, 0, 3685, 0, 0, 0, 0, 0, |
|
0, 0, 0, 247, 0, 0, 675, 0, 0, 329, |
|
348, -201, 0, 281, 0, 297, 354, 366,11935, -193, |
|
160, 365, 6887, 0, 160, 160, 160, -165, 160, 160, |
|
727, 0, 8576, 160, 160, 0, 8733, 0, 387, 0, |
|
366, 0, 160, 409, 160, 0,12497,12497, 470, 160, |
|
160, -224,11718, 0,11038, 0,11718,11718,11718,11718, |
|
11718,11718,11718,11718, 0, 228, 0, 8436, 0, 214, |
|
0, 416, 485, 501, 327, 0, 0, 476, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 946, 797, |
|
161, 375, 657, 672, 480, 570, 532, 522, -282, 542, |
|
0, 0, 0, 0, 0, 0, 3386, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, -268, 601, 267, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, -103, 65, 348, 0, |
|
436, 687, 0, 564, 0, 0, 0, 0, 8436, 8436, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 617, 584, 0, 587, 0, -258, 0, 0, |
|
0, 348, 1342, 733, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 756, 620,11174, 0, 0, 0, |
|
0,11038, 160, 160, 751, 223, 501, 0, -268, 0, |
|
0, 8436, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, -163, 8,11935, 0, 8436,11038, 703, |
|
0, 0, 744,11038,11038, 4653, 513, 190, 759, 8593, |
|
0,11718, 228, 0, 774, 0, 781, 8436,11038, 0, |
|
805, 520, 160, 0,11038, 387,10494, 0, 0, 409, |
|
11038, 409, 325, 503, 879, -268, 0, 601, 327, 892, |
|
-268,11038,11038,11038, 365, 0, 850, 0, 7044, -254, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
4269, 0, 0,12408, 325, 836, 844,11038, 0, 815, |
|
0, 193, 0, 0, 386, 0, 0, 794, 8890,10358, |
|
0, 0,11718,11038,11038,11038,11038,11038,11038,11038, |
|
11038,11038,11038,11038,11718,11718,11718, 8436, 8436,11718, |
|
11718,11718,11718,11718,11718,11718,11718,11718,11718,11718, |
|
11718,11718,11718,11718,11718,11038, 0, 0, 0, 0, |
|
601, 0, 0, 0, 0,12497,12497, 0, 0, -268, |
|
0, 0, 0, 0, 80, 885, 0, 0, 0, 0, |
|
0, 0, 0, 348, 733, 825, 0, 828, 0, 815, |
|
617, 617, 0, 52, 0, 591, 617, 883, 0, -194, |
|
1342, 0, 0, 0, 0, -185, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 240,13105, |
|
0, 0, 0, 0, 815, 0, 0, 884, 586, 0, |
|
890, 0, 897, 119, 387, 0, 160, 0, 0, 0, |
|
-268,10494, -198, 0, 898, 0, 0, 0, -191, -183, |
|
0, 402, 0, 907, 0, 902, 0, 0, 0, 626, |
|
0, 8260, 681,11038, 759,10358, 0, 7515, 0, 409, |
|
0, 0, 0, 905, -60, 0, 0, 366, 387, -148, |
|
0, 4110, 919, 0, 40, -268, 0, 50, 0, 0, |
|
0,11038, 998, 0, 0, 0,11038, 1000, 921, 0, |
|
924, 926, 0,12408, 0, 0, -159, 103, 7044, 0, |
|
0, 0, 0, 0, 0, 387, 0, 0, -270, 0, |
|
0, 0, 409, 325, -268, 8750, 0, 929, 0, 928, |
|
11718, 0, 931, 7044, 0, 346, 0, 424, 0, 815, |
|
0, -28,11038,11038, 945, 1065, 0, 0, -50, 951, |
|
0, 0, 0, 797, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
797, 797, 161, 161, 375, 375, 375, 375, 657, 657, |
|
672, 480, 570, 532, 522, 0, 953, -155, 0, 9047, |
|
1032, -268, 1035, -268, 9047, 9047, 955,11038, 0, 0, |
|
885, 0, -268, 0, 708, 815, 0, 0, 0, 0, |
|
-169, 348, 364, 0, 8750, 591, 0, 960, 963, 0, |
|
0, 0, 0, 0, 0, 325, 961, 0, 966, 964, |
|
0, 0, 0, 0, 985, 8907, 942, 0, 439, 0, |
|
0, 194, 0,11174, 0, 980, 0, 0, 0, 641, |
|
127, 994, 0, 993, 995, 996, 0, 0,11038, 0, |
|
-268, 0, 0, 26, 0, 997, 0, -149, 0, 0, |
|
6887, 0, 6887, 8419, 0, 4653, 0, 0,10630, 177, |
|
0, 154, -158, 0, 939, 952, 0, 99, 0, 0, |
|
1002, 0, 0, 0, 0, 0, 1003, 0, 0, 1012, |
|
0, 7532, 0, 387, 0, 0, 409, 528, 959, 0, |
|
182, 0, 1009, 1010, 0, 0, 6887, 0, 0, 6887, |
|
0,11038, 0,11038, 8436, 0, 0, 387, 1013, 387, |
|
0, 0, 0, 0, 0, 0, 0, 0, 9047, 8436, |
|
0, 0, -268,12408, 1039, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0,10222, 0, |
|
0, 0, 0, 7672, 9047, 0, 7829, 1015, 0, 0, |
|
0, 0, 1093, 0, 1096, 0, 0, 0, 778, 0, |
|
1017, 0, 0, 0, 0, 0, 0, 975, 0, 52, |
|
0, 0, 0, 0, 591, 591, 0, 825, 1024, 1025, |
|
979, 1031, 942, 0, 1026, 0, 1146, 1147, 0, 0, |
|
11038, 0,10766, 1033, 641, 8750, 8436, 0, 0, -228, |
|
1150, 1152, 79, 1029, 0, 0, 0,11038, 0,11038, |
|
1141, 0, 0, 0, 0, 31,10902, 0, 0, 0, |
|
0, 7965, 0, 1166, 0, 601,11038, 1056, 8419, 1057, |
|
0, 0, -268, 0, 204, 0, 0, 815, 959, 0, |
|
-268, 0, -142, 0, 0, 0, 1052, 0, 1083, 0, |
|
0, 0, 0, 0, 0, 0, 790, 0, 0, 0, |
|
0, 0, 8593, 0, 0, -268, -241, 1015, 0, 9047, |
|
0, 9047, 0, 1077, 9047, 0, 0, 0, 438, 0, |
|
0, 0, 1059, 825, 0, 0,11310, 0, 0, 0, |
|
1060, 7689, 0, 942, 0, 942, 0, 942, 0, 0, |
|
0, 0, -268, 1054, 1033, 0, 0, 0, -160, -150, |
|
1062, 1063, 0, 0, 0, 0, 0, 1058, 8419, 1015, |
|
-155,11038, 0, 1061, 6887, 0, 0, 0, 0, 0, |
|
0, 1069, 0, 759, 0, 0, 0, 0, 0, -184, |
|
0, 1070, 815, 959, 0, 959, 0, 1015, 1071, 0, |
|
0, 387, 0, 1018, 1066, 0, 0, 0, 0, 0, |
|
9047, 1097, 9047, 9047, 0,11038, 0, 0, 964, 221, |
|
795, 0, 0, 0, 0, -19, 0, 0, 0, 1079, |
|
0, 0, 0, 1067, 0, 0, 0, -245, 0, 1068, |
|
1195, 1201, 0, 0, 1015, 1086, 1015, 1087, 0, 1085, |
|
0, 0, 0, 0, 0,11038, 0, 1094, -136, 0, |
|
-136, 0, 0, 0, 0, 0, 0, 387, 0,11038, |
|
8124, 0, 0, 1116, 0, 870, 1091, 0, 1100, 0, |
|
0,11310, -201, 119, 0, 1092, 1092, 1092,10766, 1101, |
|
0,11038, 0, 0, 0, 0, 0, 0, 6887, 1099, |
|
0, 0, 7044, 0, 849, 6887, 0, 1102, 0, 9047, |
|
0, 0, 0, 0, 0,11038, 0, 0, 348, 1105, |
|
348, 8436, 1127, 1127, 1127, 0, 0,11038, 0, 6887, |
|
9204, 0, 0, 7044, 0, 0, 0, 0, 0, 1132, |
|
9047,11038, 0, 348, 1114, 0, 1073, 0, 1109, 0, |
|
0, 76, 0, 1076, 0, 1127, 0, 0, 0, 0, |
|
0, 0, 0, 1112, 997, 0, 7044, 0, 1139, 0, |
|
1113, 1127, 0, 1120, 348, 0, 8436, -167, 1128, 0, |
|
1129, 1133, 6887, 1131, 9047, 0, 0, 0, 0, 1121, |
|
1113, 0, 0, 0,12014, 172, 348, 0, 0, 0, |
|
1145, 9047, 1130,11038, 0, 0, 1138, 0, 0, 1136, |
|
0, 0,13105, 880, 0, 1135, 172, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 616, |
|
13105, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
1144, 348, 0, 172, -268, 0, 1145, 0, 0, 1142, |
|
12014,12180, 0, 0, 0, 510, 0, 0, 0,12212, |
|
0, 0, 1148, 0, 0, 0, 0, 8436, 8436, 347, |
|
8593, 423, 409, 1167, 0, 325,10158, 0, 1206, 0, |
|
0, 1113, 0, 0, 0, 1113, 0, 1103, 1115, 0, |
|
8436, -134, 0, 8436, 0, 1117, 1163, 0, 325, 0, |
|
112, 1143, 0, 1149, 1118, 22, 543, 3685, 0, 0, |
|
1113, 0, 325, 0, 1170, 1123, 1168, 1162, 0, 1171, |
|
1115, 1172, 119, 1164, 1174, 0, 0, 1178, 1186, 0, |
|
815, 0, 737, 0, 0, 0, 1183, 0, -80, 0, |
|
1177, 0, 0, 1188, 0, 1184, 1187, 1190, 0, 1189, |
|
0, 119, 119, 0, 119, 1194, 1196, 0, 0, 0, |
|
0, 1198, 205, 0, 1200, 119, 1261, 1204, 119, 0, |
|
510, 0, 8419, 1157, 1203, 1189, 0, 1213, 1214, 218, |
|
1217, 0, 0, 119,10766, 1173, 1212, 1198, 0, 0, |
|
13105, 0, 348, 348, 0, 1175, 1216, 1200, 0, 1222, |
|
0,11038, 1179, 1223, 1204, 0, 1226, 119, 0, -86, |
|
0, 1231, 0, 0, 0, 0, 0,13105, 0, 218, |
|
218, 1246, 1242, 0, -80, 0, 0, 123, 1151,13105, |
|
0,13105, 0, 0, 8419, 1236, 0, 0, 0, 1249, |
|
1188, 0, 0, 0, 1251, 0, 248, 0, 0, 0, |
|
1127, 886, 1202, 0, 0, 0, 0, 0, 0, 0, |
|
0, 1306, 1361, 0, 0, 0, 0, 0, 0, 1254, |
|
1256, 8419, 0, 0, 0, 0, 218, 553, 553, 0, |
|
1127, 0, 0, 0, 49, 49, 0, 0, 0, 0, |
|
0, 0, 0,10358,10358, 0, 0, 0, 0, 0, |
|
1260, 1257, 1258, 0, 0, 0, |
|
}; |
|
protected static readonly short [] yyRindex = { 2932, |
|
0, 0, 7201, 2932, 0, 0, 0, 1631, 0, 0, |
|
3092, 1473, 0, 0, 0, 0, 0, 3092, 0, 0, |
|
61, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1633, 0, 0, 1633, 0, 0, 1631, |
|
1299, 2975, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 1269, 0, 0, 0, 0, 0, 0, 0, 0, |
|
9064, 0, 1262, 0, 0, 0, 1262, 0, 0, 0, |
|
0, 0, 0, 305, 0, 0, 0, 0, 0, 0, |
|
0, 0, 242, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 4492, 0, 0, 0, 0, |
|
0, 0, 324, 4651, 3862, 0, 0, 4427, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 4807, 4875, |
|
5219, 5423, 5763, 5967, 6103, 6239, 6375, 1176, 934, 2647, |
|
0, 0, 0, 0, 0, 0, 61, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 209, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 3135, 0, |
|
739, 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, 1633, 81, 0, 0, 0, 0, 0, 0, |
|
0, 3178, 699, 3221, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 3473, 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, 1272, 0, 0, 0, 0, |
|
0, 0, 3473, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 2175, |
|
0, 2685, 332, 2305, 0, 0, 0, 2435, 2305, 0, |
|
0, 0, 0, 0, 1269, 0, 0, 0, 201, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1270, 2539, 0, 0, 1262, 0, 3473, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, -23, |
|
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, |
|
1568, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 3753, 0, 0, 0, 0, |
|
0, 0, 0, 3264, 3307, 0, 0, 0, 0, 2029, |
|
1633, 1633, 0, -214, 0, 7846, 1633, 1645, 0, 0, |
|
210, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 479,11867, |
|
0, 0, 0, 0, 3473, 0, 0, 0, 0, 0, |
|
0, 0, 0,12256, 0, 0, 0, 0, 0, 0, |
|
0, 531, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 743, 972, 0, 0, 1278, 0, 0, 0, 0, |
|
0, 217, 0, 0, 3950, 1275, 0, 0, 0, 304, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1736, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1270, 0, 0, 6570, 0, 229, 0, |
|
0, 0, 0, 0, 0, 9361, 0, 0, 0, 0, |
|
0, 0, -107, 463, 0, 0, 0, 1283, 0, 0, |
|
0, 0, 0, 0, 0, 3473, 0, 3473, 0, 4109, |
|
0, 0, 0, 0, -272, 0, 0, 0, 0, 165, |
|
0, 0, 0, 4979, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
5047, 5151, 5287, 5355, 5491, 5559, 5627, 5695, 5831, 5899, |
|
6035, 6171, 6307, 6443, 6511, 0, 0, 690, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
3753, 0, 0, 0, 0, 2029, 0, 0, 0, 0, |
|
1232, 9565, 0, 0, 0, 9221, 0, 0, 817, 0, |
|
0, 0, 0, 0, 0, 735, 754, 0, 0, 1286, |
|
0, 0, 0, 0, 1290, 0, 0, 0, 0, 0, |
|
0,11446, 0, 0, 0, 818, 0, 0, 0,12521, |
|
12332, 0, 0, 827, 830, 831, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 639, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 1292, 0, 0, 0, 3539, |
|
0, 0, 231, 0, 121, 3632, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 1294, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 96, 784, 0, 0, |
|
0, 0, 0, 1293, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 9361, |
|
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, 567, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, -147, 0, |
|
556, 0, 0, 0, 0, 0, 0, 0, 0, -214, |
|
0, 0, 0, 0,12521, 8141, 0, 1296, 0, 719, |
|
0, 0, 0, 0, 1300, 0, 1252, 1255, 0, 0, |
|
0, 0, 0, 1298,12575, 0, 0, 0, 0,12364, |
|
0, 0, 0, 832, 0, 0, 0, 0, 0, 0, |
|
1903, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 3791, 0, 4268, 1301, 0, |
|
0, 0, 1304, 0, 0, 0, 0, 621, 0, 0, |
|
0, 0, 832, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 714, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 837, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 1303, 0, 0, 0, 0, 0, |
|
843, 860, 0, 0, 0, 0, 0, 0, 0, 1305, |
|
766, 1307, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 3950, 0, 0, 0, 0, 0, 1313, |
|
0, 0, 621, 0, 0, 881, 0, 1305, 0, 0, |
|
0, 9361, 0, 693, 704, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1286, 9411, |
|
0, 0, 0, 0, 0,12617, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 776, 0, 798, |
|
0, 0, 0, 0, 1310, 0, 767, 1308, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 1317, 0, |
|
7358, 0, 0, 0, 0, 0, 0, 9361, 0, 0, |
|
0, 0, 0, 0, 0, 469, 592, 0, 0, 0, |
|
0, 0,12693,12256, 0, 159, 159, 159, 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,12798, 0, |
|
-30, 0, 1319, 1319, 1319, 0, 0, 0, 0, 0, |
|
1318, 0, 0, -182, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0,12841, 0, 0, 0, 0, 1320, 0, |
|
0, 457, 0, 0, 0, 610, 0, 0, 0, 0, |
|
0, 0, 0, 0, 1321, 0, 1323, 0, 0, 0, |
|
3018, 1322, 600, 0, 330, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
2843, 0, 0, 0, 0, 9670, 9868, 0, 0, 0, |
|
674, 0, 0, 0, 0, 0, 0, 0, 0, 434, |
|
0, 0,12038, 9962, 0, 0, 9769, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
12106, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0,10048, 0, 9670, 0, 0, 674, 0, 0, 0, |
|
0, 479, 0, 0, 0, 0, 0, 0, 0, 479, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 4424, 533, 0,10090, 0, 0, 0, 4781, |
|
0, 2843, 0, 0, 0, 2843, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 288, 0, |
|
1325, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
2843, 0, 676, 0, 572, 0, 0, 0, 0, 0, |
|
0, 0,12256, 859, 0, 0, 0, 0, 0, 0, |
|
1324, 0, 385, 0, 0, 0, 0, 0, 0, 0, |
|
862, 0, 0, 0, 0, 0, 0, 0, 0, 1329, |
|
0,12256,12256, 0,12288, 0, 0, 0, 0, 0, |
|
0, 1346,13065, 0, 1347,12256,11582, 1348,12256, 0, |
|
0, 0, 0, 0, 0, 1349, 0, 0, 0,13035, |
|
0, 0, 0,12256, 0, 0, 0, 1350, 0, 0, |
|
382, 0,12959,12997, 0, 0, 0, 1351, 0, 0, |
|
0, 0, 0, 0, 1352, 0, 0,12256, 0, 634, |
|
0, 863, 0, 0, 0, 0, 0, 893, 0,12883, |
|
12921, 0, 0, 0, 0, 0, 0, 0, 0, 1357, |
|
0, 1431, 0, 0, 0, 866, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
622, 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,13035,11754,12735, 0, |
|
622, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 1275, 1275, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, |
|
}; |
|
protected static readonly short [] yyGindex = { 0, |
|
0, 1646, 0, 0, 0, -2, -15, -175, -41, -42, |
|
0, 1688, 1724, 662, 0, 3, 0, 0, 0, 0, |
|
0, -668, -712, -212, -325, 0, 0, 0, 0, 0, |
|
-226, 0, 0, 0, 777, 0, 887, 0, 0, 0, |
|
0, 631, 635, -17, -236, 0, -46, 0, 474, 0, |
|
502, -835, -715, -577, -563, -498, -491, -477, -468, 0, |
|
0,-1157, 0, 1, 0, 153, 0,-1093, 0, 0, |
|
0, -44, 295, 0, 0, 0, 333,-1076, 0, -273, |
|
-298, 1072, 0, 0, 0, -894, 282, 0, 0, -505, |
|
0, 0, 350, 0, 0, 319, 0, 0, 356, 0, |
|
-1199, -862, 0, 0, 0, 0, 0, 452, -13, 0, |
|
0, 882, 889, 891, 1051, -536, 0, 0, -275, 888, |
|
446, 0,-1324, 0, 0, 0, 0, 0, 0, 0, |
|
0, 250, 0, 0, 0, 0, 0, 0, 0, 0, |
|
500, 0, 0, 0, 0, -317, 435, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 514, 0, -511, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 265, 0, |
|
0, 349, 0, 0, 352, 355, 272, 0, 0, 0, |
|
0, 0, 0, 0, 0, 577, 0, 0, 0, 0, |
|
-38, 0, 293, -40, 0, 0, 420, 0, 481, 0, |
|
936, 0, 1245, -294, -281, -58, 545, 0, 582, 0, |
|
-35, 11, 0, 0, 932, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, -262, 0, 97, 0, 0, 28, 0, 0, 0, |
|
894, 0, -300, -126, 1064, 978, 0, 967, 0, 1197, |
|
1419, 1095, 0, 0, 788, 1726, 0, 0, 0, 0, |
|
1074, 0, 0, 0, 0, 0, -478, 1460, 0, 0, |
|
0, 0, 0, 1316, 488, 872, 783, 873, 1398, 1400, |
|
1397, 1399, 1401, 0, 1402, 0, -555, 0, 0, 1016, |
|
1250, -732, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, -302, 0, 0, 0, 0, -455, 0, 627, |
|
0, 541, 0, 632, 0, 0, 0, 691, -530, -5, |
|
-314, 4, 0, 1656, 0, 66, 0, 91, 95, 137, |
|
142, 152, 157, 162, 168, 176, 183, 0, -685, 0, |
|
-29, 0, 0, 829, 0, 755, 0, 0, 0, 0, |
|
730, -875, 800, -851, 0, 848, -465, 0, 0, 0, |
|
0, 0, 0, 747, 0, 0, 746, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 680, 0, 0, 0, 0, 0, 0, 0, |
|
0, -27, 0, 1302, 0, 0, 0, 925, 0, 0, |
|
0, 0, 0, 0, -170, 0, 0, 0, 0, 0, |
|
1412, 1192, 0, 0, 0, 1414, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 573, 0, 0, 0, 0, |
|
0, 0, 0, 0, 682, 0, 0, 0, 0, 0, |
|
0, 2, 999, 0, 0, 0, 1001, |
|
}; |
|
protected static readonly short [] yyTable = { 109, |
|
519, 18, 189, 111, 741, 522, 43, 473, 234, 233, |
|
477, 155, 746, 434, 690, 495, 515, 433, 538, 452, |
|
156, 293, 192, 257, 562, 319, 712, 115, 785, 259, |
|
407, 549, 1146, 503, 900, 881, 577, 882, 1024, 793, |
|
325, 330, 326, 331, 251, 337, 544, 920, 229, 311, |
|
1178, 1179, 335, 798, 364, 304, 372, 717, 14, 304, |
|
953, 673, 260, 356, 720, 312, 448, 314, 190, 115, |
|
683, 1075, 722, 115, 363, 1272, 371, 340, 576, 47, |
|
350, 912, 160, 1076, 914, 794, 1029, 674, 1214, 826, |
|
827, 47, 486, 1280, 291, 1057, 781, 891, 1209, 626, |
|
816, 626, 289, 790, 1, 1059, 879, 161, 937, 1334, |
|
290, 162, 981, 1017, 1065, 1474, 1475, 564, 404, 675, |
|
528, 1338, 1348, 1110, 836, 409, 1026, 16, 842, 639, |
|
405, 1076, 477, 20, 1027, 1111, 837, 754, 291, 109, |
|
231, 1366, 1065, 111, 880, 791, 435, 233, 364, 292, |
|
437, 155, 414, 163, 441, 442, 626, 262, 164, 42, |
|
156, 286, 287, 288, 291, 294, 295, 115, 165, 1466, |
|
308, 309, 1507, 166, 565, 1380, 487, 315, 167, 317, |
|
721, 321, 261, 349, 168, 794, 333, 334, 723, 435, |
|
451, 937, 169, 292, 336, 749, 937, 291, 937, 170, |
|
478, 937, 937, 47, 937, 937, 2, 1215, 473, 6, |
|
370, 735, 482, 1029, 760, 892, 739, 483, 883, 292, |
|
15, 452, 160, 676, 443, 817, 937, 804, 449, 476, |
|
191, 350, 684, 921, 481, 415, 577, 1077, 989, 794, |
|
416, 1140, 417, 493, 562, 418, 419, 161, 420, 421, |
|
257, 162, 292, 1448, 351, 364, 491, 1058, 577, 931, |
|
257, 537, 364, 524, 364, 541, 364, 1060, 352, 562, |
|
546, 494, 3, 4, 5, 6, 498, 500, 576, 543, |
|
1472, 937, 437, 1339, 548, 1077, 895, 536, 1467, 1089, |
|
545, 525, 1482, 163, 1483, 766, 115, 533, 164, 535, |
|
1381, 20, 534, 498, 1516, 769, 568, 660, 165, 1072, |
|
364, 750, 194, 166, 437, 551, 552, 953, 167, 585, |
|
414, 811, 478, 478, 168, 422, 1099, 115, 1444, 979, |
|
583, 1196, 169, 561, 987, 649, 350, 316, 2, 170, |
|
304, 805, 563, 619, 620, 694, 1352, 577, 450, 115, |
|
315, 476, 597, 370, 895, 1127, 605, 606, 607, 608, |
|
609, 610, 611, 612, 613, 614, 615, 1346, 760, 641, |
|
643, 642, 644, 647, 698, 488, 953, 1493, 812, 194, |
|
194, 1253, 868, 489, 1030, 1479, 1032, 47, 637, 1035, |
|
843, 435, 233, 1008, 516, 196, 1312, 876, 996, 657, |
|
194, 877, 661, 415, 897, 450, 873, 1513, 416, 532, |
|
417, 767, 993, 418, 419, 94, 420, 421, 415, 350, |
|
231, 770, 388, 416, 1517, 417, 1253, 1232, 418, 419, |
|
1015, 420, 421, 1152, 691, 473, 490, 1480, 655, 1353, |
|
1158, 701, 658, 659, 710, 511, 718, 350, 671, 1197, |
|
988, 350, 677, 350, 350, 350, 350, 477, 389, 699, |
|
1410, 350, 711, 503, 1181, 54, 6, 357, 896, 478, |
|
782, 708, 897, 1437, 473, 1092, 577, 1094, 1095, 357, |
|
1368, 639, 1347, 1064, 199, 759, 639, 231, 953, 768, |
|
639, 194, 194, 432, 953, 231, 737, 658, 597, 859, |
|
744, 1254, 115, 1489, 200, 639, 860, 743, 650, 1398, |
|
1399, 1490, 1401, 357, 751, 753, 686, 1219, 576, 349, |
|
687, 888, 1208, 1420, 771, 658, 1427, 358, 792, 773, |
|
249, 783, 639, 437, 758, 1084, 451, 1085, 390, 391, |
|
231, 1443, 1225, 340, 291, 800, 1254, 802, 577, 803, |
|
44, 639, 786, 561, 194, 743, 512, 887, 513, 362, |
|
249, 113, 563, 349, 972, 1465, 291, 350, 684, 115, |
|
349, 731, 1491, 231, 1160, 806, 806, 929, 561, 250, |
|
194, 688, 889, 709, 438, 48, 231, 563, 359, 977, |
|
351, 735, 194, 451, 115, 823, 685, 825, 439, 908, |
|
194, 1100, 1310, 113, 352, 1189, 833, 113, 893, 250, |
|
586, 350, 514, 350, 1003, 835, 743, 225, 350, 226, |
|
587, 1013, 820, 785, 752, 742, 731, 820, 820, 684, |
|
829, 329, 329, 1329, 351, 437, 351, 1330, 522, 1255, |
|
350, 351, 412, 194, 639, 438, 194, 478, 352, 1221, |
|
352, 1311, 329, 1256, 340, 352, 244, 685, 340, 439, |
|
335, 115, 1358, 115, 875, 245, 1267, 738, 115, 246, |
|
362, 362, 362, 738, 362, 362, 476, 362, 1313, 362, |
|
194, 194, 197, 361, 1255, 712, 328, 855, 335, 1068, |
|
257, 498, 328, 414, 335, 413, 639, 318, 1256, 541, |
|
335, 113, 340, 335, 335, 739, 744, 903, 194, 194, |
|
856, 737, 318, 197, 909, 350, 231, 335, 1257, 247, |
|
1045, 362, 738, 362, 940, 1258, 362, 1314, 194, 248, |
|
917, 115, 94, 115, 857, 263, 249, 840, 351, 1259, |
|
904, 328, 194, 329, 329, 922, 923, 47, 1260, 335, |
|
637, 350, 742, 94, 915, 350, 916, 335, 350, 351, |
|
350, 858, 478, 1257, 918, 350, 786, 478, 392, 393, |
|
1258, 820, 665, 799, 637, 527, 415, 115, 1037, 841, |
|
115, 416, 724, 417, 1259, 250, 418, 419, 528, 420, |
|
421, 597, 350, 1260, 318, 659, 597, 820, 661, 744, |
|
665, 637, 1120, 588, 638, 529, 329, 940, 562, 665, |
|
972, 931, 940, 589, 940, 351, 436, 940, 940, 335, |
|
940, 940, 980, 659, 761, 335, 350, 701, 638, 352, |
|
113, 335, 329, 360, 602, 335, 602, 351, 1149, 562, |
|
332, 361, 940, 969, 329, 494, 194, 933, 335, 351, |
|
677, 801, 329, 961, 373, 638, 1011, 362, 1014, 361, |
|
604, 113, 994, 400, 1016, 1045, 690, 657, 194, 997, |
|
318, 249, 562, 365, 1180, 438, 94, 621, 622, 1005, |
|
335, 744, 508, 113, 361, 1303, 509, 1431, 318, 1025, |
|
1235, 1252, 366, 367, 931, 329, 570, 940, 329, 931, |
|
905, 931, 818, 571, 931, 931, 818, 931, 931, 94, |
|
478, 1235, 368, 318, 998, 572, 402, 1049, 1354, 94, |
|
250, 403, 820, 369, 820, 1007, 1054, 820, 1207, 927, |
|
933, 406, 329, 329, 754, 933, 1252, 933, 1235, 1044, |
|
933, 933, 754, 933, 933, 280, 570, 280, 865, 1484, |
|
1269, 452, 280, 571, 1300, 693, 677, 194, 401, 694, |
|
329, 329, 1300, 1164, 1051, 572, 1052, 321, 1053, 297, |
|
639, 744, 835, 321, 498, 639, 662, 335, 194, 639, |
|
322, 440, 1155, 1156, 931, 662, 1504, 225, 661, 335, |
|
258, 1277, 335, 335, 639, 727, 522, 661, 444, 728, |
|
270, 270, 1522, 1523, 447, 115, 335, 473, 786, 270, |
|
822, 474, 927, 820, 822, 820, 820, 927, 1096, 927, |
|
933, 639, 927, 927, 258, 927, 927, 335, 258, 258, |
|
258, 258, 258, 258, 258, 258, 113, 475, 394, 395, |
|
639, 742, 340, 1103, 194, 225, 340, 228, 335, 340, |
|
736, 340, 396, 397, 509, 478, 340, 750, 494, 438, |
|
771, 701, 439, 750, 771, 750, 771, 194, 771, 398, |
|
399, 760, 1128, 744, 786, 760, 329, 760, 496, 760, |
|
438, 755, 194, 834, 1044, 755, 194, 1139, 65, 755, |
|
340, 494, 65, 296, 494, 297, 435, 233, 329, 1167, |
|
472, 231, 927, 113, 335, 335, 972, 335, 335, 56, |
|
498, 335, 820, 335, 335, 335, 498, 561, 1163, 497, |
|
329, 435, 233, 64, 64, 518, 563, 64, 113, 115, |
|
494, 946, 947, 115, 335, 335, 115, 750, 754, 750, |
|
194, 750, 754, 820, 1096, 168, 362, 168, 561, 168, |
|
351, 444, 328, 1167, 335, 328, 523, 563, 194, 194, |
|
115, 1023, 335, 814, 115, 335, 1101, 181, 1102, 181, |
|
1229, 181, 542, 1234, 1233, 1251, 625, 626, 627, 628, |
|
526, 561, 385, 386, 387, 547, 973, 820, 973, 583, |
|
563, 762, 555, 762, 1234, 1233, 156, 115, 156, 163, |
|
164, 163, 164, 884, 820, 884, 494, 581, 67, 329, |
|
67, 590, 187, 115, 187, 1155, 1156, 258, 1284, 582, |
|
1251, 1234, 1233, 1132, 1133, 194, 1229, 258, 351, 157, |
|
329, 157, 120, 258, 120, 285, 127, 285, 127, 292, |
|
653, 292, 355, 1308, 1309, 656, 194, 1273, 231, 1494, |
|
1495, 672, 522, 522, 194, 437, 639, 639, 692, 1144, |
|
1145, 695, 1305, 623, 624, 113, 1337, 113, 697, 1340, |
|
629, 630, 583, 719, 725, 726, 748, 583, 1345, 583, |
|
583, 583, 583, 583, 583, 583, 583, 583, 583, 583, |
|
765, 772, 1345, 774, 775, 776, 329, 777, 5, 795, |
|
701, 583, 794, 583, 258, 583, 797, 583, 583, 583, |
|
1376, 113, 1377, 1355, 113, 809, 258, 258, 258, 329, |
|
810, 258, 258, 583, 814, 822, 374, 815, 824, 701, |
|
701, 844, 701, 438, 329, 828, 845, 848, 329, 499, |
|
847, 1411, 413, 701, 413, 499, 701, 375, 376, 377, |
|
378, 379, 380, 381, 382, 383, 384, 851, 1438, 42, |
|
863, 701, 583, 413, 413, 869, 870, 196, 871, 872, |
|
878, 1450, 1452, 898, 894, 744, 899, 1305, 901, 906, |
|
910, 925, 911, 413, 919, 701, 941, 494, 936, 943, |
|
948, 413, 950, 956, 413, 957, 959, 960, 1438, 1438, |
|
962, 965, 967, 453, 1460, 985, 973, 986, 338, 989, |
|
329, 329, 341, 342, 343, 344, 345, 346, 347, 348, |
|
995, 1002, 512, 1020, 1009, 1021, 454, 1034, 1038, 1055, |
|
1047, 581, 1071, 1063, 194, 1061, 1062, 744, 1073, 455, |
|
1090, 1083, 1087, 1093, 457, 1105, 1091, 1109, 1112, 458, |
|
1113, 459, 460, 461, 462, 1438, 1114, 1115, 1117, 463, |
|
1118, 1121, 1131, 464, 1134, 1174, 1142, 478, 478, 1135, |
|
1147, 1159, 34, 1153, 744, 465, 1166, 329, 466, 1188, |
|
467, 1191, 1195, 1203, 1509, 1509, 1206, 1211, 1207, 194, |
|
1193, 1518, 1518, 1198, 1216, 1217, 597, 597, 1220, 1218, |
|
1265, 1224, 1274, 1315, 468, 1268, 329, 194, 1270, 1271, |
|
1328, 1281, 258, 1286, 581, 1307, 1421, 1350, 1481, 581, |
|
1332, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
581, 581, 1333, 1343, 1342, 1351, 1360, 1363, 1362, 113, |
|
1353, 1365, 1367, 581, 1369, 581, 1371, 581, 1373, 581, |
|
581, 581, 1374, 1379, 1390, 5, 1387, 1384, 1391, 47, |
|
1333, 1392, 1394, 194, 194, 581, 1402, 503, 1403, 1496, |
|
47, 1406, 194, 1416, 1432, 47, 581, 1423, 1433, 47, |
|
194, 194, 47, 194, 1435, 1436, 1442, 1446, 581, 1325, |
|
1445, 1457, 1456, 1459, 47, 47, 1461, 1464, 1462, 47, |
|
47, 1325, 453, 194, 581, 47, 194, 47, 47, 47, |
|
47, 1470, 1476, 1477, 1325, 47, 1485, 338, 1486, 47, |
|
1480, 47, 1488, 1479, 1502, 454, 1503, 1524, 1525, 1526, |
|
9, 47, 969, 1325, 47, 535, 47, 854, 455, 493, |
|
47, 603, 456, 457, 961, 494, 450, 550, 458, 673, |
|
459, 460, 461, 462, 604, 29, 21, 258, 463, 492, |
|
47, 29, 464, 113, 518, 30, 313, 113, 30, 208, |
|
113, 639, 96, 764, 465, 862, 756, 466, 765, 467, |
|
788, 757, 823, 824, 789, 661, 329, 317, 550, 825, |
|
684, 342, 827, 639, 113, 230, 335, 661, 113, 53, |
|
616, 617, 618, 468, 123, 550, 550, 550, 550, 550, |
|
550, 550, 550, 550, 550, 550, 550, 550, 550, 550, |
|
550, 105, 288, 130, 124, 106, 289, 131, 21, 34, |
|
1039, 113, 1137, 34, 955, 856, 1138, 1283, 1275, 1478, |
|
1447, 329, 1487, 1463, 34, 1434, 1429, 113, 1322, 34, |
|
866, 982, 978, 34, 1335, 1520, 34, 853, 983, 329, |
|
984, 1282, 1357, 1279, 1512, 1453, 1458, 1451, 34, 34, |
|
1511, 1212, 1378, 34, 34, 951, 762, 1326, 1213, 34, |
|
930, 34, 34, 34, 34, 1001, 927, 592, 862, 34, |
|
808, 1074, 886, 34, 553, 34, 299, 631, 633, 884, |
|
632, 634, 1200, 779, 635, 34, 636, 34, 34, 924, |
|
34, 1287, 408, 1154, 34, 329, 329, 1086, 1204, 1067, |
|
1129, 1116, 1056, 503, 329, 1122, 1124, 550, 503, 503, |
|
1185, 755, 329, 329, 34, 329, 651, 1018, 652, 1285, |
|
34, 34, 832, 1190, 953, 952, 0, 0, 0, 0, |
|
0, 503, 0, 0, 0, 329, 0, 0, 329, 0, |
|
0, 0, 0, 0, 503, 503, 0, 0, 0, 503, |
|
0, 0, 503, 0, 503, 0, 503, 503, 503, 503, |
|
0, 0, 0, 0, 503, 0, 0, 0, 503, 0, |
|
0, 0, 503, 0, 0, 0, 796, 0, 0, 0, |
|
503, 0, 782, 503, 0, 503, 503, 0, 0, 0, |
|
0, 503, 0, 503, 503, 503, 503, 503, 503, 503, |
|
503, 503, 503, 503, 0, 0, 0, 0, 0, 503, |
|
503, 0, 0, 0, 503, 503, 0, 503, 503, 503, |
|
503, 503, 503, 503, 0, 503, 503, 0, 503, 503, |
|
503, 503, 503, 503, 503, 503, 503, 503, 0, 503, |
|
503, 503, 503, 503, 503, 503, 503, 503, 503, 503, |
|
503, 503, 503, 503, 503, 503, 503, 503, 503, 503, |
|
503, 0, 0, 503, 0, 503, 0, 503, 0, 0, |
|
503, 856, 856, 0, 0, 0, 503, 0, 0, 856, |
|
856, 856, 856, 856, 0, 856, 856, 0, 856, 856, |
|
856, 856, 856, 856, 856, 856, 0, 0, 0, 0, |
|
856, 0, 856, 856, 856, 856, 856, 856, 335, 0, |
|
856, 0, 0, 0, 856, 856, 0, 856, 856, 856, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 856, |
|
0, 856, 0, 856, 856, 0, 0, 856, 0, 856, |
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856, |
|
856, 0, 856, 0, 0, 856, 856, 0, 0, 856, |
|
856, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 856, 856, 856, 856, 856, 0, |
|
0, 0, 856, 856, 0, 0, 856, 0, 0, 0, |
|
0, 856, 856, 856, 856, 856, 0, 0, 0, 856, |
|
0, 856, 0, 0, 0, 0, 0, 856, 856, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 856, 856, 856, 856, 0, 856, 782, 782, |
|
0, 0, 0, 0, 856, 0, 782, 782, 782, 782, |
|
782, 0, 782, 782, 739, 782, 782, 782, 782, 782, |
|
782, 782, 0, 0, 0, 0, 0, 782, 0, 782, |
|
782, 782, 782, 782, 782, 0, 0, 782, 0, 0, |
|
0, 782, 782, 0, 782, 782, 782, 550, 0, 0, |
|
0, 0, 0, 0, 0, 0, 782, 0, 782, 0, |
|
782, 782, 0, 0, 782, 0, 782, 782, 782, 782, |
|
782, 782, 782, 782, 782, 782, 782, 782, 0, 782, |
|
0, 0, 782, 782, 0, 0, 782, 782, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 782, 782, 782, 782, 782, 0, 0, 0, 782, |
|
782, 0, 0, 782, 0, 0, 0, 0, 782, 782, |
|
782, 782, 782, 0, 335, 0, 782, 0, 782, 335, |
|
335, 0, 0, 0, 782, 782, 0, 0, 0, 0, |
|
0, 0, 0, 0, 328, 0, 0, 0, 0, 0, |
|
0, 0, 335, 0, 0, 0, 0, 0, 0, 782, |
|
782, 782, 782, 0, 782, 335, 335, 0, 0, 0, |
|
335, 782, 0, 335, 0, 335, 0, 335, 335, 335, |
|
335, 0, 0, 0, 0, 335, 0, 0, 0, 335, |
|
0, 0, 0, 335, 0, 0, 0, 0, 0, 0, |
|
0, 335, 0, 0, 335, 0, 335, 335, 0, 0, |
|
0, 0, 335, 0, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 0, 0, 0, 0, |
|
335, 335, 0, 0, 0, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 0, 335, 335, 0, 0, |
|
335, 335, 335, 335, 335, 0, 0, 335, 335, 0, |
|
0, 0, 335, 335, 335, 335, 335, 335, 335, 335, |
|
739, 0, 0, 0, 365, 739, 739, 0, 0, 0, |
|
0, 335, 0, 0, 335, 0, 335, 0, 335, 0, |
|
0, 335, 0, 0, 0, 0, 0, 335, 739, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 739, 739, 0, 0, 0, 739, 0, 0, 739, |
|
0, 739, 0, 739, 739, 739, 739, 0, 0, 0, |
|
0, 739, 0, 0, 0, 739, 0, 0, 0, 739, |
|
0, 0, 0, 0, 0, 0, 0, 739, 0, 0, |
|
739, 0, 739, 739, 0, 0, 0, 0, 739, 0, |
|
739, 739, 739, 739, 739, 739, 739, 739, 739, 739, |
|
739, 0, 0, 0, 0, 0, 739, 739, 335, 0, |
|
0, 739, 739, 739, 739, 739, 739, 0, 739, 739, |
|
739, 0, 739, 739, 0, 0, 739, 739, 739, 739, |
|
328, 0, 0, 739, 739, 328, 328, 0, 739, 739, |
|
739, 739, 739, 739, 739, 739, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 739, 328, 0, |
|
739, 0, 739, 0, 739, 0, 0, 739, 0, 0, |
|
0, 328, 328, 739, 0, 0, 328, 0, 0, 328, |
|
0, 328, 0, 328, 328, 328, 328, 0, 0, 0, |
|
0, 328, 0, 0, 0, 328, 0, 0, 0, 328, |
|
0, 0, 0, 0, 0, 0, 0, 328, 0, 0, |
|
328, 0, 328, 328, 0, 0, 0, 0, 328, 0, |
|
328, 328, 328, 328, 328, 328, 328, 328, 328, 328, |
|
328, 0, 0, 0, 0, 0, 328, 328, 0, 0, |
|
0, 328, 328, 328, 328, 328, 328, 0, 328, 328, |
|
328, 0, 328, 328, 360, 0, 328, 328, 328, 328, |
|
365, 0, 0, 328, 328, 365, 365, 0, 328, 328, |
|
328, 328, 328, 328, 328, 328, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 328, 365, 0, |
|
328, 0, 328, 0, 328, 0, 0, 328, 0, 0, |
|
0, 365, 365, 328, 0, 0, 365, 0, 0, 365, |
|
0, 365, 0, 365, 365, 365, 365, 0, 0, 0, |
|
0, 365, 0, 0, 0, 365, 0, 0, 0, 365, |
|
0, 0, 0, 0, 0, 0, 0, 365, 0, 0, |
|
365, 0, 365, 365, 0, 0, 0, 0, 365, 0, |
|
365, 365, 365, 365, 365, 365, 365, 365, 365, 365, |
|
365, 0, 0, 0, 335, 0, 365, 365, 0, 0, |
|
335, 365, 365, 0, 365, 365, 365, 0, 365, 365, |
|
365, 0, 365, 365, 0, 0, 365, 365, 365, 365, |
|
0, 0, 0, 365, 365, 0, 0, 0, 365, 365, |
|
365, 365, 365, 365, 365, 365, 335, 0, 0, 0, |
|
0, 0, 27, 0, 0, 0, 0, 365, 0, 0, |
|
365, 0, 365, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 365, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 335, 0, 0, |
|
0, 0, 335, 0, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 0, 0, 0, 0, |
|
0, 335, 585, 0, 0, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 0, 335, 335, 0, 0, |
|
335, 335, 335, 335, 335, 0, 0, 335, 335, 0, |
|
0, 33, 335, 335, 335, 335, 335, 335, 335, 335, |
|
360, 0, 0, 0, 0, 0, 360, 0, 0, 0, |
|
0, 335, 0, 0, 335, 0, 335, 0, 335, 0, |
|
0, 335, 0, 0, 0, 0, 0, 335, 0, 0, |
|
0, 0, 0, 0, 32, 0, 0, 0, 0, 0, |
|
0, 0, 360, 0, 0, 585, 0, 0, 0, 0, |
|
585, 0, 585, 585, 585, 585, 585, 585, 585, 585, |
|
585, 585, 585, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 585, 0, 585, 27, 585, 0, |
|
585, 585, 585, 360, 0, 0, 0, 0, 360, 0, |
|
360, 360, 360, 360, 360, 360, 360, 360, 360, 360, |
|
360, 0, 0, 0, 0, 0, 0, 360, 0, 0, |
|
0, 360, 360, 0, 360, 360, 360, 0, 360, 360, |
|
360, 0, 360, 360, 0, 0, 360, 360, 360, 360, |
|
0, 0, 0, 360, 360, 585, 0, 0, 360, 360, |
|
360, 360, 360, 360, 360, 360, 0, 0, 0, 0, |
|
0, 31, 0, 0, 0, 0, 0, 360, 27, 27, |
|
360, 0, 360, 27, 0, 0, 0, 27, 0, 27, |
|
0, 0, 27, 360, 27, 27, 0, 27, 0, 27, |
|
0, 27, 0, 27, 27, 27, 27, 0, 0, 27, |
|
27, 0, 0, 0, 951, 27, 0, 27, 27, 27, |
|
0, 0, 27, 27, 27, 0, 27, 0, 0, 27, |
|
0, 27, 27, 27, 27, 0, 0, 0, 27, 27, |
|
27, 0, 0, 27, 27, 27, 0, 0, 0, 0, |
|
0, 0, 27, 27, 0, 27, 27, 47, 27, 27, |
|
27, 0, 0, 0, 27, 0, 0, 0, 33, 0, |
|
0, 0, 33, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 33, 27, 0, 0, 0, 33, 0, |
|
27, 27, 33, 0, 0, 33, 0, 0, 0, 27, |
|
7, 0, 0, 0, 0, 0, 0, 33, 33, 0, |
|
0, 32, 33, 33, 0, 32, 0, 0, 33, 0, |
|
33, 33, 33, 33, 0, 0, 32, 0, 33, 0, |
|
0, 32, 33, 0, 33, 32, 0, 0, 32, 0, |
|
27, 0, 0, 952, 33, 0, 33, 33, 0, 33, |
|
32, 32, 0, 33, 27, 32, 32, 0, 27, 0, |
|
0, 32, 0, 32, 32, 32, 32, 0, 0, 27, |
|
0, 32, 0, 33, 27, 32, 0, 32, 27, 0, |
|
33, 27, 0, 0, 0, 0, 48, 32, 0, 0, |
|
32, 0, 32, 27, 27, 0, 32, 0, 27, 27, |
|
0, 0, 0, 0, 27, 0, 27, 27, 27, 27, |
|
0, 0, 0, 0, 27, 0, 32, 0, 27, 0, |
|
27, 0, 32, 32, 0, 0, 0, 0, 31, 0, |
|
27, 0, 31, 27, 0, 27, 0, 0, 0, 27, |
|
0, 0, 0, 31, 0, 0, 0, 0, 31, 0, |
|
0, 0, 31, 0, 0, 31, 0, 0, 0, 27, |
|
0, 0, 0, 0, 0, 27, 27, 31, 31, 0, |
|
0, 951, 31, 31, 0, 47, 0, 0, 31, 0, |
|
31, 31, 31, 31, 0, 0, 47, 0, 31, 0, |
|
0, 47, 31, 0, 31, 47, 0, 0, 47, 0, |
|
0, 0, 0, 0, 31, 0, 0, 31, 0, 31, |
|
47, 47, 0, 31, 47, 47, 47, 0, 47, 0, |
|
0, 47, 0, 47, 47, 47, 47, 0, 0, 47, |
|
0, 47, 0, 31, 47, 47, 0, 47, 47, 0, |
|
31, 47, 0, 0, 0, 0, 0, 47, 0, 0, |
|
47, 0, 47, 47, 47, 0, 47, 7, 47, 47, |
|
0, 48, 0, 0, 47, 0, 47, 47, 47, 47, |
|
0, 0, 48, 0, 47, 0, 47, 48, 47, 0, |
|
47, 48, 0, 0, 48, 0, 0, 0, 0, 0, |
|
47, 0, 0, 47, 0, 47, 48, 48, 0, 47, |
|
952, 48, 48, 0, 47, 0, 0, 48, 0, 48, |
|
48, 48, 48, 0, 0, 47, 0, 48, 0, 47, |
|
47, 48, 0, 48, 47, 0, 0, 47, 0, 0, |
|
0, 0, 0, 48, 0, 0, 48, 0, 48, 47, |
|
47, 0, 48, 48, 47, 47, 0, 48, 0, 0, |
|
47, 0, 47, 47, 47, 47, 0, 0, 48, 0, |
|
47, 0, 48, 48, 47, 0, 47, 48, 0, 0, |
|
48, 0, 0, 0, 0, 0, 47, 0, 0, 47, |
|
0, 47, 48, 48, 0, 47, 0, 48, 48, 0, |
|
0, 0, 0, 48, 0, 48, 48, 48, 48, 0, |
|
0, 0, 0, 48, 0, 47, 0, 48, 0, 48, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 48, |
|
0, 55, 48, 0, 48, 0, 0, 0, 48, 56, |
|
24, 57, 25, 0, 0, 26, 58, 0, 59, 60, |
|
27, 61, 62, 63, 28, 0, 0, 0, 48, 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, 335, 87, |
|
88, 0, 0, 0, 335, 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, |
|
335, 102, 0, 0, 0, 0, 0, 103, 104, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 335, 0, 0, 0, 0, 0, |
|
335, 0, 105, 106, 107, 108, 0, 0, 0, 0, |
|
0, 335, 0, 0, 196, 0, 335, 0, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
0, 0, 0, 0, 0, 335, 335, 0, 0, 0, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 0, |
|
335, 335, 0, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 0, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 0, 505, 0, 0, |
|
335, 0, 335, 505, 0, 335, 0, 0, 0, 0, |
|
0, 335, 0, 0, 0, 0, 335, 0, 0, 335, |
|
0, 335, 335, 0, 0, 0, 335, 335, 0, 0, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 505, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
335, 335, 0, 0, 0, 0, 0, 0, 335, 0, |
|
0, 335, 0, 0, 0, 0, 0, 335, 0, 201, |
|
505, 0, 0, 0, 0, 505, 0, 505, 505, 505, |
|
505, 505, 505, 505, 505, 505, 505, 505, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 505, 505, |
|
505, 505, 505, 505, 505, 505, 505, 505, 943, 505, |
|
505, 202, 505, 505, 505, 505, 505, 505, 505, 505, |
|
505, 505, 0, 505, 505, 505, 505, 505, 505, 505, |
|
505, 505, 505, 505, 505, 505, 505, 505, 505, 505, |
|
505, 505, 505, 505, 505, 0, 501, 0, 0, 0, |
|
0, 505, 501, 0, 0, 0, 0, 0, 0, 0, |
|
505, 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, 501, 0, |
|
0, 943, 0, 0, 0, 0, 943, 0, 943, 943, |
|
943, 943, 943, 943, 943, 943, 943, 943, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 391, 0, 0, |
|
943, 0, 943, 391, 943, 0, 943, 943, 943, 501, |
|
0, 0, 0, 0, 501, 0, 501, 501, 501, 501, |
|
501, 501, 501, 501, 501, 501, 501, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 501, 501, 391, |
|
501, 501, 501, 501, 501, 501, 501, 0, 501, 501, |
|
0, 501, 501, 501, 501, 501, 501, 501, 501, 501, |
|
501, 943, 501, 501, 501, 501, 501, 501, 501, 501, |
|
501, 501, 501, 501, 501, 501, 501, 501, 501, 501, |
|
501, 501, 501, 501, 0, 509, 0, 0, 0, 0, |
|
501, 509, 0, 501, 0, 0, 0, 0, 0, 501, |
|
0, 0, 0, 0, 328, 0, 0, 0, 0, 391, |
|
328, 0, 391, 391, 391, 391, 0, 391, 0, 391, |
|
391, 0, 391, 391, 391, 391, 391, 509, 391, 391, |
|
391, 391, 0, 391, 391, 391, 391, 391, 391, 391, |
|
391, 391, 391, 391, 391, 391, 391, 391, 391, 391, |
|
391, 391, 391, 391, 391, 0, 0, 0, 0, 328, |
|
0, 391, 0, 0, 391, 0, 0, 0, 509, 0, |
|
391, 0, 0, 509, 0, 509, 509, 509, 509, 509, |
|
509, 509, 509, 509, 509, 509, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 509, 0, 509, |
|
509, 509, 509, 509, 509, 509, 0, 509, 509, 0, |
|
509, 509, 509, 509, 509, 509, 509, 509, 509, 509, |
|
0, 509, 509, 509, 509, 509, 509, 509, 509, 509, |
|
509, 509, 509, 509, 509, 509, 509, 509, 509, 509, |
|
509, 509, 509, 0, 335, 756, 0, 0, 0, 509, |
|
335, 0, 509, 0, 24, 0, 25, 0, 509, 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, 335, 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, 757, 335, 0, 0, |
|
0, 0, 335, 0, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 0, 0, 0, 0, 0, |
|
0, 0, 291, 0, 0, 0, 335, 0, 335, 335, |
|
335, 335, 335, 335, 335, 0, 335, 335, 0, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 0, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 0, 434, 567, 0, 0, 323, 335, 434, |
|
0, 335, 0, 24, 0, 25, 0, 335, 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, 434, 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, 322, 434, 0, 0, 0, |
|
0, 434, 0, 434, 434, 434, 434, 434, 434, 434, |
|
434, 434, 434, 434, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 434, 0, 434, 434, 434, |
|
434, 434, 434, 434, 0, 434, 434, 0, 434, 434, |
|
434, 434, 434, 434, 434, 434, 434, 434, 0, 434, |
|
434, 434, 434, 434, 434, 434, 434, 434, 434, 434, |
|
434, 434, 434, 434, 434, 434, 434, 434, 434, 434, |
|
434, 0, 394, 0, 357, 0, 355, 434, 394, 0, |
|
434, 0, 0, 0, 0, 0, 434, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 357, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
357, 0, 0, 0, 394, 357, 0, 0, 232, 0, |
|
357, 0, 357, 357, 357, 357, 0, 0, 0, 0, |
|
357, 0, 0, 0, 357, 0, 0, 335, 357, 0, |
|
0, 0, 0, 335, 0, 0, 357, 742, 0, 357, |
|
0, 357, 0, 0, 0, 394, 0, 0, 0, 0, |
|
394, 0, 394, 394, 394, 394, 394, 394, 394, 394, |
|
394, 394, 394, 0, 0, 357, 0, 0, 0, 335, |
|
0, 0, 0, 0, 394, 0, 394, 394, 394, 394, |
|
394, 394, 394, 0, 394, 742, 0, 394, 394, 394, |
|
394, 394, 394, 394, 394, 394, 394, 0, 394, 394, |
|
394, 394, 394, 394, 394, 394, 394, 394, 394, 394, |
|
394, 394, 394, 394, 394, 394, 394, 394, 394, 394, |
|
0, 357, 0, 0, 0, 0, 394, 0, 335, 394, |
|
0, 0, 0, 0, 335, 394, 0, 0, 0, 335, |
|
335, 335, 335, 335, 335, 335, 742, 335, 0, 335, |
|
335, 0, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 0, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 0, 540, 0, 501, 335, |
|
0, 335, 540, 0, 335, 0, 56, 24, 0, 25, |
|
335, 0, 26, 253, 0, 0, 0, 27, 61, 62, |
|
0, 28, 0, 0, 0, 0, 0, 64, 0, 0, |
|
30, 0, 0, 0, 0, 0, 0, 32, 540, 0, |
|
0, 0, 33, 0, 71, 72, 34, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 36, 0, |
|
37, 74, 0, 0, 38, 0, 0, 76, 0, 78, |
|
0, 80, 39, 40, 254, 0, 41, 0, 0, 540, |
|
0, 0, 0, 0, 540, 0, 540, 540, 540, 540, |
|
540, 540, 540, 540, 540, 540, 540, 0, 0, 0, |
|
0, 89, 90, 91, 255, 0, 0, 0, 540, 0, |
|
540, 0, 540, 95, 540, 540, 540, 0, 540, 540, |
|
0, 540, 540, 540, 540, 540, 540, 540, 540, 540, |
|
540, 356, 0, 0, 540, 540, 540, 540, 540, 540, |
|
540, 540, 540, 540, 540, 540, 540, 540, 540, 540, |
|
540, 540, 552, 540, 356, 0, 0, 0, 552, 105, |
|
502, 0, 0, 0, 0, 0, 0, 356, 0, 540, |
|
0, 0, 356, 0, 0, 231, 0, 356, 0, 356, |
|
356, 356, 356, 0, 0, 0, 0, 356, 0, 0, |
|
0, 356, 0, 0, 552, 356, 0, 0, 0, 0, |
|
0, 0, 0, 356, 0, 0, 356, 0, 356, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
556, 0, 0, 0, 0, 0, 556, 0, 0, 0, |
|
0, 0, 356, 0, 0, 552, 0, 0, 0, 0, |
|
552, 0, 552, 552, 552, 552, 552, 552, 552, 552, |
|
552, 552, 552, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 556, 0, 552, 0, 552, 0, 552, 0, |
|
552, 552, 552, 0, 552, 552, 0, 0, 552, 552, |
|
552, 552, 552, 552, 552, 552, 552, 0, 356, 0, |
|
552, 552, 552, 552, 552, 552, 552, 552, 0, 0, |
|
0, 0, 0, 556, 0, 0, 0, 0, 556, 552, |
|
556, 556, 556, 556, 556, 556, 556, 556, 556, 556, |
|
556, 0, 0, 0, 559, 552, 0, 0, 0, 0, |
|
559, 0, 556, 0, 556, 0, 556, 0, 556, 556, |
|
556, 0, 556, 556, 0, 0, 556, 556, 556, 556, |
|
0, 0, 0, 556, 556, 0, 0, 0, 556, 556, |
|
556, 556, 556, 556, 556, 556, 559, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 556, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 557, 556, 0, 0, 0, 0, 557, 0, |
|
0, 0, 0, 0, 0, 0, 0, 559, 0, 0, |
|
0, 0, 559, 0, 559, 559, 559, 559, 559, 559, |
|
559, 559, 559, 559, 559, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 557, 0, 559, 0, 559, 0, |
|
559, 0, 559, 559, 559, 0, 559, 559, 0, 0, |
|
559, 559, 559, 559, 0, 0, 0, 559, 559, 0, |
|
0, 0, 559, 559, 559, 559, 559, 559, 559, 559, |
|
0, 0, 0, 0, 0, 557, 0, 0, 0, 0, |
|
557, 559, 557, 557, 557, 557, 557, 557, 557, 557, |
|
557, 557, 557, 0, 0, 0, 558, 559, 0, 0, |
|
0, 0, 558, 0, 557, 0, 557, 0, 557, 0, |
|
557, 557, 557, 0, 557, 557, 0, 0, 557, 557, |
|
557, 557, 0, 0, 0, 557, 557, 0, 0, 0, |
|
557, 557, 557, 557, 557, 557, 557, 557, 558, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 557, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 562, 557, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 558, |
|
0, 0, 0, 0, 558, 0, 558, 558, 558, 558, |
|
558, 558, 558, 558, 558, 558, 558, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 558, 0, |
|
558, 0, 558, 0, 558, 558, 558, 0, 558, 558, |
|
0, 0, 558, 558, 558, 558, 0, 0, 0, 558, |
|
558, 0, 563, 0, 558, 558, 558, 558, 558, 558, |
|
558, 558, 0, 0, 0, 0, 0, 562, 0, 0, |
|
0, 0, 562, 558, 562, 562, 562, 562, 562, 562, |
|
562, 562, 562, 562, 562, 0, 0, 0, 0, 558, |
|
0, 0, 0, 0, 0, 0, 562, 0, 562, 0, |
|
562, 0, 562, 562, 562, 0, 0, 0, 0, 0, |
|
562, 562, 562, 562, 0, 0, 0, 562, 562, 0, |
|
564, 0, 562, 562, 562, 562, 562, 562, 562, 562, |
|
0, 0, 0, 0, 0, 563, 0, 0, 0, 0, |
|
563, 562, 563, 563, 563, 563, 563, 563, 563, 563, |
|
563, 563, 563, 0, 0, 0, 0, 562, 0, 0, |
|
0, 0, 0, 0, 563, 0, 563, 0, 563, 0, |
|
563, 563, 563, 0, 0, 0, 0, 0, 563, 563, |
|
563, 563, 0, 0, 0, 563, 563, 0, 565, 0, |
|
563, 563, 563, 563, 563, 563, 563, 563, 0, 0, |
|
0, 0, 0, 564, 0, 0, 0, 0, 564, 563, |
|
564, 564, 564, 564, 564, 564, 564, 564, 564, 564, |
|
564, 0, 0, 0, 0, 563, 0, 0, 0, 0, |
|
0, 0, 564, 0, 564, 0, 564, 0, 564, 564, |
|
564, 0, 0, 0, 0, 0, 564, 564, 564, 564, |
|
0, 0, 0, 564, 564, 0, 566, 0, 564, 564, |
|
564, 564, 564, 564, 564, 564, 0, 0, 0, 0, |
|
0, 565, 0, 0, 0, 0, 565, 564, 565, 565, |
|
565, 565, 565, 565, 565, 565, 565, 565, 565, 0, |
|
0, 0, 0, 564, 0, 0, 0, 0, 0, 0, |
|
565, 0, 565, 0, 565, 0, 565, 565, 565, 0, |
|
0, 0, 0, 0, 565, 565, 565, 565, 0, 0, |
|
0, 565, 565, 0, 567, 0, 0, 0, 565, 565, |
|
565, 565, 565, 565, 0, 0, 0, 0, 0, 566, |
|
0, 0, 0, 0, 566, 565, 566, 566, 566, 566, |
|
566, 566, 566, 566, 566, 566, 566, 0, 0, 0, |
|
0, 565, 0, 0, 0, 0, 0, 0, 566, 0, |
|
566, 0, 566, 0, 566, 566, 566, 0, 0, 0, |
|
0, 0, 566, 566, 566, 566, 0, 0, 0, 566, |
|
566, 0, 568, 0, 0, 0, 566, 566, 566, 566, |
|
566, 566, 0, 0, 0, 0, 0, 567, 0, 0, |
|
0, 0, 567, 566, 567, 567, 567, 567, 567, 567, |
|
567, 567, 567, 567, 567, 0, 0, 0, 0, 566, |
|
0, 0, 0, 0, 0, 0, 567, 0, 567, 0, |
|
567, 0, 567, 567, 567, 0, 0, 0, 0, 0, |
|
567, 567, 567, 567, 0, 0, 0, 567, 567, 0, |
|
569, 0, 0, 0, 567, 567, 567, 567, 567, 567, |
|
0, 0, 0, 0, 0, 568, 0, 0, 0, 0, |
|
568, 567, 568, 568, 568, 568, 568, 568, 568, 568, |
|
568, 568, 568, 0, 0, 0, 0, 567, 0, 0, |
|
0, 0, 0, 0, 568, 0, 568, 0, 568, 0, |
|
568, 568, 568, 0, 0, 0, 0, 0, 568, 568, |
|
568, 568, 0, 0, 0, 568, 568, 0, 570, 0, |
|
0, 0, 568, 568, 568, 568, 568, 568, 0, 0, |
|
0, 0, 0, 569, 0, 0, 0, 0, 569, 568, |
|
569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
|
569, 0, 0, 0, 0, 568, 0, 0, 0, 0, |
|
0, 0, 569, 0, 569, 0, 569, 0, 569, 569, |
|
569, 0, 0, 0, 0, 0, 569, 569, 569, 569, |
|
0, 0, 0, 569, 569, 0, 571, 0, 0, 0, |
|
569, 569, 569, 569, 569, 569, 0, 0, 0, 0, |
|
0, 570, 0, 0, 0, 0, 570, 569, 570, 570, |
|
570, 570, 570, 570, 570, 570, 570, 570, 570, 0, |
|
0, 0, 0, 569, 0, 0, 0, 0, 0, 0, |
|
570, 0, 570, 0, 570, 0, 570, 570, 570, 0, |
|
0, 0, 0, 0, 0, 0, 570, 570, 0, 0, |
|
0, 570, 570, 0, 572, 0, 0, 0, 0, 0, |
|
570, 570, 570, 570, 0, 0, 0, 0, 0, 571, |
|
0, 0, 0, 0, 571, 570, 571, 571, 571, 571, |
|
571, 571, 571, 571, 571, 571, 571, 0, 0, 0, |
|
0, 570, 0, 0, 0, 0, 0, 0, 571, 0, |
|
571, 0, 571, 0, 571, 571, 571, 0, 0, 0, |
|
0, 0, 0, 0, 571, 571, 0, 0, 0, 571, |
|
571, 0, 573, 0, 0, 0, 0, 0, 571, 571, |
|
571, 571, 0, 0, 0, 0, 0, 572, 0, 0, |
|
0, 0, 572, 571, 572, 572, 572, 572, 572, 572, |
|
572, 572, 572, 572, 572, 0, 0, 0, 0, 571, |
|
0, 0, 0, 0, 0, 0, 572, 0, 572, 0, |
|
572, 0, 572, 572, 572, 0, 0, 0, 0, 0, |
|
0, 0, 572, 572, 0, 0, 0, 572, 572, 0, |
|
574, 0, 0, 0, 0, 0, 572, 572, 572, 572, |
|
0, 0, 0, 0, 0, 573, 0, 0, 0, 0, |
|
573, 572, 573, 573, 573, 573, 573, 573, 573, 573, |
|
573, 573, 573, 0, 0, 0, 0, 572, 0, 0, |
|
0, 0, 0, 0, 573, 0, 573, 0, 573, 0, |
|
573, 573, 573, 0, 0, 0, 0, 0, 0, 0, |
|
573, 573, 0, 0, 0, 573, 573, 0, 575, 0, |
|
0, 0, 0, 0, 0, 0, 573, 573, 0, 0, |
|
0, 0, 0, 574, 0, 0, 0, 0, 574, 573, |
|
574, 574, 574, 574, 574, 574, 574, 574, 574, 574, |
|
574, 0, 0, 0, 0, 573, 0, 0, 0, 0, |
|
0, 0, 574, 0, 574, 0, 574, 0, 574, 574, |
|
574, 0, 0, 0, 0, 0, 0, 0, 574, 574, |
|
0, 0, 0, 574, 574, 0, 576, 0, 0, 0, |
|
0, 0, 0, 0, 574, 574, 0, 0, 0, 0, |
|
0, 575, 0, 0, 0, 0, 575, 574, 575, 575, |
|
575, 575, 575, 575, 575, 575, 575, 575, 575, 0, |
|
0, 0, 0, 574, 0, 0, 0, 0, 0, 0, |
|
575, 0, 575, 0, 575, 0, 575, 575, 575, 0, |
|
0, 0, 0, 0, 0, 0, 0, 575, 0, 0, |
|
0, 575, 575, 0, 577, 0, 0, 0, 0, 0, |
|
0, 0, 575, 575, 0, 0, 0, 0, 0, 576, |
|
0, 0, 0, 0, 576, 575, 576, 576, 576, 576, |
|
576, 576, 576, 576, 576, 576, 576, 0, 0, 0, |
|
0, 575, 0, 0, 0, 0, 0, 0, 576, 0, |
|
576, 0, 576, 0, 576, 576, 576, 0, 0, 0, |
|
0, 0, 0, 0, 0, 576, 0, 0, 0, 576, |
|
576, 0, 578, 0, 0, 0, 0, 0, 0, 0, |
|
576, 576, 0, 0, 0, 0, 0, 577, 0, 0, |
|
0, 0, 577, 576, 577, 577, 577, 577, 577, 577, |
|
577, 577, 577, 577, 577, 0, 0, 0, 0, 576, |
|
0, 0, 0, 0, 0, 0, 577, 0, 577, 0, |
|
577, 0, 577, 577, 577, 0, 0, 0, 0, 0, |
|
0, 0, 0, 577, 0, 0, 0, 0, 577, 0, |
|
579, 0, 0, 0, 0, 0, 0, 0, 577, 577, |
|
0, 0, 0, 0, 0, 578, 0, 0, 0, 0, |
|
578, 577, 578, 578, 578, 578, 578, 578, 578, 578, |
|
578, 578, 578, 0, 0, 0, 0, 577, 0, 0, |
|
0, 0, 0, 0, 578, 0, 578, 0, 578, 0, |
|
578, 578, 578, 0, 0, 0, 0, 0, 0, 0, |
|
0, 578, 0, 0, 0, 0, 578, 0, 580, 0, |
|
0, 0, 0, 0, 0, 0, 578, 578, 0, 0, |
|
0, 0, 0, 579, 0, 0, 0, 0, 579, 578, |
|
579, 579, 579, 579, 579, 579, 579, 579, 579, 579, |
|
579, 0, 0, 0, 0, 578, 0, 0, 0, 0, |
|
0, 0, 579, 0, 579, 0, 579, 0, 579, 579, |
|
579, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 579, 0, 582, 0, 0, 0, |
|
0, 0, 0, 0, 579, 579, 0, 0, 0, 0, |
|
0, 580, 0, 0, 0, 0, 580, 579, 580, 580, |
|
580, 580, 580, 580, 580, 580, 580, 580, 580, 0, |
|
0, 0, 0, 579, 0, 0, 0, 0, 0, 0, |
|
580, 0, 580, 0, 580, 0, 580, 580, 580, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 335, 580, 0, 0, 742, 0, 0, 0, 0, |
|
0, 0, 580, 580, 0, 0, 0, 0, 0, 582, |
|
0, 0, 0, 0, 582, 580, 582, 582, 582, 582, |
|
582, 582, 582, 582, 582, 582, 582, 335, 0, 0, |
|
0, 580, 0, 0, 0, 0, 0, 0, 582, 0, |
|
582, 0, 582, 742, 582, 582, 582, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
582, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 582, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 582, 0, 0, 335, 0, 0, 0, |
|
0, 0, 335, 0, 0, 0, 0, 335, 335, 582, |
|
335, 0, 335, 0, 742, 335, 0, 335, 335, 0, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
0, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 0, 0, 55, 0, 335, 0, 335, |
|
0, 0, 335, 56, 24, 57, 25, 0, 335, 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, 556, |
|
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, 948, 0, 0, 0, |
|
105, 557, 107, 108, 948, 948, 948, 948, 0, 0, |
|
948, 948, 0, 948, 948, 948, 948, 948, 948, 948, |
|
0, 0, 0, 0, 0, 948, 0, 948, 948, 948, |
|
948, 948, 948, 0, 0, 948, 0, 0, 0, 948, |
|
948, 0, 948, 948, 948, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 948, 0, 948, 0, 948, 948, |
|
0, 0, 948, 0, 948, 948, 948, 948, 948, 948, |
|
948, 948, 948, 948, 948, 948, 0, 948, 0, 0, |
|
948, 948, 0, 0, 948, 948, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 948, |
|
948, 948, 948, 948, 0, 0, 0, 948, 0, 0, |
|
0, 948, 0, 0, 0, 0, 948, 948, 948, 948, |
|
948, 0, 0, 0, 948, 0, 948, 0, 0, 0, |
|
0, 0, 948, 948, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 793, 0, 0, 0, 948, 948, 948, |
|
948, 793, 793, 793, 793, 0, 0, 793, 793, 0, |
|
793, 793, 793, 793, 793, 793, 793, 0, 0, 0, |
|
0, 0, 793, 0, 793, 793, 793, 793, 793, 793, |
|
0, 0, 793, 0, 0, 0, 793, 793, 0, 793, |
|
793, 793, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 793, 0, 793, 0, 793, 793, 0, 0, 793, |
|
0, 793, 793, 793, 793, 793, 793, 793, 793, 793, |
|
793, 793, 793, 0, 793, 0, 0, 793, 793, 0, |
|
0, 793, 793, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 793, 793, 793, 793, |
|
793, 0, 0, 0, 793, 0, 0, 0, 793, 0, |
|
0, 0, 0, 793, 793, 793, 793, 793, 0, 0, |
|
0, 793, 0, 793, 0, 0, 0, 0, 0, 793, |
|
793, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
742, 0, 0, 0, 793, 793, 793, 793, 56, 24, |
|
0, 25, 0, 0, 26, 253, 0, 902, 0, 27, |
|
61, 62, 0, 28, 0, 0, 24, 0, 25, 64, |
|
0, 26, 30, 0, 0, 0, 27, 0, 0, 32, |
|
28, 0, 0, 0, 33, 0, 71, 72, 34, 30, |
|
0, 0, 0, 0, 0, 0, 32, 0, 0, 0, |
|
36, 33, 37, 74, 0, 34, 38, 0, 0, 76, |
|
0, 78, 0, 80, 39, 40, 254, 36, 41, 37, |
|
0, 0, 0, 38, 0, 86, 0, 0, 87, 88, |
|
0, 39, 40, 0, 0, 41, 0, 0, 322, 0, |
|
0, 0, 0, 89, 90, 91, 92, 302, 0, 0, |
|
0, 518, 743, 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, 928, 0, 0, |
|
0, 105, 303, 107, 108, 56, 24, 0, 25, 0, |
|
0, 26, 253, 0, 1048, 0, 27, 61, 62, 355, |
|
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, 593, 0, 0, |
|
0, 0, 0, 32, 594, 0, 0, 36, 33, 37, |
|
74, 0, 34, 38, 0, 0, 76, 0, 78, 0, |
|
80, 39, 40, 254, 36, 41, 37, 0, 0, 0, |
|
38, 0, 595, 0, 0, 87, 88, 0, 39, 40, |
|
0, 0, 41, 0, 0, 322, 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, 932, 0, 0, 0, 105, 106, |
|
107, 108, 56, 24, 0, 25, 0, 0, 26, 253, |
|
0, 0, 0, 27, 61, 62, 355, 28, 0, 0, |
|
174, 0, 174, 64, 0, 174, 30, 0, 0, 0, |
|
174, 0, 0, 32, 174, 0, 0, 0, 33, 0, |
|
71, 72, 34, 174, 0, 0, 0, 0, 0, 0, |
|
174, 0, 0, 0, 36, 174, 37, 74, 933, 174, |
|
38, 0, 0, 76, 0, 78, 0, 80, 39, 40, |
|
254, 174, 41, 174, 0, 0, 0, 174, 0, 86, |
|
0, 0, 87, 88, 0, 174, 174, 0, 0, 174, |
|
0, 0, 174, 0, 0, 0, 0, 89, 90, 91, |
|
92, 302, 0, 0, 0, 518, 0, 0, 0, 95, |
|
0, 0, 0, 0, 0, 97, 98, 99, 100, 0, |
|
0, 0, 101, 0, 102, 0, 0, 972, 0, 0, |
|
103, 104, 0, 0, 0, 0, 0, 0, 56, 24, |
|
0, 25, 0, 0, 26, 253, 0, 0, 0, 27, |
|
61, 62, 0, 28, 0, 105, 303, 107, 108, 64, |
|
0, 0, 30, 0, 0, 0, 0, 0, 0, 32, |
|
0, 0, 0, 174, 33, 0, 71, 72, 34, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
36, 0, 37, 74, 0, 0, 38, 0, 0, 76, |
|
0, 78, 0, 80, 39, 40, 254, 0, 41, 0, |
|
0, 0, 0, 0, 0, 86, 0, 0, 87, 88, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 89, 90, 91, 92, 302, 0, 0, |
|
0, 729, 1000, 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, 742, |
|
0, 105, 730, 107, 108, 0, 0, 56, 24, 0, |
|
25, 0, 731, 26, 253, 0, 0, 0, 27, 61, |
|
62, 0, 28, 0, 0, 174, 0, 174, 64, 0, |
|
174, 30, 0, 0, 0, 174, 0, 0, 32, 174, |
|
0, 0, 0, 33, 0, 71, 72, 34, 174, 0, |
|
0, 0, 0, 0, 0, 174, 0, 0, 0, 36, |
|
174, 37, 74, 933, 174, 38, 0, 0, 76, 0, |
|
78, 0, 80, 39, 40, 254, 174, 41, 174, 0, |
|
0, 0, 174, 0, 86, 0, 0, 87, 88, 0, |
|
174, 174, 0, 0, 174, 0, 0, 174, 0, 0, |
|
0, 0, 89, 90, 91, 92, 302, 0, 0, 0, |
|
518, 0, 0, 0, 95, 0, 0, 0, 0, 0, |
|
97, 98, 99, 100, 0, 0, 0, 101, 0, 102, |
|
972, 0, 0, 0, 0, 103, 104, 0, 0, 0, |
|
0, 0, 0, 56, 24, 0, 25, 0, 0, 26, |
|
253, 0, 0, 0, 27, 61, 62, 0, 28, 0, |
|
105, 303, 107, 108, 64, 0, 0, 30, 0, 0, |
|
0, 0, 0, 0, 32, 0, 0, 0, 174, 33, |
|
0, 71, 72, 34, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 36, 0, 37, 74, 0, |
|
0, 38, 0, 0, 76, 0, 78, 0, 80, 39, |
|
40, 254, 0, 41, 0, 0, 0, 0, 0, 0, |
|
86, 0, 0, 87, 88, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 89, 90, |
|
91, 92, 302, 0, 0, 0, 729, 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, 742, 0, 105, 730, 107, 108, |
|
0, 0, 56, 24, 0, 25, 0, 731, 26, 253, |
|
0, 0, 0, 27, 61, 62, 0, 28, 0, 0, |
|
24, 0, 25, 64, 0, 26, 30, 0, 0, 0, |
|
27, 0, 0, 32, 28, 0, 0, 0, 33, 0, |
|
71, 72, 34, 30, 0, 0, 0, 0, 0, 0, |
|
32, 0, 0, 0, 36, 33, 37, 74, 0, 34, |
|
38, 0, 0, 76, 0, 78, 0, 80, 39, 40, |
|
254, 36, 41, 37, 0, 0, 0, 38, 0, 86, |
|
0, 0, 87, 88, 0, 39, 40, 0, 0, 41, |
|
0, 0, 322, 0, 0, 0, 0, 89, 90, 91, |
|
92, 302, 0, 0, 0, 518, 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, 253, 0, 0, 0, |
|
27, 61, 62, 355, 28, 0, 0, 24, 0, 25, |
|
64, 0, 26, 30, 0, 0, 0, 27, 0, 0, |
|
32, 28, 0, 0, 0, 33, 0, 71, 72, 34, |
|
30, 0, 0, 0, 0, 0, 0, 32, 0, 0, |
|
0, 36, 33, 37, 74, 0, 34, 38, 0, 0, |
|
76, 0, 78, 0, 80, 39, 40, 254, 36, 41, |
|
37, 0, 0, 0, 38, 0, 86, 0, 0, 87, |
|
88, 0, 39, 40, 0, 0, 41, 0, 0, 520, |
|
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, 253, 0, 0, 0, 27, 61, 62, |
|
355, 28, 0, 0, 24, 0, 25, 64, 0, 26, |
|
30, 0, 0, 0, 27, 0, 0, 32, 28, 0, |
|
0, 0, 33, 0, 71, 72, 34, 30, 0, 0, |
|
0, 0, 0, 0, 32, 0, 0, 0, 36, 33, |
|
37, 74, 0, 34, 38, 0, 0, 76, 0, 78, |
|
0, 80, 39, 40, 254, 36, 41, 37, 0, 0, |
|
0, 38, 0, 86, 0, 0, 87, 88, 0, 39, |
|
40, 0, 0, 41, 0, 0, 573, 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, 591, 0, 0, 0, 105, |
|
303, 107, 108, 56, 24, 0, 25, 0, 0, 26, |
|
253, 0, 0, 0, 27, 61, 62, 355, 28, 0, |
|
0, 24, 0, 25, 64, 0, 26, 30, 0, 0, |
|
0, 27, 0, 0, 32, 28, 0, 0, 0, 33, |
|
0, 71, 72, 34, 30, 0, 0, 0, 0, 0, |
|
0, 32, 0, 0, 0, 36, 33, 37, 74, 0, |
|
34, 38, 0, 0, 76, 0, 78, 0, 80, 39, |
|
40, 254, 36, 41, 37, 0, 0, 0, 38, 0, |
|
86, 0, 0, 87, 88, 0, 39, 40, 0, 0, |
|
41, 0, 0, 757, 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, 819, 0, 0, 0, 105, 106, 107, 108, |
|
56, 24, 0, 25, 0, 0, 26, 253, 0, 0, |
|
0, 27, 61, 62, 355, 28, 0, 0, 488, 0, |
|
488, 64, 0, 488, 30, 0, 0, 0, 488, 0, |
|
0, 32, 488, 0, 0, 0, 33, 0, 71, 72, |
|
34, 488, 0, 0, 0, 0, 0, 0, 488, 0, |
|
0, 0, 36, 488, 37, 74, 0, 488, 38, 0, |
|
0, 76, 0, 78, 0, 80, 39, 40, 254, 488, |
|
41, 488, 0, 0, 0, 488, 0, 86, 0, 0, |
|
87, 88, 0, 488, 488, 0, 0, 488, 0, 0, |
|
488, 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, 1182, |
|
0, 0, 0, 105, 303, 107, 108, 56, 24, 0, |
|
25, 0, 0, 26, 253, 0, 0, 0, 27, 61, |
|
62, 488, 28, 0, 0, 175, 0, 175, 64, 0, |
|
175, 30, 0, 0, 0, 175, 0, 0, 32, 175, |
|
0, 0, 0, 33, 0, 71, 72, 34, 175, 0, |
|
0, 0, 0, 0, 0, 175, 0, 0, 0, 36, |
|
175, 37, 74, 0, 175, 38, 0, 0, 76, 0, |
|
78, 0, 80, 39, 40, 254, 175, 41, 175, 0, |
|
0, 0, 175, 0, 86, 0, 0, 87, 88, 0, |
|
175, 175, 0, 0, 175, 0, 0, 175, 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, 607, 0, 0, 0, |
|
105, 303, 107, 108, 607, 607, 0, 607, 0, 0, |
|
607, 607, 0, 0, 0, 607, 607, 607, 175, 607, |
|
0, 0, 0, 0, 0, 607, 0, 0, 607, 0, |
|
0, 0, 0, 0, 0, 607, 0, 0, 0, 0, |
|
607, 0, 607, 607, 607, 0, 0, 0, 0, 0, |
|
0, 0, 335, 0, 0, 0, 607, 0, 607, 607, |
|
0, 0, 607, 0, 0, 607, 0, 607, 0, 607, |
|
607, 607, 607, 0, 607, 0, 0, 0, 0, 0, |
|
0, 607, 0, 0, 607, 607, 0, 0, 335, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 607, |
|
607, 607, 607, 607, 0, 0, 0, 0, 0, 0, |
|
0, 607, 0, 0, 0, 0, 0, 607, 607, 607, |
|
607, 0, 0, 0, 607, 0, 607, 0, 0, 0, |
|
0, 0, 607, 607, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 607, 607, 607, |
|
607, 335, 335, 335, 335, 742, 0, 0, 335, 335, |
|
0, 0, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 0, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335, |
|
335, 335, 335, 335, 0, 48, 0, 48, 0, 48, |
|
335, 48, 0, 335, 48, 0, 48, 48, 0, 48, |
|
0, 48, 0, 48, 0, 48, 48, 48, 48, 0, |
|
0, 48, 48, 0, 0, 0, 0, 48, 48, 48, |
|
48, 48, 0, 0, 48, 0, 48, 0, 48, 0, |
|
48, 48, 0, 48, 48, 48, 48, 0, 0, 48, |
|
48, 48, 48, 0, 0, 48, 48, 48, 0, 0, |
|
0, 0, 0, 0, 48, 48, 0, 48, 48, 0, |
|
48, 48, 48, 0, 0, 0, 48, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 48, 0, 48, 48, |
|
47, 0, 0, 0, 47, 0, 47, 0, 0, 47, |
|
0, 47, 47, 0, 47, 0, 47, 0, 47, 0, |
|
47, 47, 47, 47, 0, 0, 47, 47, 0, 0, |
|
0, 0, 47, 0, 47, 47, 47, 0, 0, 47, |
|
0, 47, 0, 47, 0, 0, 47, 0, 47, 47, |
|
47, 47, 48, 0, 0, 47, 47, 47, 0, 0, |
|
47, 47, 47, 0, 0, 0, 0, 0, 0, 47, |
|
47, 0, 47, 47, 0, 47, 47, 47, 0, 0, |
|
0, 47, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 47, |
|
0, 47, 0, 47, 0, 47, 0, 80, 47, 0, |
|
47, 47, 0, 47, 0, 47, 47, 47, 0, 47, |
|
47, 47, 47, 0, 0, 47, 47, 0, 0, 0, |
|
0, 47, 0, 47, 47, 47, 0, 0, 47, 0, |
|
47, 0, 47, 0, 0, 47, 0, 47, 47, 47, |
|
47, 0, 0, 0, 47, 47, 47, 47, 0, 47, |
|
47, 47, 0, 0, 0, 0, 0, 0, 47, 47, |
|
0, 47, 47, 0, 47, 47, 47, 0, 0, 0, |
|
47, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 47, 0, |
|
47, 0, 47, 0, 47, 0, 81, 47, 0, 47, |
|
47, 0, 47, 0, 47, 47, 47, 0, 47, 47, |
|
47, 47, 0, 0, 47, 47, 0, 0, 0, 0, |
|
47, 0, 47, 47, 47, 0, 0, 47, 0, 47, |
|
0, 47, 0, 0, 47, 0, 47, 47, 47, 47, |
|
0, 0, 0, 47, 47, 47, 47, 0, 47, 47, |
|
47, 0, 0, 0, 0, 0, 0, 47, 47, 0, |
|
47, 47, 0, 47, 47, 47, 0, 0, 0, 47, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 48, 0, 0, 0, 48, 0, 48, 47, |
|
0, 48, 0, 48, 48, 214, 48, 0, 48, 0, |
|
48, 0, 48, 48, 48, 48, 0, 0, 48, 48, |
|
0, 0, 0, 0, 48, 0, 48, 48, 48, 0, |
|
0, 48, 0, 48, 0, 48, 0, 0, 48, 0, |
|
48, 48, 48, 48, 0, 0, 0, 48, 48, 48, |
|
0, 0, 48, 48, 48, 47, 0, 0, 0, 0, |
|
0, 48, 48, 0, 48, 48, 0, 48, 48, 48, |
|
0, 0, 0, 48, 0, 0, 0, 0, 47, 0, |
|
0, 0, 47, 0, 47, 0, 0, 47, 0, 47, |
|
47, 0, 47, 48, 47, 0, 47, 0, 47, 47, |
|
47, 47, 0, 0, 47, 47, 0, 0, 48, 0, |
|
47, 0, 47, 47, 47, 0, 0, 47, 0, 47, |
|
335, 47, 0, 0, 47, 0, 47, 47, 47, 47, |
|
0, 0, 0, 47, 47, 47, 0, 0, 47, 47, |
|
47, 0, 0, 335, 0, 0, 0, 47, 47, 48, |
|
47, 47, 0, 47, 47, 47, 335, 0, 0, 47, |
|
0, 335, 0, 0, 335, 0, 335, 0, 335, 335, |
|
335, 335, 0, 0, 0, 0, 335, 0, 0, 47, |
|
335, 0, 0, 0, 335, 215, 0, 0, 453, 0, |
|
0, 0, 335, 0, 0, 335, 0, 335, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 454, 0, 0, 0, 0, 335, 0, 0, 0, |
|
0, 335, 0, 0, 455, 0, 0, 0, 335, 457, |
|
265, 0, 335, 0, 458, 47, 459, 460, 461, 462, |
|
0, 0, 0, 0, 463, 335, 0, 0, 464, 0, |
|
0, 0, 1318, 0, 0, 56, 24, 0, 25, 0, |
|
465, 26, 253, 466, 0, 467, 27, 61, 62, 0, |
|
28, 0, 0, 0, 0, 0, 64, 335, 0, 30, |
|
0, 0, 0, 0, 0, 0, 32, 0, 0, 468, |
|
0, 33, 0, 71, 72, 34, 0, 593, 0, 0, |
|
0, 0, 0, 0, 594, 0, 0, 36, 0, 37, |
|
74, 0, 0, 38, 0, 0, 76, 0, 78, 0, |
|
80, 39, 40, 254, 0, 41, 0, 0, 0, 0, |
|
0, 0, 595, 0, 0, 87, 88, 0, 0, 0, |
|
0, 0, 0, 0, 0, 1319, 0, 0, 0, 0, |
|
89, 90, 91, 92, 93, 0, 0, 0, 0, 0, |
|
0, 0, 95, 926, 0, 596, 0, 0, 97, 98, |
|
99, 100, 0, 0, 0, 101, 0, 102, 0, 0, |
|
0, 0, 0, 103, 104, 0, 0, 0, 0, 0, |
|
0, 56, 24, 0, 25, 0, 0, 26, 253, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 105, 106, |
|
107, 108, 64, 0, 0, 30, 0, 0, 0, 0, |
|
0, 0, 32, 0, 0, 0, 0, 33, 0, 71, |
|
72, 34, 0, 593, 0, 0, 0, 0, 0, 0, |
|
594, 0, 0, 36, 0, 37, 74, 0, 0, 38, |
|
0, 0, 76, 0, 78, 0, 80, 39, 40, 254, |
|
0, 41, 0, 0, 0, 0, 0, 0, 595, 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, 596, 0, 0, 97, 98, 99, 100, 0, 0, |
|
0, 101, 0, 102, 0, 0, 0, 0, 0, 103, |
|
104, 0, 0, 0, 0, 0, 0, 56, 24, 0, |
|
25, 0, 0, 26, 253, 0, 0, 0, 27, 61, |
|
62, 0, 28, 0, 105, 106, 107, 108, 64, 0, |
|
0, 30, 0, 0, 0, 0, 0, 0, 32, 0, |
|
0, 0, 0, 33, 0, 71, 72, 34, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 36, |
|
0, 37, 74, 0, 0, 38, 0, 0, 76, 0, |
|
78, 0, 80, 39, 40, 254, 0, 41, 0, 0, |
|
84, 0, 0, 0, 86, 0, 0, 87, 88, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 89, 90, 91, 92, 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, |
|
253, 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, 254, 0, 41, 0, 0, 0, 0, 0, 0, |
|
86, 0, 0, 87, 88, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 89, 90, |
|
91, 92, 302, 0, 0, 0, 0, 885, 0, 0, |
|
95, 0, 0, 0, 0, 0, 97, 98, 99, 100, |
|
0, 0, 0, 101, 0, 102, 0, 0, 0, 0, |
|
0, 103, 104, 0, 0, 0, 0, 0, 0, 56, |
|
24, 0, 25, 0, 0, 26, 253, 0, 0, 0, |
|
27, 61, 62, 0, 28, 0, 105, 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, 254, 0, 41, |
|
0, 0, 0, 0, 0, 0, 86, 0, 0, 87, |
|
88, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 89, 90, 91, 92, 302, 0, |
|
0, 0, 518, 0, 0, 0, 95, 0, 0, 0, |
|
0, 0, 97, 98, 99, 100, 0, 0, 0, 101, |
|
0, 102, 0, 0, 0, 0, 0, 103, 104, 0, |
|
0, 0, 0, 0, 0, 56, 24, 0, 25, 0, |
|
0, 26, 253, 0, 0, 0, 27, 61, 62, 0, |
|
28, 0, 105, 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, 254, 0, 41, 0, 0, 0, 0, |
|
0, 0, 86, 0, 0, 87, 88, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
89, 90, 91, 92, 302, 0, 0, 0, 512, 0, |
|
0, 0, 95, 0, 0, 0, 0, 0, 97, 98, |
|
99, 100, 0, 0, 0, 101, 0, 102, 0, 0, |
|
0, 0, 0, 103, 104, 0, 0, 0, 0, 0, |
|
0, 56, 24, 0, 25, 0, 0, 26, 253, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 105, 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, 254, |
|
0, 41, 0, 0, 0, 0, 0, 0, 86, 0, |
|
0, 87, 88, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 89, 90, 91, 92, |
|
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, 253, 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, 254, 0, 41, 0, 0, |
|
0, 0, 0, 0, 86, 0, 0, 87, 88, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 89, 90, 91, 92, 93, 0, 0, 0, |
|
0, 0, 0, 0, 95, 0, 0, 0, 0, 0, |
|
97, 98, 99, 100, 0, 0, 0, 101, 0, 102, |
|
0, 0, 0, 0, 0, 103, 104, 0, 0, 0, |
|
0, 0, 0, 56, 24, 0, 25, 0, 0, 26, |
|
253, 0, 0, 0, 27, 61, 62, 0, 28, 0, |
|
105, 106, 107, 108, 64, 0, 0, 30, 0, 0, |
|
0, 0, 0, 0, 32, 0, 0, 0, 0, 33, |
|
0, 71, 72, 34, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 36, 0, 37, 74, 0, |
|
0, 38, 0, 0, 76, 0, 78, 0, 80, 39, |
|
40, 254, 0, 41, 0, 0, 0, 0, 0, 0, |
|
86, 0, 0, 87, 88, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 89, 90, |
|
91, 92, 93, 0, 0, 0, 0, 0, 0, 0, |
|
95, 0, 0, 0, 0, 0, 97, 98, 99, 100, |
|
0, 0, 0, 101, 0, 102, 0, 0, 0, 0, |
|
0, 103, 104, 0, 0, 0, 0, 0, 0, 77, |
|
77, 0, 77, 0, 0, 77, 77, 0, 0, 0, |
|
77, 77, 77, 0, 77, 0, 105, 1040, 107, 108, |
|
77, 0, 0, 77, 0, 0, 0, 0, 0, 0, |
|
77, 0, 0, 0, 0, 77, 0, 77, 77, 77, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 77, 0, 77, 77, 0, 0, 77, 0, 0, |
|
77, 0, 77, 0, 77, 77, 77, 77, 0, 77, |
|
0, 0, 0, 0, 0, 0, 77, 0, 0, 77, |
|
77, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 77, 77, 77, 77, 77, 0, |
|
0, 0, 0, 0, 0, 0, 77, 0, 0, 0, |
|
0, 0, 77, 77, 77, 77, 0, 0, 0, 77, |
|
0, 77, 0, 0, 0, 0, 0, 77, 77, 0, |
|
0, 0, 0, 0, 0, 135, 135, 0, 135, 0, |
|
0, 135, 135, 0, 0, 0, 135, 135, 135, 0, |
|
135, 0, 77, 77, 77, 77, 135, 0, 0, 135, |
|
0, 0, 0, 0, 0, 0, 135, 0, 0, 0, |
|
0, 135, 0, 135, 135, 135, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 135, 0, 135, |
|
135, 0, 0, 135, 0, 0, 135, 0, 135, 0, |
|
135, 135, 135, 135, 0, 135, 0, 0, 0, 0, |
|
0, 0, 135, 0, 0, 135, 135, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
135, 135, 135, 135, 135, 0, 0, 0, 0, 0, |
|
0, 0, 135, 0, 0, 0, 0, 0, 135, 135, |
|
135, 135, 0, 0, 0, 135, 0, 135, 0, 0, |
|
0, 0, 0, 135, 135, 0, 0, 0, 0, 0, |
|
0, 56, 24, 0, 25, 0, 0, 26, 253, 0, |
|
0, 0, 27, 61, 62, 0, 28, 0, 135, 135, |
|
135, 135, 64, 0, 0, 30, 0, 0, 0, 0, |
|
0, 0, 32, 0, 27, 0, 0, 33, 0, 71, |
|
72, 34, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 36, 0, 37, 74, 27, 0, 38, |
|
0, 0, 76, 0, 78, 0, 80, 39, 40, 254, |
|
27, 41, 0, 0, 0, 27, 0, 0, 0, 0, |
|
27, 0, 27, 27, 27, 27, 0, 0, 27, 0, |
|
27, 0, 0, 0, 27, 0, 89, 90, 91, 255, |
|
302, 0, 0, 0, 0, 0, 27, 0, 95, 27, |
|
0, 27, 0, 0, 97, 98, 99, 100, 0, 0, |
|
0, 101, 0, 102, 0, 0, 0, 0, 0, 103, |
|
104, 0, 0, 0, 0, 27, 0, 0, 0, 0, |
|
0, 27, 27, 0, 0, 0, 0, 0, 0, 640, |
|
0, 640, 0, 640, 105, 256, 640, 108, 640, 640, |
|
0, 640, 0, 640, 0, 640, 0, 640, 640, 640, |
|
0, 0, 0, 640, 640, 0, 0, 0, 0, 640, |
|
0, 640, 640, 0, 0, 0, 640, 0, 0, 0, |
|
640, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 640, 640, 0, 640, 0, 0, 0, 640, 640, |
|
0, 0, 0, 0, 0, 0, 640, 640, 56, 24, |
|
640, 25, 0, 640, 26, 253, 0, 0, 640, 27, |
|
61, 62, 0, 28, 0, 0, 0, 0, 0, 64, |
|
0, 0, 30, 0, 0, 0, 0, 0, 0, 32, |
|
640, 640, 0, 0, 33, 0, 71, 72, 34, 0, |
|
0, 0, 0, 640, 0, 0, 0, 0, 0, 0, |
|
36, 0, 37, 74, 0, 0, 38, 0, 0, 76, |
|
0, 78, 0, 80, 39, 40, 254, 0, 41, 0, |
|
0, 84, 0, 0, 0, 0, 0, 0, 24, 0, |
|
25, 0, 0, 26, 640, 1226, 0, 0, 27, 0, |
|
0, 0, 28, 89, 90, 91, 255, 0, 0, 0, |
|
0, 30, 639, 0, 639, 95, 0, 639, 32, 639, |
|
639, 0, 639, 33, 639, 1227, 639, 34, 639, 639, |
|
639, 0, 0, 0, 639, 639, 0, 0, 0, 36, |
|
639, 37, 639, 639, 0, 38, 1228, 639, 0, 0, |
|
0, 639, 0, 39, 40, 0, 0, 41, 0, 0, |
|
322, 105, 256, 639, 0, 639, 0, 0, 0, 639, |
|
639, 0, 0, 0, 0, 0, 0, 639, 639, 0, |
|
639, 639, 639, 0, 639, 639, 0, 639, 639, 639, |
|
639, 0, 639, 0, 639, 0, 639, 639, 639, 0, |
|
0, 0, 639, 639, 0, 0, 0, 0, 639, 0, |
|
639, 639, 0, 0, 0, 639, 0, 0, 0, 639, |
|
0, 0, 0, 0, 639, 0, 0, 0, 0, 0, |
|
0, 639, 0, 639, 0, 0, 0, 639, 639, 0, |
|
0, 355, 0, 0, 0, 639, 639, 0, 0, 639, |
|
0, 0, 639, 0, 24, 0, 25, 639, 0, 26, |
|
0, 0, 1288, 0, 27, 639, 686, 0, 28, 0, |
|
687, 1289, 1290, 0, 0, 0, 1291, 30, 0, 0, |
|
0, 0, 1292, 0, 32, 0, 24, 0, 25, 33, |
|
0, 26, 0, 34, 1288, 0, 27, 0, 686, 0, |
|
28, 0, 687, 1289, 1290, 36, 0, 37, 1291, 30, |
|
0, 38, 0, 0, 1292, 0, 32, 0, 0, 39, |
|
40, 33, 0, 41, 0, 34, 1293, 0, 0, 0, |
|
47, 1294, 47, 639, 0, 47, 0, 36, 0, 37, |
|
47, 0, 0, 38, 47, 0, 0, 0, 0, 0, |
|
0, 39, 40, 47, 0, 41, 0, 0, 1293, 0, |
|
47, 0, 47, 1294, 47, 47, 1295, 47, 0, 47, |
|
0, 47, 47, 47, 0, 0, 47, 0, 47, 0, |
|
0, 47, 0, 47, 0, 47, 0, 47, 0, 0, |
|
47, 0, 47, 0, 0, 47, 47, 47, 0, 47, |
|
0, 47, 47, 47, 0, 47, 48, 1296, 48, 0, |
|
47, 48, 0, 47, 0, 47, 48, 0, 0, 47, |
|
48, 0, 47, 0, 0, 0, 0, 47, 47, 48, |
|
0, 47, 0, 0, 47, 0, 48, 154, 47, 1296, |
|
47, 48, 0, 47, 0, 48, 0, 48, 47, 48, |
|
0, 0, 47, 0, 48, 0, 0, 48, 0, 48, |
|
0, 47, 0, 48, 0, 0, 48, 154, 47, 0, |
|
0, 48, 48, 47, 0, 48, 0, 47, 48, 47, |
|
0, 47, 24, 47, 25, 0, 47, 26, 0, 47, |
|
0, 47, 27, 0, 0, 47, 28, 0, 47, 0, |
|
0, 0, 0, 47, 47, 30, 0, 47, 0, 0, |
|
47, 0, 32, 0, 0, 47, 0, 33, 0, 0, |
|
0, 34, 0, 570, 0, 0, 0, 24, 0, 25, |
|
571, 0, 26, 36, 0, 37, 0, 27, 0, 38, |
|
0, 28, 572, 0, 0, 29, 0, 39, 40, 0, |
|
30, 41, 0, 0, 573, 31, 0, 32, 0, 48, |
|
0, 0, 33, 0, 0, 0, 34, 35, 0, 0, |
|
0, 24, 0, 25, 0, 0, 26, 0, 36, 0, |
|
37, 27, 0, 0, 38, 28, 0, 0, 0, 0, |
|
0, 47, 39, 40, 30, 174, 41, 174, 0, 0, |
|
174, 32, 0, 0, 0, 174, 33, 0, 0, 174, |
|
34, 0, 0, 0, 0, 0, 0, 0, 174, 0, |
|
0, 0, 36, 0, 37, 174, 0, 0, 38, 0, |
|
174, 0, 0, 0, 174, 574, 39, 40, 0, 0, |
|
41, 0, 0, 322, 0, 0, 174, 0, 174, 184, |
|
0, 184, 174, 0, 184, 0, 0, 0, 0, 184, |
|
174, 174, 0, 184, 174, 0, 0, 174, 0, 291, |
|
0, 0, 184, 0, 0, 0, 0, 0, 0, 184, |
|
42, 0, 0, 0, 184, 0, 0, 33, 184, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 33, 0, |
|
184, 0, 184, 33, 0, 0, 184, 33, 0, 0, |
|
33, 0, 0, 0, 184, 184, 0, 0, 184, 0, |
|
0, 184, 33, 33, 323, 0, 0, 33, 33, 0, |
|
0, 0, 0, 33, 0, 33, 33, 33, 33, 0, |
|
0, 0, 0, 33, 0, 0, 0, 33, 174, 33, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 33, |
|
0, 33, 33, 31, 33, 0, 0, 0, 33, 0, |
|
0, 0, 0, 0, 31, 0, 0, 0, 0, 31, |
|
0, 0, 0, 31, 0, 0, 31, 0, 33, 0, |
|
0, 0, 0, 0, 33, 33, 0, 0, 31, 31, |
|
0, 0, 184, 31, 31, 27, 0, 27, 0, 31, |
|
0, 31, 31, 31, 31, 0, 0, 0, 0, 31, |
|
0, 0, 0, 31, 0, 31, 0, 0, 27, 0, |
|
0, 0, 0, 0, 0, 31, 0, 0, 31, 0, |
|
31, 27, 0, 0, 31, 0, 27, 0, 0, 0, |
|
0, 27, 0, 27, 27, 27, 27, 0, 0, 0, |
|
0, 27, 0, 0, 31, 27, 0, 0, 47, 0, |
|
31, 31, 0, 0, 0, 0, 0, 27, 0, 47, |
|
27, 0, 27, 0, 47, 0, 0, 0, 47, 0, |
|
0, 47, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 47, 47, 0, 27, 0, 47, 47, |
|
0, 47, 27, 27, 47, 0, 47, 47, 47, 47, |
|
0, 0, 47, 0, 47, 0, 0, 47, 47, 0, |
|
47, 47, 0, 0, 47, 0, 0, 0, 0, 0, |
|
47, 0, 0, 47, 0, 47, 47, 47, 0, 47, |
|
0, 47, 47, 47, 0, 0, 0, 47, 0, 47, |
|
47, 47, 47, 0, 0, 0, 0, 47, 0, 47, |
|
0, 47, 0, 47, 0, 35, 47, 0, 0, 0, |
|
0, 0, 0, 47, 0, 0, 47, 0, 47, 47, |
|
0, 47, 47, 0, 47, 0, 0, 0, 0, 47, |
|
0, 47, 47, 47, 47, 0, 0, 0, 0, 47, |
|
0, 0, 47, 47, 47, 0, 0, 0, 36, 0, |
|
0, 0, 0, 0, 0, 47, 0, 47, 47, 47, |
|
47, 0, 47, 0, 0, 0, 0, 47, 0, 47, |
|
47, 47, 47, 0, 0, 0, 0, 47, 0, 0, |
|
0, 47, 47, 0, 47, 0, 47, 47, 0, 0, |
|
196, 0, 0, 47, 0, 47, 47, 47, 47, 47, |
|
47, 0, 0, 0, 0, 47, 0, 47, 47, 47, |
|
47, 0, 0, 47, 0, 47, 0, 0, 0, 47, |
|
47, 0, 47, 0, 47, 47, 0, 0, 198, 0, |
|
0, 47, 0, 47, 47, 47, 47, 0, 47, 0, |
|
0, 0, 0, 47, 0, 47, 47, 47, 47, 0, |
|
0, 0, 0, 47, 0, 0, 0, 47, 47, 0, |
|
47, 0, 0, 0, 0, 47, 299, 47, 0, 47, |
|
0, 47, 47, 0, 47, 0, 47, 0, 0, 0, |
|
0, 47, 0, 47, 47, 47, 47, 0, 47, 0, |
|
0, 47, 0, 0, 0, 47, 0, 0, 47, 0, |
|
0, 47, 0, 0, 300, 453, 47, 47, 0, 0, |
|
47, 47, 47, 47, 47, 47, 47, 0, 0, 47, |
|
0, 47, 0, 0, 0, 47, 0, 0, 454, 0, |
|
0, 0, 0, 0, 0, 0, 47, 47, 47, 47, |
|
47, 455, 47, 0, 0, 0, 457, 0, 0, 0, |
|
0, 458, 0, 459, 460, 461, 462, 0, 0, 0, |
|
0, 463, 0, 0, 0, 464, 47, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 465, 0, 0, |
|
466, 0, 467, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
0, 0, 0, 0, 0, 0, 468, |
|
}; |
|
protected static readonly short [] yyCheck = { 17, |
|
299, 4, 18, 17, 516, 300, 6, 234, 51, 51, |
|
247, 17, 518, 189, 470, 289, 298, 188, 321, 232, |
|
17, 68, 20, 59, 339, 84, 492, 17, 559, 59, |
|
157, 332, 1109, 296, 747, 721, 354, 723, 933, 576, |
|
87, 88, 87, 88, 58, 92, 328, 780, 47, 77, |
|
1144, 1145, 277, 584, 113, 73, 115, 256, 256, 77, |
|
0, 256, 256, 108, 256, 79, 325, 81, 256, 59, |
|
256, 256, 256, 63, 113, 1233, 115, 95, 354, 294, |
|
0, 767, 17, 268, 770, 268, 938, 282, 256, 645, |
|
646, 306, 256, 1251, 363, 256, 256, 256, 1192, 372, |
|
256, 374, 268, 374, 256, 256, 256, 17, 256, 1309, |
|
276, 17, 341, 256, 990, 1440, 1441, 372, 401, 314, |
|
269, 256, 1322, 369, 294, 172, 368, 257, 665, 411, |
|
413, 268, 369, 335, 376, 381, 306, 286, 363, 157, |
|
369, 1341, 1018, 157, 294, 416, 189, 189, 256, 418, |
|
191, 157, 256, 17, 199, 200, 429, 61, 17, 418, |
|
157, 65, 66, 67, 363, 69, 70, 157, 17, 256, |
|
74, 75, 1497, 17, 429, 256, 340, 81, 17, 83, |
|
372, 85, 376, 343, 17, 368, 90, 91, 372, 232, |
|
232, 339, 17, 418, 419, 256, 344, 363, 346, 17, |
|
247, 349, 350, 418, 352, 353, 358, 375, 435, 0, |
|
114, 512, 259, 1065, 532, 374, 515, 262, 724, 418, |
|
418, 434, 157, 418, 223, 381, 374, 256, 228, 247, |
|
418, 391, 418, 789, 252, 339, 554, 422, 381, 422, |
|
344, 1104, 346, 288, 559, 349, 350, 157, 352, 353, |
|
286, 157, 418, 1411, 414, 363, 286, 418, 576, 815, |
|
296, 320, 370, 308, 372, 324, 374, 418, 428, 584, |
|
329, 289, 424, 425, 426, 427, 294, 295, 554, 326, |
|
1438, 429, 323, 418, 331, 422, 256, 317, 375, 1022, |
|
329, 309, 1450, 157, 1452, 256, 286, 315, 157, 317, |
|
381, 335, 316, 321, 256, 256, 351, 256, 157, 995, |
|
418, 372, 20, 157, 355, 333, 334, 257, 157, 360, |
|
256, 372, 369, 370, 157, 429, 1039, 317, 1405, 866, |
|
358, 256, 157, 339, 256, 256, 256, 368, 358, 157, |
|
358, 370, 339, 388, 389, 374, 325, 665, 372, 339, |
|
254, 369, 370, 257, 256, 1088, 374, 375, 376, 377, |
|
378, 379, 380, 381, 382, 383, 384, 256, 686, 416, |
|
417, 416, 417, 420, 256, 368, 256, 1471, 429, 87, |
|
88, 1217, 256, 376, 940, 263, 942, 418, 406, 945, |
|
666, 434, 434, 899, 298, 429, 1291, 372, 368, 440, |
|
108, 376, 444, 339, 374, 429, 709, 1501, 344, 313, |
|
346, 372, 878, 349, 350, 367, 352, 353, 339, 339, |
|
369, 372, 262, 344, 376, 346, 1262, 256, 349, 350, |
|
909, 352, 353, 1119, 475, 662, 429, 315, 436, 418, |
|
1126, 484, 441, 442, 491, 256, 493, 367, 447, 374, |
|
372, 371, 450, 373, 374, 375, 376, 694, 298, 341, |
|
256, 381, 492, 726, 1150, 418, 257, 372, 370, 516, |
|
368, 485, 374, 256, 701, 1031, 794, 1033, 1034, 266, |
|
1343, 272, 371, 989, 305, 532, 277, 369, 368, 536, |
|
281, 199, 200, 429, 374, 369, 514, 339, 516, 306, |
|
518, 1217, 492, 256, 305, 296, 313, 266, 429, 1372, |
|
1373, 264, 1375, 418, 528, 529, 277, 1203, 794, 343, |
|
281, 368, 1191, 1386, 542, 367, 1389, 314, 575, 547, |
|
371, 429, 323, 574, 532, 1014, 372, 1016, 378, 379, |
|
369, 1404, 1211, 256, 363, 586, 1262, 588, 866, 590, |
|
6, 342, 566, 559, 262, 314, 367, 381, 369, 256, |
|
371, 17, 559, 343, 863, 1428, 363, 391, 368, 559, |
|
343, 363, 325, 369, 1130, 593, 594, 814, 584, 420, |
|
288, 342, 429, 487, 368, 257, 369, 584, 375, 865, |
|
414, 892, 300, 429, 584, 642, 368, 644, 368, 418, |
|
308, 381, 256, 59, 428, 1161, 653, 63, 735, 420, |
|
418, 391, 423, 391, 896, 656, 375, 371, 391, 373, |
|
428, 418, 640, 1154, 528, 294, 418, 645, 646, 429, |
|
648, 87, 88, 1302, 414, 676, 414, 1306, 933, 1217, |
|
256, 414, 376, 351, 263, 429, 354, 694, 428, 1205, |
|
428, 305, 108, 1217, 367, 428, 376, 429, 371, 429, |
|
373, 374, 1331, 376, 711, 369, 1222, 363, 381, 373, |
|
367, 368, 369, 369, 371, 372, 694, 374, 256, 376, |
|
388, 389, 21, 357, 1262, 1151, 363, 687, 357, 992, |
|
726, 709, 369, 256, 363, 429, 315, 368, 1262, 758, |
|
369, 157, 415, 372, 373, 1004, 724, 752, 416, 417, |
|
272, 729, 386, 52, 761, 391, 369, 386, 1217, 423, |
|
957, 418, 418, 420, 256, 1217, 423, 305, 436, 376, |
|
775, 721, 367, 723, 296, 371, 371, 374, 414, 1217, |
|
754, 418, 450, 199, 200, 790, 793, 418, 1217, 418, |
|
272, 367, 421, 367, 772, 371, 774, 373, 374, 414, |
|
376, 323, 809, 1262, 778, 381, 780, 814, 394, 395, |
|
1262, 789, 339, 428, 296, 256, 339, 767, 949, 416, |
|
770, 344, 381, 346, 1262, 420, 349, 350, 269, 352, |
|
353, 809, 391, 1262, 386, 339, 814, 815, 840, 817, |
|
367, 323, 1076, 418, 272, 286, 262, 339, 1123, 376, |
|
1109, 256, 344, 428, 346, 414, 381, 349, 350, 357, |
|
352, 353, 867, 367, 532, 363, 391, 870, 296, 428, |
|
286, 369, 288, 418, 372, 373, 374, 414, 1112, 1154, |
|
371, 357, 374, 861, 300, 863, 554, 256, 386, 414, |
|
848, 428, 308, 853, 379, 323, 903, 373, 905, 357, |
|
373, 317, 880, 384, 911, 1102, 1322, 908, 576, 887, |
|
386, 371, 1187, 373, 1148, 373, 367, 390, 391, 897, |
|
418, 899, 370, 339, 357, 376, 374, 1393, 386, 936, |
|
1216, 1217, 392, 393, 339, 351, 306, 429, 354, 344, |
|
373, 346, 372, 313, 349, 350, 376, 352, 353, 367, |
|
957, 1237, 412, 386, 887, 325, 385, 962, 376, 367, |
|
420, 400, 940, 423, 942, 898, 973, 945, 376, 256, |
|
339, 390, 388, 389, 368, 344, 1262, 346, 1264, 957, |
|
349, 350, 376, 352, 353, 374, 306, 376, 308, 1455, |
|
1224, 1164, 381, 313, 1272, 370, 954, 665, 389, 374, |
|
416, 417, 1280, 1139, 964, 325, 966, 368, 968, 369, |
|
272, 989, 1013, 374, 992, 277, 367, 357, 686, 281, |
|
381, 418, 367, 368, 429, 376, 1492, 371, 367, 369, |
|
59, 376, 372, 373, 296, 370, 1291, 376, 415, 374, |
|
367, 368, 1514, 1515, 418, 995, 386, 1234, 1022, 376, |
|
372, 256, 339, 1031, 376, 1033, 1034, 344, 1036, 346, |
|
429, 323, 349, 350, 93, 352, 353, 277, 97, 98, |
|
99, 100, 101, 102, 103, 104, 492, 418, 382, 383, |
|
342, 421, 367, 1046, 752, 371, 371, 373, 373, 374, |
|
370, 376, 396, 397, 374, 1102, 381, 368, 1076, 373, |
|
368, 1104, 376, 374, 372, 376, 374, 775, 376, 398, |
|
399, 368, 1090, 1091, 1088, 372, 532, 374, 376, 376, |
|
373, 368, 790, 376, 1102, 372, 794, 1103, 370, 376, |
|
415, 1109, 374, 367, 1112, 369, 1139, 1139, 554, 1141, |
|
368, 369, 429, 559, 370, 371, 1405, 373, 374, 375, |
|
368, 373, 1130, 371, 376, 373, 374, 1123, 1136, 376, |
|
576, 1164, 1164, 370, 371, 367, 1123, 374, 584, 1119, |
|
1148, 354, 355, 1123, 392, 393, 1126, 372, 372, 374, |
|
848, 376, 376, 1161, 1162, 370, 373, 372, 1154, 374, |
|
414, 415, 369, 1195, 412, 372, 376, 1154, 866, 867, |
|
1150, 372, 420, 374, 1154, 423, 372, 370, 374, 372, |
|
1215, 374, 294, 1216, 1216, 1217, 394, 395, 396, 397, |
|
376, 1187, 386, 387, 388, 294, 370, 1205, 372, 256, |
|
1187, 374, 343, 376, 1237, 1237, 370, 1187, 372, 370, |
|
370, 372, 372, 372, 1222, 374, 1224, 372, 372, 665, |
|
374, 418, 370, 1203, 372, 367, 368, 286, 1265, 376, |
|
1262, 1264, 1264, 354, 355, 933, 1271, 296, 414, 370, |
|
686, 372, 374, 302, 376, 374, 374, 376, 376, 374, |
|
356, 376, 418, 1288, 1289, 418, 954, 368, 369, 364, |
|
365, 369, 372, 373, 962, 1296, 364, 365, 375, 1107, |
|
1108, 372, 1276, 392, 393, 721, 1311, 723, 372, 1314, |
|
398, 399, 339, 376, 368, 374, 372, 344, 1319, 346, |
|
347, 348, 349, 350, 351, 352, 353, 354, 355, 356, |
|
372, 294, 1333, 294, 374, 372, 752, 372, 0, 372, |
|
1343, 368, 374, 370, 373, 372, 376, 374, 375, 376, |
|
1351, 767, 1353, 1327, 770, 371, 385, 386, 387, 775, |
|
256, 390, 391, 390, 374, 294, 381, 375, 294, 1372, |
|
1373, 372, 1375, 373, 790, 381, 374, 374, 794, 368, |
|
375, 1383, 371, 1386, 373, 374, 1389, 402, 403, 404, |
|
405, 406, 407, 408, 409, 410, 411, 373, 1400, 418, |
|
381, 1404, 429, 392, 393, 372, 374, 429, 374, 374, |
|
374, 1413, 1414, 372, 423, 1393, 374, 1391, 367, 421, |
|
372, 343, 373, 412, 372, 1428, 294, 1405, 374, 294, |
|
374, 420, 418, 370, 423, 371, 418, 367, 1440, 1441, |
|
375, 256, 256, 261, 1422, 256, 374, 256, 93, 381, |
|
866, 867, 97, 98, 99, 100, 101, 102, 103, 104, |
|
280, 256, 367, 372, 368, 343, 284, 351, 370, 376, |
|
371, 256, 372, 376, 1142, 374, 374, 1455, 370, 297, |
|
423, 372, 372, 347, 302, 367, 381, 381, 381, 307, |
|
256, 309, 310, 311, 312, 1497, 256, 372, 372, 317, |
|
376, 368, 347, 321, 374, 339, 375, 1514, 1515, 370, |
|
370, 370, 0, 375, 1492, 333, 372, 933, 336, 348, |
|
338, 368, 374, 372, 1498, 1499, 348, 368, 376, 1197, |
|
418, 1505, 1506, 418, 367, 367, 1514, 1515, 368, 367, |
|
356, 381, 368, 337, 362, 376, 962, 1215, 371, 374, |
|
305, 368, 581, 372, 339, 368, 256, 369, 368, 344, |
|
418, 346, 347, 348, 349, 350, 351, 352, 353, 354, |
|
355, 356, 418, 371, 418, 418, 367, 376, 371, 995, |
|
418, 371, 371, 368, 381, 370, 373, 372, 371, 374, |
|
375, 376, 367, 371, 371, 257, 369, 381, 372, 261, |
|
418, 372, 374, 1271, 1272, 390, 373, 0, 373, 368, |
|
272, 374, 1280, 374, 418, 277, 401, 374, 376, 281, |
|
1288, 1289, 284, 1291, 372, 372, 370, 376, 413, 1297, |
|
418, 376, 418, 372, 296, 297, 418, 372, 376, 301, |
|
302, 1309, 261, 1311, 429, 307, 1314, 309, 310, 311, |
|
312, 381, 367, 372, 1322, 317, 381, 302, 370, 321, |
|
315, 323, 372, 263, 371, 284, 371, 368, 372, 372, |
|
0, 333, 0, 1341, 336, 367, 338, 376, 297, 368, |
|
342, 372, 301, 302, 0, 368, 372, 332, 307, 418, |
|
309, 310, 311, 312, 372, 370, 367, 726, 317, 368, |
|
362, 368, 321, 1119, 372, 370, 367, 1123, 368, 418, |
|
1126, 315, 418, 376, 333, 372, 372, 336, 376, 338, |
|
368, 372, 376, 376, 368, 367, 1142, 368, 373, 372, |
|
368, 367, 372, 263, 1150, 50, 373, 376, 1154, 12, |
|
385, 386, 387, 362, 376, 390, 391, 392, 393, 394, |
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404, |
|
405, 376, 376, 376, 376, 376, 376, 376, 5, 257, |
|
954, 1187, 1102, 261, 848, 0, 1102, 1264, 1237, 1445, |
|
1408, 1197, 1461, 1425, 272, 1396, 1391, 1203, 1297, 277, |
|
700, 870, 865, 281, 1309, 1506, 284, 686, 870, 1215, |
|
870, 1262, 1328, 1250, 1500, 1414, 1418, 1413, 296, 297, |
|
1499, 1195, 1353, 301, 302, 840, 532, 1297, 1197, 307, |
|
814, 309, 310, 311, 312, 892, 809, 369, 694, 317, |
|
594, 1004, 729, 321, 335, 323, 71, 400, 402, 726, |
|
401, 403, 1176, 554, 404, 333, 405, 335, 336, 794, |
|
338, 1271, 157, 1123, 342, 1271, 1272, 1018, 1187, 991, |
|
1091, 1067, 975, 256, 1280, 1079, 1081, 512, 261, 262, |
|
1151, 530, 1288, 1289, 362, 1291, 425, 913, 425, 1267, |
|
368, 369, 651, 1162, 846, 845, -1, -1, -1, -1, |
|
-1, 284, -1, -1, -1, 1311, -1, -1, 1314, -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, 581, -1, -1, -1, |
|
333, -1, 0, 336, -1, 338, 339, -1, -1, -1, |
|
-1, 344, -1, 346, 347, 348, 349, 350, 351, 352, |
|
353, 354, 355, 356, -1, -1, -1, -1, -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, -1, 418, -1, 420, -1, -1, |
|
423, 256, 257, -1, -1, -1, 429, -1, -1, 264, |
|
265, 266, 267, 268, -1, 270, 271, -1, 273, 274, |
|
275, 276, 277, 278, 279, 280, -1, -1, -1, -1, |
|
285, -1, 287, 288, 289, 290, 291, 292, 0, -1, |
|
295, -1, -1, -1, 299, 300, -1, 302, 303, 304, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 314, |
|
-1, 316, -1, 318, 319, -1, -1, 322, -1, 324, |
|
325, 326, 327, 328, 329, 330, 331, 332, 333, 334, |
|
335, -1, 337, -1, -1, 340, 341, -1, -1, 344, |
|
345, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 359, 360, 361, 362, 363, -1, |
|
-1, -1, 367, 368, -1, -1, 371, -1, -1, -1, |
|
-1, 376, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 417, 418, 419, 420, -1, 422, 256, 257, |
|
-1, -1, -1, -1, 429, -1, 264, 265, 266, 267, |
|
268, -1, 270, 271, 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, 892, -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, -1, -1, |
|
-1, 363, 256, -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, 0, 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, -1, -1, |
|
-1, -1, -1, -1, 0, -1, -1, -1, -1, -1, |
|
-1, -1, 298, -1, -1, 339, -1, -1, -1, -1, |
|
344, -1, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 368, -1, 370, 0, 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, 363, -1, -1, |
|
-1, 367, 368, -1, 370, 371, 372, -1, 374, 375, |
|
376, -1, 378, 379, -1, -1, 382, 383, 384, 385, |
|
-1, -1, -1, 389, 390, 429, -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, -1, -1, 342, -1, -1, -1, 257, -1, |
|
-1, -1, 261, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 272, 362, -1, -1, -1, 277, -1, |
|
368, 369, 281, -1, -1, 284, -1, -1, -1, 377, |
|
0, -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, |
|
418, -1, -1, 0, 333, -1, 335, 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, |
|
369, 284, -1, -1, -1, -1, 0, 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, 368, 369, -1, -1, -1, -1, 257, -1, |
|
333, -1, 261, 336, -1, 338, -1, -1, -1, 342, |
|
-1, -1, -1, 272, -1, -1, -1, -1, 277, -1, |
|
-1, -1, 281, -1, -1, 284, -1, -1, -1, 362, |
|
-1, -1, -1, -1, -1, 368, 369, 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, |
|
369, 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, 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, -1, 256, -1, -1, |
|
418, -1, 420, 262, -1, 423, -1, -1, -1, -1, |
|
-1, 429, -1, -1, -1, -1, 368, -1, -1, 371, |
|
-1, 373, 374, -1, -1, -1, 378, 379, -1, -1, |
|
382, 383, 384, 385, 386, 387, 388, 389, 390, 298, |
|
392, 393, 394, 395, 396, 397, 398, 399, 400, 401, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
412, 413, -1, -1, -1, -1, -1, -1, 420, -1, |
|
-1, 423, -1, -1, -1, -1, -1, 429, -1, 285, |
|
339, -1, -1, -1, -1, 344, -1, 346, 347, 348, |
|
349, 350, 351, 352, 353, 354, 355, 356, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 367, 368, |
|
369, 370, 371, 372, 373, 374, 375, 376, 256, 378, |
|
379, 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, -1, |
|
-1, 420, 262, -1, -1, -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, 256, -1, -1, |
|
368, -1, 370, 262, 372, -1, 374, 375, 376, 339, |
|
-1, -1, -1, -1, 344, -1, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 367, 368, 298, |
|
370, 371, 372, 373, 374, 375, 376, -1, 378, 379, |
|
-1, 381, 382, 383, 384, 385, 386, 387, 388, 389, |
|
390, 429, 392, 393, 394, 395, 396, 397, 398, 399, |
|
400, 401, 402, 403, 404, 405, 406, 407, 408, 409, |
|
410, 411, 412, 413, -1, 256, -1, -1, -1, -1, |
|
420, 262, -1, 423, -1, -1, -1, -1, -1, 429, |
|
-1, -1, -1, -1, 363, -1, -1, -1, -1, 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, 363, -1, -1, -1, 368, -1, 370, 371, |
|
372, 373, 374, 375, 376, -1, 378, 379, -1, 381, |
|
382, 383, 384, 385, 386, 387, 388, 389, 390, -1, |
|
392, 393, 394, 395, 396, 397, 398, 399, 400, 401, |
|
402, 403, 404, 405, 406, 407, 408, 409, 410, 411, |
|
412, 413, -1, 256, 256, -1, -1, 418, 420, 262, |
|
-1, 423, -1, 265, -1, 267, -1, 429, 270, -1, |
|
-1, -1, -1, 275, -1, -1, -1, 279, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 288, -1, -1, -1, |
|
-1, -1, -1, 295, -1, 298, -1, -1, 300, -1, |
|
-1, -1, 304, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 316, -1, 318, -1, -1, -1, |
|
322, -1, -1, -1, -1, -1, -1, -1, 330, 331, |
|
-1, -1, 334, -1, -1, 337, 339, -1, -1, -1, |
|
-1, 344, -1, 346, 347, 348, 349, 350, 351, 352, |
|
353, 354, 355, 356, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 368, -1, 370, 371, 372, |
|
373, 374, 375, 376, -1, 378, 379, -1, 381, 382, |
|
383, 384, 385, 386, 387, 388, 389, 390, -1, 392, |
|
393, 394, 395, 396, 397, 398, 399, 400, 401, 402, |
|
403, 404, 405, 406, 407, 408, 409, 410, 411, 412, |
|
413, -1, 256, -1, 261, -1, 418, 420, 262, -1, |
|
423, -1, -1, -1, -1, -1, 429, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 284, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
297, -1, -1, -1, 298, 302, -1, -1, 305, -1, |
|
307, -1, 309, 310, 311, 312, -1, -1, -1, -1, |
|
317, -1, -1, -1, 321, -1, -1, 256, 325, -1, |
|
-1, -1, -1, 262, -1, -1, 333, 266, -1, 336, |
|
-1, 338, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, -1, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, 362, -1, -1, -1, 298, |
|
-1, -1, -1, -1, 368, -1, 370, 371, 372, 373, |
|
374, 375, 376, -1, 378, 314, -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, 418, -1, -1, -1, -1, 420, -1, 357, 423, |
|
-1, -1, -1, -1, 363, 429, -1, -1, -1, 368, |
|
369, 370, 371, 372, 373, 374, 375, 376, -1, 378, |
|
379, -1, 381, 382, 383, 384, 385, 386, 387, 388, |
|
389, 390, -1, 392, 393, 394, 395, 396, 397, 398, |
|
399, 400, 401, 402, 403, 404, 405, 406, 407, 408, |
|
409, 410, 411, 412, 413, -1, 256, -1, 256, 418, |
|
-1, 420, 262, -1, 423, -1, 264, 265, -1, 267, |
|
429, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
-1, 279, -1, -1, -1, -1, -1, 285, -1, -1, |
|
288, -1, -1, -1, -1, -1, -1, 295, 298, -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, 339, |
|
-1, -1, -1, -1, 344, -1, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, 359, 360, 361, 362, -1, -1, -1, 368, -1, |
|
370, -1, 372, 371, 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, 417, |
|
418, -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, |
|
-1, -1, 394, 395, 396, 397, 398, 399, 400, 401, |
|
-1, -1, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, 413, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, 256, 429, -1, -1, |
|
-1, -1, 262, -1, 368, -1, 370, -1, 372, -1, |
|
374, 375, 376, -1, 378, 379, -1, -1, 382, 383, |
|
384, 385, -1, -1, -1, 389, 390, -1, -1, -1, |
|
394, 395, 396, 397, 398, 399, 400, 401, 298, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 413, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 256, 429, -1, -1, -1, -1, |
|
-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, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, -1, 372, -1, 374, 375, 376, -1, 378, 379, |
|
-1, -1, 382, 383, 384, 385, -1, -1, -1, 389, |
|
390, -1, 256, -1, 394, 395, 396, 397, 398, 399, |
|
400, 401, -1, -1, -1, -1, -1, 339, -1, -1, |
|
-1, -1, 344, 413, 346, 347, 348, 349, 350, 351, |
|
352, 353, 354, 355, 356, -1, -1, -1, -1, 429, |
|
-1, -1, -1, -1, -1, -1, 368, -1, 370, -1, |
|
372, -1, 374, 375, 376, -1, -1, -1, -1, -1, |
|
382, 383, 384, 385, -1, -1, -1, 389, 390, -1, |
|
256, -1, 394, 395, 396, 397, 398, 399, 400, 401, |
|
-1, -1, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, 413, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, -1, 429, -1, -1, |
|
-1, -1, -1, -1, 368, -1, 370, -1, 372, -1, |
|
374, 375, 376, -1, -1, -1, -1, -1, 382, 383, |
|
384, 385, -1, -1, -1, 389, 390, -1, 256, -1, |
|
394, 395, 396, 397, 398, 399, 400, 401, -1, -1, |
|
-1, -1, -1, 339, -1, -1, -1, -1, 344, 413, |
|
346, 347, 348, 349, 350, 351, 352, 353, 354, 355, |
|
356, -1, -1, -1, -1, 429, -1, -1, -1, -1, |
|
-1, -1, 368, -1, 370, -1, 372, -1, 374, 375, |
|
376, -1, -1, -1, -1, -1, 382, 383, 384, 385, |
|
-1, -1, -1, 389, 390, -1, 256, -1, 394, 395, |
|
396, 397, 398, 399, 400, 401, -1, -1, -1, -1, |
|
-1, 339, -1, -1, -1, -1, 344, 413, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, -1, |
|
-1, -1, -1, 429, -1, -1, -1, -1, -1, -1, |
|
368, -1, 370, -1, 372, -1, 374, 375, 376, -1, |
|
-1, -1, -1, -1, 382, 383, 384, 385, -1, -1, |
|
-1, 389, 390, -1, 256, -1, -1, -1, 396, 397, |
|
398, 399, 400, 401, -1, -1, -1, -1, -1, 339, |
|
-1, -1, -1, -1, 344, 413, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, 429, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, -1, 372, -1, 374, 375, 376, -1, -1, -1, |
|
-1, -1, 382, 383, 384, 385, -1, -1, -1, 389, |
|
390, -1, 256, -1, -1, -1, 396, 397, 398, 399, |
|
400, 401, -1, -1, -1, -1, -1, 339, -1, -1, |
|
-1, -1, 344, 413, 346, 347, 348, 349, 350, 351, |
|
352, 353, 354, 355, 356, -1, -1, -1, -1, 429, |
|
-1, -1, -1, -1, -1, -1, 368, -1, 370, -1, |
|
372, -1, 374, 375, 376, -1, -1, -1, -1, -1, |
|
382, 383, 384, 385, -1, -1, -1, 389, 390, -1, |
|
256, -1, -1, -1, 396, 397, 398, 399, 400, 401, |
|
-1, -1, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, 413, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, -1, 429, -1, -1, |
|
-1, -1, -1, -1, 368, -1, 370, -1, 372, -1, |
|
374, 375, 376, -1, -1, -1, -1, -1, 382, 383, |
|
384, 385, -1, -1, -1, 389, 390, -1, 256, -1, |
|
-1, -1, 396, 397, 398, 399, 400, 401, -1, -1, |
|
-1, -1, -1, 339, -1, -1, -1, -1, 344, 413, |
|
346, 347, 348, 349, 350, 351, 352, 353, 354, 355, |
|
356, -1, -1, -1, -1, 429, -1, -1, -1, -1, |
|
-1, -1, 368, -1, 370, -1, 372, -1, 374, 375, |
|
376, -1, -1, -1, -1, -1, 382, 383, 384, 385, |
|
-1, -1, -1, 389, 390, -1, 256, -1, -1, -1, |
|
396, 397, 398, 399, 400, 401, -1, -1, -1, -1, |
|
-1, 339, -1, -1, -1, -1, 344, 413, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, -1, |
|
-1, -1, -1, 429, -1, -1, -1, -1, -1, -1, |
|
368, -1, 370, -1, 372, -1, 374, 375, 376, -1, |
|
-1, -1, -1, -1, -1, -1, 384, 385, -1, -1, |
|
-1, 389, 390, -1, 256, -1, -1, -1, -1, -1, |
|
398, 399, 400, 401, -1, -1, -1, -1, -1, 339, |
|
-1, -1, -1, -1, 344, 413, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, 429, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, -1, 372, -1, 374, 375, 376, -1, -1, -1, |
|
-1, -1, -1, -1, 384, 385, -1, -1, -1, 389, |
|
390, -1, 256, -1, -1, -1, -1, -1, 398, 399, |
|
400, 401, -1, -1, -1, -1, -1, 339, -1, -1, |
|
-1, -1, 344, 413, 346, 347, 348, 349, 350, 351, |
|
352, 353, 354, 355, 356, -1, -1, -1, -1, 429, |
|
-1, -1, -1, -1, -1, -1, 368, -1, 370, -1, |
|
372, -1, 374, 375, 376, -1, -1, -1, -1, -1, |
|
-1, -1, 384, 385, -1, -1, -1, 389, 390, -1, |
|
256, -1, -1, -1, -1, -1, 398, 399, 400, 401, |
|
-1, -1, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, 413, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, -1, 429, -1, -1, |
|
-1, -1, -1, -1, 368, -1, 370, -1, 372, -1, |
|
374, 375, 376, -1, -1, -1, -1, -1, -1, -1, |
|
384, 385, -1, -1, -1, 389, 390, -1, 256, -1, |
|
-1, -1, -1, -1, -1, -1, 400, 401, -1, -1, |
|
-1, -1, -1, 339, -1, -1, -1, -1, 344, 413, |
|
346, 347, 348, 349, 350, 351, 352, 353, 354, 355, |
|
356, -1, -1, -1, -1, 429, -1, -1, -1, -1, |
|
-1, -1, 368, -1, 370, -1, 372, -1, 374, 375, |
|
376, -1, -1, -1, -1, -1, -1, -1, 384, 385, |
|
-1, -1, -1, 389, 390, -1, 256, -1, -1, -1, |
|
-1, -1, -1, -1, 400, 401, -1, -1, -1, -1, |
|
-1, 339, -1, -1, -1, -1, 344, 413, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, -1, |
|
-1, -1, -1, 429, -1, -1, -1, -1, -1, -1, |
|
368, -1, 370, -1, 372, -1, 374, 375, 376, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 385, -1, -1, |
|
-1, 389, 390, -1, 256, -1, -1, -1, -1, -1, |
|
-1, -1, 400, 401, -1, -1, -1, -1, -1, 339, |
|
-1, -1, -1, -1, 344, 413, 346, 347, 348, 349, |
|
350, 351, 352, 353, 354, 355, 356, -1, -1, -1, |
|
-1, 429, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, -1, 372, -1, 374, 375, 376, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 385, -1, -1, -1, 389, |
|
390, -1, 256, -1, -1, -1, -1, -1, -1, -1, |
|
400, 401, -1, -1, -1, -1, -1, 339, -1, -1, |
|
-1, -1, 344, 413, 346, 347, 348, 349, 350, 351, |
|
352, 353, 354, 355, 356, -1, -1, -1, -1, 429, |
|
-1, -1, -1, -1, -1, -1, 368, -1, 370, -1, |
|
372, -1, 374, 375, 376, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 385, -1, -1, -1, -1, 390, -1, |
|
256, -1, -1, -1, -1, -1, -1, -1, 400, 401, |
|
-1, -1, -1, -1, -1, 339, -1, -1, -1, -1, |
|
344, 413, 346, 347, 348, 349, 350, 351, 352, 353, |
|
354, 355, 356, -1, -1, -1, -1, 429, -1, -1, |
|
-1, -1, -1, -1, 368, -1, 370, -1, 372, -1, |
|
374, 375, 376, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 385, -1, -1, -1, -1, 390, -1, 256, -1, |
|
-1, -1, -1, -1, -1, -1, 400, 401, -1, -1, |
|
-1, -1, -1, 339, -1, -1, -1, -1, 344, 413, |
|
346, 347, 348, 349, 350, 351, 352, 353, 354, 355, |
|
356, -1, -1, -1, -1, 429, -1, -1, -1, -1, |
|
-1, -1, 368, -1, 370, -1, 372, -1, 374, 375, |
|
376, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 390, -1, 256, -1, -1, -1, |
|
-1, -1, -1, -1, 400, 401, -1, -1, -1, -1, |
|
-1, 339, -1, -1, -1, -1, 344, 413, 346, 347, |
|
348, 349, 350, 351, 352, 353, 354, 355, 356, -1, |
|
-1, -1, -1, 429, -1, -1, -1, -1, -1, -1, |
|
368, -1, 370, -1, 372, -1, 374, 375, 376, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 262, 390, -1, -1, 266, -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, 298, -1, -1, |
|
-1, 429, -1, -1, -1, -1, -1, -1, 368, -1, |
|
370, -1, 372, 314, 374, 375, 376, -1, -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, 357, -1, -1, -1, |
|
-1, -1, 363, -1, -1, -1, -1, 368, 369, 429, |
|
371, -1, 373, -1, 375, 376, -1, 378, 379, -1, |
|
381, 382, 383, 384, 385, 386, 387, 388, 389, 390, |
|
-1, 392, 393, 394, 395, 396, 397, 398, 399, 400, |
|
401, 402, 403, 404, 405, 406, 407, 408, 409, 410, |
|
411, 412, 413, -1, -1, 256, -1, 418, -1, 420, |
|
-1, -1, 423, 264, 265, 266, 267, -1, 429, 270, |
|
271, -1, 273, 274, 275, 276, 277, 278, 279, -1, |
|
-1, -1, -1, -1, 285, -1, 287, 288, 289, 290, |
|
291, 292, -1, -1, 295, -1, -1, -1, 299, 300, |
|
-1, 302, 303, 304, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 314, -1, 316, -1, 318, 319, -1, |
|
-1, 322, -1, 324, 325, 326, 327, 328, 329, 330, |
|
331, 332, 333, 334, 335, -1, 337, -1, -1, 340, |
|
341, -1, -1, 344, 345, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 359, 360, |
|
361, 362, 363, -1, -1, -1, 367, -1, -1, -1, |
|
371, -1, -1, -1, -1, 376, 377, 378, 379, 380, |
|
-1, -1, -1, 384, -1, 386, -1, -1, -1, -1, |
|
-1, 392, 393, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 256, -1, -1, -1, 417, 418, 419, 420, |
|
264, 265, 266, 267, -1, -1, 270, 271, -1, 273, |
|
274, 275, 276, 277, 278, 279, -1, -1, -1, -1, |
|
-1, 285, -1, 287, 288, 289, 290, 291, 292, -1, |
|
-1, 295, -1, -1, -1, 299, 300, -1, 302, 303, |
|
304, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
314, -1, 316, -1, 318, 319, -1, -1, 322, -1, |
|
324, 325, 326, 327, 328, 329, 330, 331, 332, 333, |
|
334, 335, -1, 337, -1, -1, 340, 341, -1, -1, |
|
344, 345, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 359, 360, 361, 362, 363, |
|
-1, -1, -1, 367, -1, -1, -1, 371, -1, -1, |
|
-1, -1, 376, 377, 378, 379, 380, -1, -1, -1, |
|
384, -1, 386, -1, -1, -1, -1, -1, 392, 393, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 256, |
|
-1, -1, -1, 417, 418, 419, 420, 264, 265, 266, |
|
267, -1, -1, 270, 271, -1, 273, 274, 275, 276, |
|
277, 278, 279, -1, -1, -1, -1, -1, 285, -1, |
|
287, 288, 289, 290, 291, 292, -1, -1, 295, -1, |
|
-1, -1, 299, 300, -1, 302, 303, 304, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 314, -1, 316, |
|
-1, 318, 319, -1, -1, 322, -1, 324, 325, 326, |
|
327, 328, 329, 330, 331, 332, 333, 334, 335, -1, |
|
337, -1, -1, 340, 341, -1, -1, 344, 345, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 359, 360, 361, 362, 363, -1, -1, -1, |
|
367, -1, -1, -1, 371, -1, -1, -1, -1, 376, |
|
377, 378, 379, 380, -1, -1, -1, 384, -1, 386, |
|
-1, -1, -1, -1, -1, 392, 393, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 256, -1, -1, -1, |
|
417, 418, 419, 420, 264, 265, 266, 267, -1, -1, |
|
270, 271, -1, 273, 274, 275, 276, 277, 278, 279, |
|
-1, -1, -1, -1, -1, 285, -1, 287, 288, 289, |
|
290, 291, 292, -1, -1, 295, -1, -1, -1, 299, |
|
300, -1, 302, 303, 304, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 314, -1, 316, -1, 318, 319, |
|
-1, -1, 322, -1, 324, 325, 326, 327, 328, 329, |
|
330, 331, 332, 333, 334, 335, -1, 337, -1, -1, |
|
340, 341, -1, -1, 344, 345, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 359, |
|
360, 361, 362, 363, -1, -1, -1, 367, -1, -1, |
|
-1, 371, -1, -1, -1, -1, 376, 377, 378, 379, |
|
380, -1, -1, -1, 384, -1, 386, -1, -1, -1, |
|
-1, -1, 392, 393, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 256, -1, -1, -1, 417, 418, 419, |
|
420, 264, 265, 266, 267, -1, -1, 270, 271, -1, |
|
273, 274, 275, 276, 277, 278, 279, -1, -1, -1, |
|
-1, -1, 285, -1, 287, 288, 289, 290, 291, 292, |
|
-1, -1, 295, -1, -1, -1, 299, 300, -1, 302, |
|
303, 304, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 314, -1, 316, -1, 318, 319, -1, -1, 322, |
|
-1, 324, 325, 326, 327, 328, 329, 330, 331, 332, |
|
333, 334, 335, -1, 337, -1, -1, 340, 341, -1, |
|
-1, 344, 345, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 359, 360, 361, 362, |
|
363, -1, -1, -1, 367, -1, -1, -1, 371, -1, |
|
-1, -1, -1, 376, 377, 378, 379, 380, -1, -1, |
|
-1, 384, -1, 386, -1, -1, -1, -1, -1, 392, |
|
393, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
256, -1, -1, -1, 417, 418, 419, 420, 264, 265, |
|
-1, 267, -1, -1, 270, 271, -1, 256, -1, 275, |
|
276, 277, -1, 279, -1, -1, 265, -1, 267, 285, |
|
-1, 270, 288, -1, -1, -1, 275, -1, -1, 295, |
|
279, -1, -1, -1, 300, -1, 302, 303, 304, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, -1, |
|
316, 300, 318, 319, -1, 304, 322, -1, -1, 325, |
|
-1, 327, -1, 329, 330, 331, 332, 316, 334, 318, |
|
-1, -1, -1, 322, -1, 341, -1, -1, 344, 345, |
|
-1, 330, 331, -1, -1, 334, -1, -1, 337, -1, |
|
-1, -1, -1, 359, 360, 361, 362, 363, -1, -1, |
|
-1, 367, 368, -1, -1, 371, -1, -1, -1, -1, |
|
-1, 377, 378, 379, 380, -1, -1, -1, 384, -1, |
|
386, -1, -1, -1, -1, -1, 392, 393, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 256, -1, -1, |
|
-1, 417, 418, 419, 420, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, 256, -1, 275, 276, 277, 418, |
|
279, -1, -1, 265, -1, 267, 285, -1, 270, 288, |
|
-1, -1, -1, 275, -1, -1, 295, 279, -1, -1, |
|
-1, 300, -1, 302, 303, 304, 288, 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, |
|
-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, 320, 304, |
|
322, -1, -1, 325, -1, 327, -1, 329, 330, 331, |
|
332, 316, 334, 318, -1, -1, -1, 322, -1, 341, |
|
-1, -1, 344, 345, -1, 330, 331, -1, -1, 334, |
|
-1, -1, 337, -1, -1, -1, -1, 359, 360, 361, |
|
362, 363, -1, -1, -1, 367, -1, -1, -1, 371, |
|
-1, -1, -1, -1, -1, 377, 378, 379, 380, -1, |
|
-1, -1, 384, -1, 386, -1, -1, 372, -1, -1, |
|
392, 393, -1, -1, -1, -1, -1, -1, 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, |
|
370, -1, -1, -1, -1, 392, 393, -1, -1, -1, |
|
-1, -1, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
417, 418, 419, 420, 285, -1, -1, 288, -1, -1, |
|
-1, -1, -1, -1, 295, -1, -1, -1, 418, 300, |
|
-1, 302, 303, 304, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 316, -1, 318, 319, -1, |
|
-1, 322, -1, -1, 325, -1, 327, -1, 329, 330, |
|
331, 332, -1, 334, -1, -1, -1, -1, -1, -1, |
|
341, -1, -1, 344, 345, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 359, 360, |
|
361, 362, 363, -1, -1, -1, 367, -1, -1, -1, |
|
371, -1, -1, -1, -1, -1, 377, 378, 379, 380, |
|
-1, -1, -1, 384, -1, 386, -1, -1, -1, -1, |
|
-1, 392, 393, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 256, -1, 417, 418, 419, 420, |
|
-1, -1, 264, 265, -1, 267, -1, 428, 270, 271, |
|
-1, -1, -1, 275, 276, 277, -1, 279, -1, -1, |
|
265, -1, 267, 285, -1, 270, 288, -1, -1, -1, |
|
275, -1, -1, 295, 279, -1, -1, -1, 300, -1, |
|
302, 303, 304, 288, -1, -1, -1, -1, -1, -1, |
|
295, -1, -1, -1, 316, 300, 318, 319, -1, 304, |
|
322, -1, -1, 325, -1, 327, -1, 329, 330, 331, |
|
332, 316, 334, 318, -1, -1, -1, 322, -1, 341, |
|
-1, -1, 344, 345, -1, 330, 331, -1, -1, 334, |
|
-1, -1, 337, -1, -1, -1, -1, 359, 360, 361, |
|
362, 363, -1, -1, -1, 367, -1, -1, -1, 371, |
|
-1, -1, -1, -1, -1, 377, 378, 379, 380, -1, |
|
-1, -1, 384, -1, 386, -1, -1, -1, -1, -1, |
|
392, 393, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 256, -1, -1, -1, 417, 418, 419, 420, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, 418, 279, -1, -1, 265, -1, 267, |
|
285, -1, 270, 288, -1, -1, -1, 275, -1, -1, |
|
295, 279, -1, -1, -1, 300, -1, 302, 303, 304, |
|
288, -1, -1, -1, -1, -1, -1, 295, -1, -1, |
|
-1, 316, 300, 318, 319, -1, 304, 322, -1, -1, |
|
325, -1, 327, -1, 329, 330, 331, 332, 316, 334, |
|
318, -1, -1, -1, 322, -1, 341, -1, -1, 344, |
|
345, -1, 330, 331, -1, -1, 334, -1, -1, 337, |
|
-1, -1, -1, -1, 359, 360, 361, 362, 363, -1, |
|
-1, -1, -1, -1, -1, -1, 371, -1, -1, -1, |
|
-1, -1, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 256, -1, |
|
-1, -1, 417, 418, 419, 420, 264, 265, -1, 267, |
|
-1, -1, 270, 271, -1, -1, -1, 275, 276, 277, |
|
418, 279, -1, -1, 265, -1, 267, 285, -1, 270, |
|
288, -1, -1, -1, 275, -1, -1, 295, 279, -1, |
|
-1, -1, 300, -1, 302, 303, 304, 288, -1, -1, |
|
-1, -1, -1, -1, 295, -1, -1, -1, 316, 300, |
|
318, 319, -1, 304, 322, -1, -1, 325, -1, 327, |
|
-1, 329, 330, 331, 332, 316, 334, 318, -1, -1, |
|
-1, 322, -1, 341, -1, -1, 344, 345, -1, 330, |
|
331, -1, -1, 334, -1, -1, 337, -1, -1, -1, |
|
-1, 359, 360, 361, 362, 363, -1, -1, -1, -1, |
|
-1, -1, -1, 371, -1, -1, -1, -1, -1, 377, |
|
378, 379, 380, -1, -1, -1, 384, -1, 386, -1, |
|
-1, -1, -1, -1, 392, 393, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 256, -1, -1, -1, 417, |
|
418, 419, 420, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, 418, 279, -1, |
|
-1, 265, -1, 267, 285, -1, 270, 288, -1, -1, |
|
-1, 275, -1, -1, 295, 279, -1, -1, -1, 300, |
|
-1, 302, 303, 304, 288, -1, -1, -1, -1, -1, |
|
-1, 295, -1, -1, -1, 316, 300, 318, 319, -1, |
|
304, 322, -1, -1, 325, -1, 327, -1, 329, 330, |
|
331, 332, 316, 334, 318, -1, -1, -1, 322, -1, |
|
341, -1, -1, 344, 345, -1, 330, 331, -1, -1, |
|
334, -1, -1, 337, -1, -1, -1, -1, 359, 360, |
|
361, 362, 363, -1, -1, -1, -1, -1, -1, -1, |
|
371, -1, -1, -1, -1, -1, 377, 378, 379, 380, |
|
-1, -1, -1, 384, -1, 386, -1, -1, -1, -1, |
|
-1, 392, 393, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 256, -1, -1, -1, 417, 418, 419, 420, |
|
264, 265, -1, 267, -1, -1, 270, 271, -1, -1, |
|
-1, 275, 276, 277, 418, 279, -1, -1, 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, 262, -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, 298, -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, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 417, 418, 419, |
|
420, 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, 261, -1, 263, -1, 265, |
|
420, 267, -1, 423, 270, -1, 272, 273, -1, 275, |
|
-1, 277, -1, 279, -1, 281, 282, 283, 284, -1, |
|
-1, 287, 288, -1, -1, -1, -1, 293, 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, -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, -1, 304, -1, -1, 307, -1, |
|
309, 310, 311, 312, -1, -1, -1, 316, 317, 318, |
|
-1, -1, 321, 322, 323, 418, -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, |
|
261, 304, -1, -1, 307, -1, 309, 310, 311, 312, |
|
-1, -1, -1, 316, 317, 318, -1, -1, 321, 322, |
|
323, -1, -1, 284, -1, -1, -1, 330, 331, 418, |
|
333, 334, -1, 336, 337, 338, 297, -1, -1, 342, |
|
-1, 302, -1, -1, 305, -1, 307, -1, 309, 310, |
|
311, 312, -1, -1, -1, -1, 317, -1, -1, 362, |
|
321, -1, -1, -1, 325, 368, -1, -1, 261, -1, |
|
-1, -1, 333, -1, -1, 336, -1, 338, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 284, -1, -1, -1, -1, 357, -1, -1, -1, |
|
-1, 362, -1, -1, 297, -1, -1, -1, 369, 302, |
|
371, -1, 373, -1, 307, 418, 309, 310, 311, 312, |
|
-1, -1, -1, -1, 317, 386, -1, -1, 321, -1, |
|
-1, -1, 325, -1, -1, 264, 265, -1, 267, -1, |
|
333, 270, 271, 336, -1, 338, 275, 276, 277, -1, |
|
279, -1, -1, -1, -1, -1, 285, 418, -1, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, 362, |
|
-1, 300, -1, 302, 303, 304, -1, 306, -1, -1, |
|
-1, -1, -1, -1, 313, -1, -1, 316, -1, 318, |
|
319, -1, -1, 322, -1, -1, 325, -1, 327, -1, |
|
329, 330, 331, 332, -1, 334, -1, -1, -1, -1, |
|
-1, -1, 341, -1, -1, 344, 345, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 418, -1, -1, -1, -1, |
|
359, 360, 361, 362, 363, -1, -1, -1, -1, -1, |
|
-1, -1, 371, 372, -1, 374, -1, -1, 377, 378, |
|
379, 380, -1, -1, -1, 384, -1, 386, -1, -1, |
|
-1, -1, -1, 392, 393, -1, -1, -1, -1, -1, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, 417, 418, |
|
419, 420, 285, -1, -1, 288, -1, -1, -1, -1, |
|
-1, -1, 295, -1, -1, -1, -1, 300, -1, 302, |
|
303, 304, -1, 306, -1, -1, -1, -1, -1, -1, |
|
313, -1, -1, 316, -1, 318, 319, -1, -1, 322, |
|
-1, -1, 325, -1, 327, -1, 329, 330, 331, 332, |
|
-1, 334, -1, -1, -1, -1, -1, -1, 341, -1, |
|
-1, 344, 345, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 359, 360, 361, 362, |
|
363, -1, -1, -1, -1, -1, -1, -1, 371, -1, |
|
-1, 374, -1, -1, 377, 378, 379, 380, -1, -1, |
|
-1, 384, -1, 386, -1, -1, -1, -1, -1, 392, |
|
393, -1, -1, -1, -1, -1, -1, 264, 265, -1, |
|
267, -1, -1, 270, 271, -1, -1, -1, 275, 276, |
|
277, -1, 279, -1, 417, 418, 419, 420, 285, -1, |
|
-1, 288, -1, -1, -1, -1, -1, -1, 295, -1, |
|
-1, -1, -1, 300, -1, 302, 303, 304, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 316, |
|
-1, 318, 319, -1, -1, 322, -1, -1, 325, -1, |
|
327, -1, 329, 330, 331, 332, -1, 334, -1, -1, |
|
337, -1, -1, -1, 341, -1, -1, 344, 345, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 359, 360, 361, 362, 363, -1, -1, -1, |
|
-1, -1, -1, -1, 371, -1, -1, -1, -1, -1, |
|
377, 378, 379, 380, -1, -1, -1, 384, -1, 386, |
|
-1, -1, -1, -1, -1, 392, 393, -1, -1, -1, |
|
-1, -1, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
417, 418, 419, 420, 285, -1, -1, 288, -1, -1, |
|
-1, -1, -1, -1, 295, -1, -1, -1, -1, 300, |
|
-1, 302, 303, 304, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 316, -1, 318, 319, -1, |
|
-1, 322, -1, -1, 325, -1, 327, -1, 329, 330, |
|
331, 332, -1, 334, -1, -1, -1, -1, -1, -1, |
|
341, -1, -1, 344, 345, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 359, 360, |
|
361, 362, 363, -1, -1, -1, -1, 368, -1, -1, |
|
371, -1, -1, -1, -1, -1, 377, 378, 379, 380, |
|
-1, -1, -1, 384, -1, 386, -1, -1, -1, -1, |
|
-1, 392, 393, -1, -1, -1, -1, -1, -1, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, -1, 279, -1, 417, 418, 419, 420, |
|
285, -1, -1, 288, -1, -1, -1, -1, -1, -1, |
|
295, -1, -1, -1, -1, 300, -1, 302, 303, 304, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 316, -1, 318, 319, -1, -1, 322, -1, -1, |
|
325, -1, 327, -1, 329, 330, 331, 332, -1, 334, |
|
-1, -1, -1, -1, -1, -1, 341, -1, -1, 344, |
|
345, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 359, 360, 361, 362, 363, -1, |
|
-1, -1, 367, -1, -1, -1, 371, -1, -1, -1, |
|
-1, -1, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, -1, |
|
279, -1, 417, 418, 419, 420, 285, -1, -1, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, -1, |
|
-1, 300, -1, 302, 303, 304, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 316, -1, 318, |
|
319, -1, -1, 322, -1, -1, 325, -1, 327, -1, |
|
329, 330, 331, 332, -1, 334, -1, -1, -1, -1, |
|
-1, -1, 341, -1, -1, 344, 345, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
359, 360, 361, 362, 363, -1, -1, -1, 367, -1, |
|
-1, -1, 371, -1, -1, -1, -1, -1, 377, 378, |
|
379, 380, -1, -1, -1, 384, -1, 386, -1, -1, |
|
-1, -1, -1, 392, 393, -1, -1, -1, -1, -1, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, 417, 418, |
|
419, 420, 285, -1, -1, 288, -1, -1, -1, -1, |
|
-1, -1, 295, -1, -1, -1, -1, 300, -1, 302, |
|
303, 304, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 316, -1, 318, 319, -1, -1, 322, |
|
-1, -1, 325, -1, 327, -1, 329, 330, 331, 332, |
|
-1, 334, -1, -1, -1, -1, -1, -1, 341, -1, |
|
-1, 344, 345, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, 359, 360, 361, 362, |
|
363, -1, -1, -1, -1, -1, -1, -1, 371, -1, |
|
-1, -1, -1, -1, 377, 378, 379, 380, -1, -1, |
|
-1, 384, -1, 386, -1, -1, -1, -1, -1, 392, |
|
393, -1, -1, -1, -1, -1, -1, 264, 265, -1, |
|
267, -1, -1, 270, 271, -1, -1, -1, 275, 276, |
|
277, -1, 279, -1, 417, 418, 419, 420, 285, -1, |
|
-1, 288, -1, -1, -1, -1, -1, -1, 295, -1, |
|
-1, -1, -1, 300, -1, 302, 303, 304, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 316, |
|
-1, 318, 319, -1, -1, 322, -1, -1, 325, -1, |
|
327, -1, 329, 330, 331, 332, -1, 334, -1, -1, |
|
-1, -1, -1, -1, 341, -1, -1, 344, 345, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, 359, 360, 361, 362, 363, -1, -1, -1, |
|
-1, -1, -1, -1, 371, -1, -1, -1, -1, -1, |
|
377, 378, 379, 380, -1, -1, -1, 384, -1, 386, |
|
-1, -1, -1, -1, -1, 392, 393, -1, -1, -1, |
|
-1, -1, -1, 264, 265, -1, 267, -1, -1, 270, |
|
271, -1, -1, -1, 275, 276, 277, -1, 279, -1, |
|
417, 418, 419, 420, 285, -1, -1, 288, -1, -1, |
|
-1, -1, -1, -1, 295, -1, -1, -1, -1, 300, |
|
-1, 302, 303, 304, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, 316, -1, 318, 319, -1, |
|
-1, 322, -1, -1, 325, -1, 327, -1, 329, 330, |
|
331, 332, -1, 334, -1, -1, -1, -1, -1, -1, |
|
341, -1, -1, 344, 345, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 359, 360, |
|
361, 362, 363, -1, -1, -1, -1, -1, -1, -1, |
|
371, -1, -1, -1, -1, -1, 377, 378, 379, 380, |
|
-1, -1, -1, 384, -1, 386, -1, -1, -1, -1, |
|
-1, 392, 393, -1, -1, -1, -1, -1, -1, 264, |
|
265, -1, 267, -1, -1, 270, 271, -1, -1, -1, |
|
275, 276, 277, -1, 279, -1, 417, 418, 419, 420, |
|
285, -1, -1, 288, -1, -1, -1, -1, -1, -1, |
|
295, -1, -1, -1, -1, 300, -1, 302, 303, 304, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 316, -1, 318, 319, -1, -1, 322, -1, -1, |
|
325, -1, 327, -1, 329, 330, 331, 332, -1, 334, |
|
-1, -1, -1, -1, -1, -1, 341, -1, -1, 344, |
|
345, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, -1, 359, 360, 361, 362, 363, -1, |
|
-1, -1, -1, -1, -1, -1, 371, -1, -1, -1, |
|
-1, -1, 377, 378, 379, 380, -1, -1, -1, 384, |
|
-1, 386, -1, -1, -1, -1, -1, 392, 393, -1, |
|
-1, -1, -1, -1, -1, 264, 265, -1, 267, -1, |
|
-1, 270, 271, -1, -1, -1, 275, 276, 277, -1, |
|
279, -1, 417, 418, 419, 420, 285, -1, -1, 288, |
|
-1, -1, -1, -1, -1, -1, 295, -1, -1, -1, |
|
-1, 300, -1, 302, 303, 304, -1, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 316, -1, 318, |
|
319, -1, -1, 322, -1, -1, 325, -1, 327, -1, |
|
329, 330, 331, 332, -1, 334, -1, -1, -1, -1, |
|
-1, -1, 341, -1, -1, 344, 345, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
359, 360, 361, 362, 363, -1, -1, -1, -1, -1, |
|
-1, -1, 371, -1, -1, -1, -1, -1, 377, 378, |
|
379, 380, -1, -1, -1, 384, -1, 386, -1, -1, |
|
-1, -1, -1, 392, 393, -1, -1, -1, -1, -1, |
|
-1, 264, 265, -1, 267, -1, -1, 270, 271, -1, |
|
-1, -1, 275, 276, 277, -1, 279, -1, 417, 418, |
|
419, 420, 285, -1, -1, 288, -1, -1, -1, -1, |
|
-1, -1, 295, -1, 261, -1, -1, 300, -1, 302, |
|
303, 304, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, -1, -1, 316, -1, 318, 319, 284, -1, 322, |
|
-1, -1, 325, -1, 327, -1, 329, 330, 331, 332, |
|
297, 334, -1, -1, -1, 302, -1, -1, -1, -1, |
|
307, -1, 309, 310, 311, 312, -1, -1, 315, -1, |
|
317, -1, -1, -1, 321, -1, 359, 360, 361, 362, |
|
363, -1, -1, -1, -1, -1, 333, -1, 371, 336, |
|
-1, 338, -1, -1, 377, 378, 379, 380, -1, -1, |
|
-1, 384, -1, 386, -1, -1, -1, -1, -1, 392, |
|
393, -1, -1, -1, -1, 362, -1, -1, -1, -1, |
|
-1, 368, 369, -1, -1, -1, -1, -1, -1, 263, |
|
-1, 265, -1, 267, 417, 418, 270, 420, 272, 273, |
|
-1, 275, -1, 277, -1, 279, -1, 281, 282, 283, |
|
-1, -1, -1, 287, 288, -1, -1, -1, -1, 293, |
|
-1, 295, 296, -1, -1, -1, 300, -1, -1, -1, |
|
304, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
-1, 315, 316, -1, 318, -1, -1, -1, 322, 323, |
|
-1, -1, -1, -1, -1, -1, 330, 331, 264, 265, |
|
334, 267, -1, 337, 270, 271, -1, -1, 342, 275, |
|
276, 277, -1, 279, -1, -1, -1, -1, -1, 285, |
|
-1, -1, 288, -1, -1, -1, -1, -1, -1, 295, |
|
364, 365, -1, -1, 300, -1, 302, 303, 304, -1, |
|
-1, -1, -1, 377, -1, -1, -1, -1, -1, -1, |
|
316, -1, 318, 319, -1, -1, 322, -1, -1, 325, |
|
-1, 327, -1, 329, 330, 331, 332, -1, 334, -1, |
|
-1, 337, -1, -1, -1, -1, -1, -1, 265, -1, |
|
267, -1, -1, 270, 418, 272, -1, -1, 275, -1, |
|
-1, -1, 279, 359, 360, 361, 362, -1, -1, -1, |
|
-1, 288, 265, -1, 267, 371, -1, 270, 295, 272, |
|
273, -1, 275, 300, 277, 302, 279, 304, 281, 282, |
|
283, -1, -1, -1, 287, 288, -1, -1, -1, 316, |
|
293, 318, 295, 296, -1, 322, 323, 300, -1, -1, |
|
-1, 304, -1, 330, 331, -1, -1, 334, -1, -1, |
|
337, 417, 418, 316, -1, 318, -1, -1, -1, 322, |
|
323, -1, -1, -1, -1, -1, -1, 330, 331, -1, |
|
265, 334, 267, -1, 337, 270, -1, 272, 273, 342, |
|
275, -1, 277, -1, 279, -1, 281, 282, 283, -1, |
|
-1, -1, 287, 288, -1, -1, -1, -1, 293, -1, |
|
295, 296, -1, -1, -1, 300, -1, -1, -1, 304, |
|
-1, -1, -1, -1, 377, -1, -1, -1, -1, -1, |
|
-1, 316, -1, 318, -1, -1, -1, 322, 323, -1, |
|
-1, 418, -1, -1, -1, 330, 331, -1, -1, 334, |
|
-1, -1, 337, -1, 265, -1, 267, 342, -1, 270, |
|
-1, -1, 273, -1, 275, 418, 277, -1, 279, -1, |
|
281, 282, 283, -1, -1, -1, 287, 288, -1, -1, |
|
-1, -1, 293, -1, 295, -1, 265, -1, 267, 300, |
|
-1, 270, -1, 304, 273, -1, 275, -1, 277, -1, |
|
279, -1, 281, 282, 283, 316, -1, 318, 287, 288, |
|
-1, 322, -1, -1, 293, -1, 295, -1, -1, 330, |
|
331, 300, -1, 334, -1, 304, 337, -1, -1, -1, |
|
265, 342, 267, 418, -1, 270, -1, 316, -1, 318, |
|
275, -1, -1, 322, 279, -1, -1, -1, -1, -1, |
|
-1, 330, 331, 288, -1, 334, -1, -1, 337, -1, |
|
295, -1, 265, 342, 267, 300, 377, 270, -1, 304, |
|
-1, 306, 275, 308, -1, -1, 279, -1, 313, -1, |
|
-1, 316, -1, 318, -1, 288, -1, 322, -1, -1, |
|
325, -1, 295, -1, -1, 330, 331, 300, -1, 334, |
|
-1, 304, 337, 306, -1, 308, 265, 418, 267, -1, |
|
313, 270, -1, 316, -1, 318, 275, -1, -1, 322, |
|
279, -1, 325, -1, -1, -1, -1, 330, 331, 288, |
|
-1, 334, -1, -1, 337, -1, 295, 372, 265, 418, |
|
267, 300, -1, 270, -1, 304, -1, 306, 275, 308, |
|
-1, -1, 279, -1, 313, -1, -1, 316, -1, 318, |
|
-1, 288, -1, 322, -1, -1, 325, 370, 295, -1, |
|
-1, 330, 331, 300, -1, 334, -1, 304, 337, 306, |
|
-1, 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, -1, -1, 418, -1, 300, -1, -1, |
|
-1, 304, -1, 306, -1, -1, -1, 265, -1, 267, |
|
313, -1, 270, 316, -1, 318, -1, 275, -1, 322, |
|
-1, 279, 325, -1, -1, 283, -1, 330, 331, -1, |
|
288, 334, -1, -1, 337, 293, -1, 295, -1, 418, |
|
-1, -1, 300, -1, -1, -1, 304, 305, -1, -1, |
|
-1, 265, -1, 267, -1, -1, 270, -1, 316, -1, |
|
318, 275, -1, -1, 322, 279, -1, -1, -1, -1, |
|
-1, 418, 330, 331, 288, 265, 334, 267, -1, -1, |
|
270, 295, -1, -1, -1, 275, 300, -1, -1, 279, |
|
304, -1, -1, -1, -1, -1, -1, -1, 288, -1, |
|
-1, -1, 316, -1, 318, 295, -1, -1, 322, -1, |
|
300, -1, -1, -1, 304, 418, 330, 331, -1, -1, |
|
334, -1, -1, 337, -1, -1, 316, -1, 318, 265, |
|
-1, 267, 322, -1, 270, -1, -1, -1, -1, 275, |
|
330, 331, -1, 279, 334, -1, -1, 337, -1, 363, |
|
-1, -1, 288, -1, -1, -1, -1, -1, -1, 295, |
|
418, -1, -1, -1, 300, -1, -1, 261, 304, -1, |
|
-1, -1, -1, -1, -1, -1, -1, -1, 272, -1, |
|
316, -1, 318, 277, -1, -1, 322, 281, -1, -1, |
|
284, -1, -1, -1, 330, 331, -1, -1, 334, -1, |
|
-1, 337, 296, 297, 418, -1, -1, 301, 302, -1, |
|
-1, -1, -1, 307, -1, 309, 310, 311, 312, -1, |
|
-1, -1, -1, 317, -1, -1, -1, 321, 418, 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, -1, -1, 277, |
|
-1, -1, -1, 281, -1, -1, 284, -1, 362, -1, |
|
-1, -1, -1, -1, 368, 369, -1, -1, 296, 297, |
|
-1, -1, 418, 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, -1, 362, 333, 364, 365, |
|
336, 297, 338, -1, -1, -1, 302, -1, -1, -1, |
|
-1, 307, -1, 309, 310, 311, 312, -1, -1, -1, |
|
-1, 317, -1, -1, -1, 321, 362, -1, -1, -1, |
|
-1, -1, -1, -1, -1, -1, -1, 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 6607 "cs-parser.jay" |
|
|
|
// <summary> |
|
// A class used to hold info about an operator declarator |
|
// </summary> |
|
class OperatorDeclaration { |
|
public readonly Operator.OpType optype; |
|
public readonly FullNamedExpression ret_type; |
|
public readonly Location location; |
|
|
|
public OperatorDeclaration (Operator.OpType op, FullNamedExpression ret_type, Location location) |
|
{ |
|
optype = op; |
|
this.ret_type = ret_type; |
|
this.location = location; |
|
} |
|
} |
|
|
|
void Error_ExpectingTypeName (Expression expr) |
|
{ |
|
if (expr is Invocation){ |
|
report.Error (1002, expr.Location, "Expecting `;'"); |
|
} else { |
|
Expression.Error_InvalidExpressionStatement (report, expr.Location); |
|
} |
|
} |
|
|
|
void Error_ParameterModifierNotValid (string modifier, Location loc) |
|
{ |
|
report.Error (631, loc, "The parameter modifier `{0}' is not valid in this context", |
|
modifier); |
|
} |
|
|
|
void Error_DuplicateParameterModifier (Location loc, Parameter.Modifier mod) |
|
{ |
|
report.Error (1107, loc, "Duplicate parameter modifier `{0}'", |
|
Parameter.GetModifierSignature (mod)); |
|
} |
|
|
|
void Error_TypeExpected (Location loc) |
|
{ |
|
report.Error (1031, loc, "Type expected"); |
|
} |
|
|
|
void Error_UnsafeCodeNotAllowed (Location loc) |
|
{ |
|
report.Error (227, loc, "Unsafe code requires the `unsafe' command line option to be specified"); |
|
} |
|
|
|
void Warning_EmptyStatement (Location loc) |
|
{ |
|
report.Warning (642, 3, loc, "Possible mistaken empty statement"); |
|
} |
|
|
|
void Error_NamedArgumentExpected (NamedArgument a) |
|
{ |
|
report.Error (1738, a.Location, "Named arguments must appear after the positional arguments"); |
|
} |
|
|
|
void Error_MissingInitializer (Location loc) |
|
{ |
|
report.Error (210, loc, "You must provide an initializer in a fixed or using statement declaration"); |
|
} |
|
|
|
void push_current_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; |
|
} |
|
} |
|
|
|
static CSharpParser () |
|
{ |
|
oob_stack = new Stack<object> (); |
|
} |
|
|
|
public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file) |
|
: this (reader, file, file.Compiler.Report) |
|
{ |
|
} |
|
|
|
public CSharpParser (SeekableStreamReader reader, CompilationSourceFile file, Report report) |
|
{ |
|
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; |
|
oob_stack.Clear (); |
|
lexer = new Tokenizer (reader, file); |
|
|
|
#if FULL_AST |
|
lbag = new LocationsBag (); |
|
#else |
|
lbag = null; |
|
#endif |
|
|
|
use_global_stacks = true; |
|
} |
|
|
|
public void parse () |
|
{ |
|
eof_token = Token.EOF; |
|
Tokenizer.LocatedToken.Initialize (); |
|
|
|
try { |
|
if (yacc_verbose_flag > 1) |
|
yyparse (lexer, new yydebug.yyDebugSimple ()); |
|
else |
|
yyparse (lexer); |
|
|
|
Tokenizer tokenizer = lexer as Tokenizer; |
|
tokenizer.cleanup (); |
|
} catch (Exception e){ |
|
if (e is yyParser.yyUnexpectedEof) { |
|
Error_SyntaxError (yyToken); |
|
UnexpectedEOF = true; |
|
return; |
|
} |
|
|
|
if (e is yyParser.yyException) { |
|
report.Error (-25, lexer.Location, "Parsing error"); |
|
} else { |
|
// Used by compiler-tester to test internal errors |
|
if (yacc_verbose_flag > 0 || 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; |
|
} |
|
|
|
public LocationsBag LocationsBag { |
|
get { |
|
return lbag; |
|
} |
|
} |
|
|
|
void start_block (Location loc) |
|
{ |
|
if (current_block == null) { |
|
current_block = new ToplevelBlock (compiler, current_local_parameters, loc); |
|
parsing_anonymous_method = false; |
|
} else if (parsing_anonymous_method) { |
|
current_block = new ParametersBlock (current_block, current_local_parameters, loc); |
|
parsing_anonymous_method = false; |
|
} else { |
|
current_block = new ExplicitBlock (current_block, loc, Location.Null); |
|
} |
|
} |
|
|
|
Block |
|
end_block (Location loc) |
|
{ |
|
Block retval = current_block.Explicit; |
|
retval.SetEndLocation (loc); |
|
current_block = retval.Parent; |
|
return retval; |
|
} |
|
|
|
void start_anonymous (bool isLambda, ParametersCompiled parameters, bool isAsync, Location loc) |
|
{ |
|
oob_stack.Push (current_anonymous_method); |
|
oob_stack.Push (current_local_parameters); |
|
oob_stack.Push (current_variable); |
|
oob_stack.Push (async_block); |
|
|
|
current_local_parameters = parameters; |
|
if (isLambda) { |
|
if (lang_version <= LanguageVersion.ISO_2) |
|
FeatureIsNotAvailable (loc, "lambda expressions"); |
|
|
|
current_anonymous_method = new LambdaExpression (loc); |
|
} else { |
|
if (lang_version == LanguageVersion.ISO_1) |
|
FeatureIsNotAvailable (loc, "anonymous methods"); |
|
|
|
current_anonymous_method = new AnonymousMethodExpression (loc); |
|
} |
|
current_anonymous_method.IsAsync = isAsync; |
|
|
|
async_block = isAsync; |
|
// Force the next block to be created as a ToplevelBlock |
|
parsing_anonymous_method = true; |
|
} |
|
|
|
/* |
|
* Completes the anonymous method processing, if lambda_expr is null, this |
|
* means that we have a Statement instead of an Expression embedded |
|
*/ |
|
AnonymousMethodExpression end_anonymous (ParametersBlock anon_block) |
|
{ |
|
AnonymousMethodExpression retval; |
|
|
|
if (async_block) |
|
anon_block.IsAsync = true; |
|
|
|
current_anonymous_method.Block = anon_block; |
|
retval = current_anonymous_method; |
|
|
|
async_block = (bool) oob_stack.Pop (); |
|
current_variable = (BlockVariableDeclaration) oob_stack.Pop (); |
|
current_local_parameters = (ParametersCompiled) oob_stack.Pop (); |
|
current_anonymous_method = (AnonymousMethodExpression) oob_stack.Pop (); |
|
|
|
return retval; |
|
} |
|
|
|
void Error_SyntaxError (int token) |
|
{ |
|
Error_SyntaxError (0, token); |
|
} |
|
|
|
void Error_SyntaxError (int error_code, int token) |
|
{ |
|
Error_SyntaxError (error_code, token, "Unexpected symbol"); |
|
} |
|
|
|
void Error_SyntaxError (int error_code, int token, string msg) |
|
{ |
|
Lexer.CompleteOnEOF = false; |
|
|
|
// An error message has been reported by tokenizer |
|
if (token == Token.ERROR) |
|
return; |
|
|
|
string symbol = GetSymbolName (token); |
|
string expecting = GetExpecting (); |
|
var loc = lexer.Location - symbol.Length; |
|
|
|
if (error_code == 0) { |
|
if (expecting == "`identifier'") { |
|
if (token > Token.FIRST_KEYWORD && token < Token.LAST_KEYWORD) { |
|
report.Error (1041, loc, "Identifier expected, `{0}' is a keyword", symbol); |
|
return; |
|
} |
|
|
|
error_code = 1001; |
|
expecting = "identifier"; |
|
} else if (expecting == "`)'") { |
|
error_code = 1026; |
|
} else { |
|
error_code = 1525; |
|
} |
|
} |
|
|
|
if (string.IsNullOrEmpty (expecting)) |
|
report.Error (error_code, loc, "{1} `{0}'", symbol, msg); |
|
else |
|
report.Error (error_code, loc, "{2} `{0}', expecting {1}", symbol, expecting, msg); |
|
} |
|
|
|
string GetExpecting () |
|
{ |
|
int [] tokens = yyExpectingTokens (yyExpectingState); |
|
var names = new List<string> (tokens.Length); |
|
bool has_type = false; |
|
bool has_identifier = false; |
|
for (int i = 0; i < tokens.Length; i++){ |
|
int token = tokens [i]; |
|
has_identifier |= token == Token.IDENTIFIER; |
|
|
|
string name = GetTokenName (token); |
|
if (name == "<internal>") |
|
continue; |
|
|
|
has_type |= name == "type"; |
|
if (names.Contains (name)) |
|
continue; |
|
|
|
names.Add (name); |
|
} |
|
|
|
// |
|
// Too many tokens to enumerate |
|
// |
|
if (names.Count > 8) |
|
return null; |
|
|
|
if (has_type && has_identifier) |
|
names.Remove ("identifier"); |
|
|
|
if (names.Count == 1) |
|
return "`" + GetTokenName (tokens [0]) + "'"; |
|
|
|
StringBuilder sb = new StringBuilder (); |
|
names.Sort (); |
|
int count = names.Count; |
|
for (int i = 0; i < count; i++){ |
|
bool last = i + 1 == count; |
|
if (last) |
|
sb.Append ("or "); |
|
sb.Append ('`'); |
|
sb.Append (names [i]); |
|
sb.Append (last ? "'" : count < 3 ? "' " : "', "); |
|
} |
|
return sb.ToString (); |
|
} |
|
|
|
|
|
string GetSymbolName (int token) |
|
{ |
|
switch (token){ |
|
case Token.LITERAL: |
|
return ((Constant)lexer.Value).GetValue ().ToString (); |
|
case Token.IDENTIFIER: |
|
return ((Tokenizer.LocatedToken)lexer.Value).Value; |
|
|
|
case Token.BOOL: |
|
return "bool"; |
|
case Token.BYTE: |
|
return "byte"; |
|
case Token.CHAR: |
|
return "char"; |
|
case Token.VOID: |
|
return "void"; |
|
case Token.DECIMAL: |
|
return "decimal"; |
|
case Token.DOUBLE: |
|
return "double"; |
|
case Token.FLOAT: |
|
return "float"; |
|
case Token.INT: |
|
return "int"; |
|
case Token.LONG: |
|
return "long"; |
|
case Token.SBYTE: |
|
return "sbyte"; |
|
case Token.SHORT: |
|
return "short"; |
|
case Token.STRING: |
|
return "string"; |
|
case Token.UINT: |
|
return "uint"; |
|
case Token.ULONG: |
|
return "ulong"; |
|
case Token.USHORT: |
|
return "ushort"; |
|
case Token.OBJECT: |
|
return "object"; |
|
|
|
case Token.PLUS: |
|
return "+"; |
|
case Token.UMINUS: |
|
case Token.MINUS: |
|
return "-"; |
|
case Token.BANG: |
|
return "!"; |
|
case Token.BITWISE_AND: |
|
return "&"; |
|
case Token.BITWISE_OR: |
|
return "|"; |
|
case Token.STAR: |
|
return "*"; |
|
case Token.PERCENT: |
|
return "%"; |
|
case Token.DIV: |
|
return "/"; |
|
case Token.CARRET: |
|
return "^"; |
|
case Token.OP_INC: |
|
return "++"; |
|
case Token.OP_DEC: |
|
return "--"; |
|
case Token.OP_SHIFT_LEFT: |
|
return "<<"; |
|
case Token.OP_SHIFT_RIGHT: |
|
return ">>"; |
|
case Token.OP_LT: |
|
return "<"; |
|
case Token.OP_GT: |
|
return ">"; |
|
case Token.OP_LE: |
|
return "<="; |
|
case Token.OP_GE: |
|
return ">="; |
|
case Token.OP_EQ: |
|
return "=="; |
|
case Token.OP_NE: |
|
return "!="; |
|
case Token.OP_AND: |
|
return "&&"; |
|
case Token.OP_OR: |
|
return "||"; |
|
case Token.OP_PTR: |
|
return "->"; |
|
case Token.OP_COALESCING: |
|
return "??"; |
|
case Token.OP_MULT_ASSIGN: |
|
return "*="; |
|
case Token.OP_DIV_ASSIGN: |
|
return "/="; |
|
case Token.OP_MOD_ASSIGN: |
|
return "%="; |
|
case Token.OP_ADD_ASSIGN: |
|
return "+="; |
|
case Token.OP_SUB_ASSIGN: |
|
return "-="; |
|
case Token.OP_SHIFT_LEFT_ASSIGN: |
|
return "<<="; |
|
case Token.OP_SHIFT_RIGHT_ASSIGN: |
|
return ">>="; |
|
case Token.OP_AND_ASSIGN: |
|
return "&="; |
|
case Token.OP_XOR_ASSIGN: |
|
return "^="; |
|
case Token.OP_OR_ASSIGN: |
|
return "|="; |
|
} |
|
|
|
return GetTokenName (token); |
|
} |
|
|
|
static string GetTokenName (int token) |
|
{ |
|
switch (token){ |
|
case Token.ABSTRACT: |
|
return "abstract"; |
|
case Token.AS: |
|
return "as"; |
|
case Token.ADD: |
|
return "add"; |
|
case Token.ASYNC: |
|
return "async"; |
|
case Token.BASE: |
|
return "base"; |
|
case Token.BREAK: |
|
return "break"; |
|
case Token.CASE: |
|
return "case"; |
|
case Token.CATCH: |
|
return "catch"; |
|
case Token.CHECKED: |
|
return "checked"; |
|
case Token.CLASS: |
|
return "class"; |
|
case Token.CONST: |
|
return "const"; |
|
case Token.CONTINUE: |
|
return "continue"; |
|
case Token.DEFAULT: |
|
return "default"; |
|
case Token.DELEGATE: |
|
return "delegate"; |
|
case Token.DO: |
|
return "do"; |
|
case Token.ELSE: |
|
return "else"; |
|
case Token.ENUM: |
|
return "enum"; |
|
case Token.EVENT: |
|
return "event"; |
|
case Token.EXPLICIT: |
|
return "explicit"; |
|
case Token.EXTERN: |
|
case Token.EXTERN_ALIAS: |
|
return "extern"; |
|
case Token.FALSE: |
|
return "false"; |
|
case Token.FINALLY: |
|
return "finally"; |
|
case Token.FIXED: |
|
return "fixed"; |
|
case Token.FOR: |
|
return "for"; |
|
case Token.FOREACH: |
|
return "foreach"; |
|
case Token.GOTO: |
|
return "goto"; |
|
case Token.IF: |
|
return "if"; |
|
case Token.IMPLICIT: |
|
return "implicit"; |
|
case Token.IN: |
|
return "in"; |
|
case Token.INTERFACE: |
|
return "interface"; |
|
case Token.INTERNAL: |
|
return "internal"; |
|
case Token.IS: |
|
return "is"; |
|
case Token.LOCK: |
|
return "lock"; |
|
case Token.NAMESPACE: |
|
return "namespace"; |
|
case Token.NEW: |
|
return "new"; |
|
case Token.NULL: |
|
return "null"; |
|
case Token.OPERATOR: |
|
return "operator"; |
|
case Token.OUT: |
|
return "out"; |
|
case Token.OVERRIDE: |
|
return "override"; |
|
case Token.PARAMS: |
|
return "params"; |
|
case Token.PRIVATE: |
|
return "private"; |
|
case Token.PROTECTED: |
|
return "protected"; |
|
case Token.PUBLIC: |
|
return "public"; |
|
case Token.READONLY: |
|
return "readonly"; |
|
case Token.REF: |
|
return "ref"; |
|
case Token.RETURN: |
|
return "return"; |
|
case Token.REMOVE: |
|
return "remove"; |
|
case Token.SEALED: |
|
return "sealed"; |
|
case Token.SIZEOF: |
|
return "sizeof"; |
|
case Token.STACKALLOC: |
|
return "stackalloc"; |
|
case Token.STATIC: |
|
return "static"; |
|
case Token.STRUCT: |
|
return "struct"; |
|
case Token.SWITCH: |
|
return "switch"; |
|
case Token.THIS: |
|
return "this"; |
|
case Token.THROW: |
|
return "throw"; |
|
case Token.TRUE: |
|
return "true"; |
|
case Token.TRY: |
|
return "try"; |
|
case Token.TYPEOF: |
|
return "typeof"; |
|
case Token.UNCHECKED: |
|
return "unchecked"; |
|
case Token.UNSAFE: |
|
return "unsafe"; |
|
case Token.USING: |
|
return "using"; |
|
case Token.VIRTUAL: |
|
return "virtual"; |
|
case Token.VOLATILE: |
|
return "volatile"; |
|
case Token.WHERE: |
|
return "where"; |
|
case Token.WHILE: |
|
return "while"; |
|
case Token.ARGLIST: |
|
return "__arglist"; |
|
case Token.REFVALUE: |
|
return "__refvalue"; |
|
case Token.REFTYPE: |
|
return "__reftype"; |
|
case Token.MAKEREF: |
|
return "__makeref"; |
|
case Token.PARTIAL: |
|
return "partial"; |
|
case Token.ARROW: |
|
return "=>"; |
|
case Token.FROM: |
|
case Token.FROM_FIRST: |
|
return "from"; |
|
case Token.JOIN: |
|
return "join"; |
|
case Token.ON: |
|
return "on"; |
|
case Token.EQUALS: |
|
return "equals"; |
|
case Token.SELECT: |
|
return "select"; |
|
case Token.GROUP: |
|
return "group"; |
|
case Token.BY: |
|
return "by"; |
|
case Token.LET: |
|
return "let"; |
|
case Token.ORDERBY: |
|
return "orderby"; |
|
case Token.ASCENDING: |
|
return "ascending"; |
|
case Token.DESCENDING: |
|
return "descending"; |
|
case Token.INTO: |
|
return "into"; |
|
case Token.GET: |
|
return "get"; |
|
case Token.SET: |
|
return "set"; |
|
case Token.OPEN_BRACE: |
|
return "{"; |
|
case Token.CLOSE_BRACE: |
|
return "}"; |
|
case Token.OPEN_BRACKET: |
|
case Token.OPEN_BRACKET_EXPR: |
|
return "["; |
|
case Token.CLOSE_BRACKET: |
|
return "]"; |
|
case Token.OPEN_PARENS_CAST: |
|
case Token.OPEN_PARENS_LAMBDA: |
|
case Token.OPEN_PARENS: |
|
return "("; |
|
case Token.CLOSE_PARENS: |
|
return ")"; |
|
case Token.DOT: |
|
return "."; |
|
case Token.COMMA: |
|
return ","; |
|
case Token.DEFAULT_COLON: |
|
return "default:"; |
|
case Token.COLON: |
|
return ":"; |
|
case Token.SEMICOLON: |
|
return ";"; |
|
case Token.TILDE: |
|
return "~"; |
|
|
|
case Token.PLUS: |
|
case Token.UMINUS: |
|
case Token.MINUS: |
|
case Token.BANG: |
|
case Token.OP_LT: |
|
case Token.OP_GT: |
|
case Token.BITWISE_AND: |
|
case Token.BITWISE_OR: |
|
case Token.STAR: |
|
case Token.PERCENT: |
|
case Token.DIV: |
|
case Token.CARRET: |
|
case Token.OP_INC: |
|
case Token.OP_DEC: |
|
case Token.OP_SHIFT_LEFT: |
|
case Token.OP_SHIFT_RIGHT: |
|
case Token.OP_LE: |
|
case Token.OP_GE: |
|
case Token.OP_EQ: |
|
case Token.OP_NE: |
|
case Token.OP_AND: |
|
case Token.OP_OR: |
|
case Token.OP_PTR: |
|
case Token.OP_COALESCING: |
|
case Token.OP_MULT_ASSIGN: |
|
case Token.OP_DIV_ASSIGN: |
|
case Token.OP_MOD_ASSIGN: |
|
case Token.OP_ADD_ASSIGN: |
|
case Token.OP_SUB_ASSIGN: |
|
case Token.OP_SHIFT_LEFT_ASSIGN: |
|
case Token.OP_SHIFT_RIGHT_ASSIGN: |
|
case Token.OP_AND_ASSIGN: |
|
case Token.OP_XOR_ASSIGN: |
|
case Token.OP_OR_ASSIGN: |
|
return "<operator>"; |
|
|
|
case Token.BOOL: |
|
case Token.BYTE: |
|
case Token.CHAR: |
|
case Token.VOID: |
|
case Token.DECIMAL: |
|
case Token.DOUBLE: |
|
case Token.FLOAT: |
|
case Token.INT: |
|
case Token.LONG: |
|
case Token.SBYTE: |
|
case Token.SHORT: |
|
case Token.STRING: |
|
case Token.UINT: |
|
case Token.ULONG: |
|
case Token.USHORT: |
|
case Token.OBJECT: |
|
return "type"; |
|
|
|
case Token.ASSIGN: |
|
return "="; |
|
case Token.OP_GENERICS_LT: |
|
case Token.GENERIC_DIMENSION: |
|
return "<"; |
|
case Token.OP_GENERICS_GT: |
|
return ">"; |
|
case Token.INTERR: |
|
case Token.INTERR_NULLABLE: |
|
return "?"; |
|
case Token.DOUBLE_COLON: |
|
return "::"; |
|
case Token.LITERAL: |
|
return "value"; |
|
case Token.IDENTIFIER: |
|
case Token.AWAIT: |
|
return "identifier"; |
|
|
|
case Token.EOF: |
|
return "end-of-file"; |
|
|
|
// All of these are internal. |
|
case Token.NONE: |
|
case Token.ERROR: |
|
case Token.FIRST_KEYWORD: |
|
case Token.EVAL_COMPILATION_UNIT_PARSER: |
|
case Token.EVAL_USING_DECLARATIONS_UNIT_PARSER: |
|
case Token.EVAL_STATEMENT_PARSER: |
|
case Token.LAST_KEYWORD: |
|
case Token.GENERATE_COMPLETION: |
|
case Token.COMPLETE_COMPLETION: |
|
return "<internal>"; |
|
|
|
// A bit more robust. |
|
default: |
|
return yyNames [token]; |
|
} |
|
} |
|
|
|
/* end end end */ |
|
} |
|
#line default |
|
namespace yydebug { |
|
using System; |
|
internal interface yyDebug { |
|
void push (int state, Object value); |
|
void lex (int state, int token, string name, Object value); |
|
void shift (int from, int to, int errorFlag); |
|
void pop (int state); |
|
void discard (int state, int token, string name, Object value); |
|
void reduce (int from, int to, int rule, string text, int len); |
|
void shift (int from, int to); |
|
void accept (Object value); |
|
void error (string message); |
|
void reject (); |
|
} |
|
|
|
class yyDebugSimple : yyDebug { |
|
void println (string s){ |
|
Console.Error.WriteLine (s); |
|
} |
|
|
|
public void push (int state, Object value) { |
|
println ("push\tstate "+state+"\tvalue "+value); |
|
} |
|
|
|
public void lex (int state, int token, string name, Object value) { |
|
println("lex\tstate "+state+"\treading "+name+"\tvalue "+value); |
|
} |
|
|
|
public void shift (int from, int to, int errorFlag) { |
|
switch (errorFlag) { |
|
default: // normally |
|
println("shift\tfrom state "+from+" to "+to); |
|
break; |
|
case 0: case 1: case 2: // in error recovery |
|
println("shift\tfrom state "+from+" to "+to |
|
+"\t"+errorFlag+" left to recover"); |
|
break; |
|
case 3: // normally |
|
println("shift\tfrom state "+from+" to "+to+"\ton error"); |
|
break; |
|
} |
|
} |
|
|
|
public void pop (int state) { |
|
println("pop\tstate "+state+"\ton error"); |
|
} |
|
|
|
public void discard (int state, int token, string name, Object value) { |
|
println("discard\tstate "+state+"\ttoken "+name+"\tvalue "+value); |
|
} |
|
|
|
public void reduce (int from, int to, int rule, string text, int len) { |
|
println("reduce\tstate "+from+"\tuncover "+to |
|
+"\trule ("+rule+") "+text); |
|
} |
|
|
|
public void shift (int from, int to) { |
|
println("goto\tfrom state "+from+" to "+to); |
|
} |
|
|
|
public void accept (Object value) { |
|
println("accept\tvalue "+value); |
|
} |
|
|
|
public void error (string message) { |
|
println("error\t"+message); |
|
} |
|
|
|
public void reject () { |
|
println("reject"); |
|
} |
|
|
|
} |
|
} |
|
// %token constants |
|
class Token { |
|
public const int EOF = 257; |
|
public const int NONE = 258; |
|
public const int ERROR = 259; |
|
public const int FIRST_KEYWORD = 260; |
|
public const int ABSTRACT = 261; |
|
public const int AS = 262; |
|
public const int ADD = 263; |
|
public const int BASE = 264; |
|
public const int BOOL = 265; |
|
public const int BREAK = 266; |
|
public const int BYTE = 267; |
|
public const int CASE = 268; |
|
public const int CATCH = 269; |
|
public const int CHAR = 270; |
|
public const int CHECKED = 271; |
|
public const int CLASS = 272; |
|
public const int CONST = 273; |
|
public const int CONTINUE = 274; |
|
public const int DECIMAL = 275; |
|
public const int DEFAULT = 276; |
|
public const int DELEGATE = 277; |
|
public const int DO = 278; |
|
public const int DOUBLE = 279; |
|
public const int ELSE = 280; |
|
public const int ENUM = 281; |
|
public const int EVENT = 282; |
|
public const int EXPLICIT = 283; |
|
public const int EXTERN = 284; |
|
public const int FALSE = 285; |
|
public const int FINALLY = 286; |
|
public const int FIXED = 287; |
|
public const int FLOAT = 288; |
|
public const int FOR = 289; |
|
public const int FOREACH = 290; |
|
public const int GOTO = 291; |
|
public const int IF = 292; |
|
public const int IMPLICIT = 293; |
|
public const int IN = 294; |
|
public const int INT = 295; |
|
public const int INTERFACE = 296; |
|
public const int INTERNAL = 297; |
|
public const int IS = 298; |
|
public const int LOCK = 299; |
|
public const int LONG = 300; |
|
public const int NAMESPACE = 301; |
|
public const int NEW = 302; |
|
public const int NULL = 303; |
|
public const int OBJECT = 304; |
|
public const int OPERATOR = 305; |
|
public const int OUT = 306; |
|
public const int OVERRIDE = 307; |
|
public const int PARAMS = 308; |
|
public const int PRIVATE = 309; |
|
public const int PROTECTED = 310; |
|
public const int PUBLIC = 311; |
|
public const int READONLY = 312; |
|
public const int REF = 313; |
|
public const int RETURN = 314; |
|
public const int REMOVE = 315; |
|
public const int SBYTE = 316; |
|
public const int SEALED = 317; |
|
public const int SHORT = 318; |
|
public const int SIZEOF = 319; |
|
public const int STACKALLOC = 320; |
|
public const int STATIC = 321; |
|
public const int STRING = 322; |
|
public const int STRUCT = 323; |
|
public const int SWITCH = 324; |
|
public const int THIS = 325; |
|
public const int THROW = 326; |
|
public const int TRUE = 327; |
|
public const int TRY = 328; |
|
public const int TYPEOF = 329; |
|
public const int UINT = 330; |
|
public const int ULONG = 331; |
|
public const int UNCHECKED = 332; |
|
public const int UNSAFE = 333; |
|
public const int USHORT = 334; |
|
public const int USING = 335; |
|
public const int VIRTUAL = 336; |
|
public const int VOID = 337; |
|
public const int VOLATILE = 338; |
|
public const int WHERE = 339; |
|
public const int WHILE = 340; |
|
public const int ARGLIST = 341; |
|
public const int PARTIAL = 342; |
|
public const int ARROW = 343; |
|
public const int FROM = 344; |
|
public const int FROM_FIRST = 345; |
|
public const int JOIN = 346; |
|
public const int ON = 347; |
|
public const int EQUALS = 348; |
|
public const int SELECT = 349; |
|
public const int GROUP = 350; |
|
public const int BY = 351; |
|
public const int LET = 352; |
|
public const int ORDERBY = 353; |
|
public const int ASCENDING = 354; |
|
public const int DESCENDING = 355; |
|
public const int INTO = 356; |
|
public const int INTERR_NULLABLE = 357; |
|
public const int EXTERN_ALIAS = 358; |
|
public const int REFVALUE = 359; |
|
public const int REFTYPE = 360; |
|
public const int MAKEREF = 361; |
|
public const int ASYNC = 362; |
|
public const int AWAIT = 363; |
|
public const int GET = 364; |
|
public const int SET = 365; |
|
public const int LAST_KEYWORD = 366; |
|
public const int OPEN_BRACE = 367; |
|
public const int CLOSE_BRACE = 368; |
|
public const int OPEN_BRACKET = 369; |
|
public const int CLOSE_BRACKET = 370; |
|
public const int OPEN_PARENS = 371; |
|
public const int CLOSE_PARENS = 372; |
|
public const int DOT = 373; |
|
public const int COMMA = 374; |
|
public const int COLON = 375; |
|
public const int SEMICOLON = 376; |
|
public const int TILDE = 377; |
|
public const int PLUS = 378; |
|
public const int MINUS = 379; |
|
public const int BANG = 380; |
|
public const int ASSIGN = 381; |
|
public const int OP_LT = 382; |
|
public const int OP_GT = 383; |
|
public const int BITWISE_AND = 384; |
|
public const int BITWISE_OR = 385; |
|
public const int STAR = 386; |
|
public const int PERCENT = 387; |
|
public const int DIV = 388; |
|
public const int CARRET = 389; |
|
public const int INTERR = 390; |
|
public const int DOUBLE_COLON = 391; |
|
public const int OP_INC = 392; |
|
public const int OP_DEC = 393; |
|
public const int OP_SHIFT_LEFT = 394; |
|
public const int OP_SHIFT_RIGHT = 395; |
|
public const int OP_LE = 396; |
|
public const int OP_GE = 397; |
|
public const int OP_EQ = 398; |
|
public const int OP_NE = 399; |
|
public const int OP_AND = 400; |
|
public const int OP_OR = 401; |
|
public const int OP_MULT_ASSIGN = 402; |
|
public const int OP_DIV_ASSIGN = 403; |
|
public const int OP_MOD_ASSIGN = 404; |
|
public const int OP_ADD_ASSIGN = 405; |
|
public const int OP_SUB_ASSIGN = 406; |
|
public const int OP_SHIFT_LEFT_ASSIGN = 407; |
|
public const int OP_SHIFT_RIGHT_ASSIGN = 408; |
|
public const int OP_AND_ASSIGN = 409; |
|
public const int OP_XOR_ASSIGN = 410; |
|
public const int OP_OR_ASSIGN = 411; |
|
public const int OP_PTR = 412; |
|
public const int OP_COALESCING = 413; |
|
public const int OP_GENERICS_LT = 414; |
|
public const int OP_GENERICS_LT_DECL = 415; |
|
public const int OP_GENERICS_GT = 416; |
|
public const int LITERAL = 417; |
|
public const int IDENTIFIER = 418; |
|
public const int OPEN_PARENS_LAMBDA = 419; |
|
public const int OPEN_PARENS_CAST = 420; |
|
public const int GENERIC_DIMENSION = 421; |
|
public const int DEFAULT_COLON = 422; |
|
public const int OPEN_BRACKET_EXPR = 423; |
|
public const int EVAL_STATEMENT_PARSER = 424; |
|
public const int EVAL_COMPILATION_UNIT_PARSER = 425; |
|
public const int EVAL_USING_DECLARATIONS_UNIT_PARSER = 426; |
|
public const int DOC_SEE = 427; |
|
public const int GENERATE_COMPLETION = 428; |
|
public const int COMPLETE_COMPLETION = 429; |
|
public const int UMINUS = 430; |
|
public const int yyErrorCode = 256; |
|
} |
|
namespace yyParser { |
|
using System; |
|
/** thrown for irrecoverable syntax errors and stack overflow. |
|
*/ |
|
internal class yyException : System.Exception { |
|
public yyException (string message) : base (message) { |
|
} |
|
} |
|
internal class yyUnexpectedEof : yyException { |
|
public yyUnexpectedEof (string message) : base (message) { |
|
} |
|
public yyUnexpectedEof () : base ("") { |
|
} |
|
} |
|
|
|
/** must be implemented by a scanner object to supply input to the parser. |
|
*/ |
|
internal interface yyInput { |
|
/** move on to next token. |
|
@return false if positioned beyond tokens. |
|
@throws IOException on input error. |
|
*/ |
|
bool advance (); // throws java.io.IOException; |
|
/** classifies current token. |
|
Should not be called if advance() returned false. |
|
@return current %token or single character. |
|
*/ |
|
int token (); |
|
/** associated with current token. |
|
Should not be called if advance() returned false. |
|
@return value for token(). |
|
*/ |
|
Object value (); |
|
} |
|
} |
|
} // close outermost namespace, that MUST HAVE BEEN opened in the prolog
|
|
|