#line 1 "VBNET.ATG" using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using ICSharpCode.NRefactory.Ast; using ICSharpCode.NRefactory.Parser.VB; using ASTAttribute = ICSharpCode.NRefactory.Ast.Attribute; /* Parser.frame file for NRefactory. */ using System; using System.Reflection; namespace ICSharpCode.NRefactory.Parser.VB { partial class Parser : AbstractParser { const int maxT = 205; const bool T = true; const bool x = false; #line 12 "VBNET.ATG" /* */ void VBNET() { #line 230 "VBNET.ATG" lexer.NextToken(); // get the first token compilationUnit = new CompilationUnit(); while (la.kind == 1) { lexer.NextToken(); } while (la.kind == 136) { OptionStmt(); } while (la.kind == 108) { ImportsStmt(); } while ( #line 236 "VBNET.ATG" IsGlobalAttrTarget()) { GlobalAttributeSection(); } while (StartOf(1)) { NamespaceMemberDecl(); } Expect(0); } void OptionStmt() { #line 241 "VBNET.ATG" INode node = null; bool val = true; Expect(136); #line 242 "VBNET.ATG" Location startPos = t.Location; if (la.kind == 95) { lexer.NextToken(); if (la.kind == 134 || la.kind == 135) { OptionValue( #line 244 "VBNET.ATG" ref val); } #line 245 "VBNET.ATG" node = new OptionDeclaration(OptionType.Explicit, val); } else if (la.kind == 164) { lexer.NextToken(); if (la.kind == 134 || la.kind == 135) { OptionValue( #line 247 "VBNET.ATG" ref val); } #line 248 "VBNET.ATG" node = new OptionDeclaration(OptionType.Strict, val); } else if (la.kind == 70) { lexer.NextToken(); if (la.kind == 51) { lexer.NextToken(); #line 250 "VBNET.ATG" node = new OptionDeclaration(OptionType.CompareBinary, val); } else if (la.kind == 169) { lexer.NextToken(); #line 251 "VBNET.ATG" node = new OptionDeclaration(OptionType.CompareText, val); } else SynErr(206); } else SynErr(207); EndOfStmt(); #line 256 "VBNET.ATG" if (node != null) { node.StartLocation = startPos; node.EndLocation = t.Location; compilationUnit.AddChild(node); } } void ImportsStmt() { #line 279 "VBNET.ATG" List usings = new List(); Expect(108); #line 283 "VBNET.ATG" Location startPos = t.Location; Using u; ImportClause( #line 286 "VBNET.ATG" out u); #line 286 "VBNET.ATG" if (u != null) { usings.Add(u); } while (la.kind == 12) { lexer.NextToken(); ImportClause( #line 288 "VBNET.ATG" out u); #line 288 "VBNET.ATG" if (u != null) { usings.Add(u); } } EndOfStmt(); #line 292 "VBNET.ATG" UsingDeclaration usingDeclaration = new UsingDeclaration(usings); usingDeclaration.StartLocation = startPos; usingDeclaration.EndLocation = t.Location; compilationUnit.AddChild(usingDeclaration); } void GlobalAttributeSection() { #line 2029 "VBNET.ATG" Location startPos = t.Location; Expect(27); if (la.kind == 49) { lexer.NextToken(); } else if (la.kind == 121) { lexer.NextToken(); } else SynErr(208); #line 2031 "VBNET.ATG" string attributeTarget = t.val.ToLower(System.Globalization.CultureInfo.InvariantCulture); List attributes = new List(); ASTAttribute attribute; Expect(13); Attribute( #line 2035 "VBNET.ATG" out attribute); #line 2035 "VBNET.ATG" attributes.Add(attribute); while ( #line 2036 "VBNET.ATG" NotFinalComma()) { if (la.kind == 12) { lexer.NextToken(); if (la.kind == 49) { lexer.NextToken(); } else if (la.kind == 121) { lexer.NextToken(); } else SynErr(209); Expect(13); } Attribute( #line 2036 "VBNET.ATG" out attribute); #line 2036 "VBNET.ATG" attributes.Add(attribute); } if (la.kind == 12) { lexer.NextToken(); } Expect(26); EndOfStmt(); #line 2041 "VBNET.ATG" AttributeSection section = new AttributeSection(attributeTarget, attributes); section.StartLocation = startPos; section.EndLocation = t.EndLocation; compilationUnit.AddChild(section); } void NamespaceMemberDecl() { #line 321 "VBNET.ATG" ModifierList m = new ModifierList(); AttributeSection section; List attributes = new List(); string qualident; if (la.kind == 126) { lexer.NextToken(); #line 328 "VBNET.ATG" Location startPos = t.Location; Qualident( #line 330 "VBNET.ATG" out qualident); #line 332 "VBNET.ATG" INode node = new NamespaceDeclaration(qualident); node.StartLocation = startPos; compilationUnit.AddChild(node); compilationUnit.BlockStart(node); Expect(1); NamespaceBody(); #line 340 "VBNET.ATG" node.EndLocation = t.Location; compilationUnit.BlockEnd(); } else if (StartOf(2)) { while (la.kind == 27) { AttributeSection( #line 344 "VBNET.ATG" out section); #line 344 "VBNET.ATG" attributes.Add(section); } while (StartOf(3)) { TypeModifier( #line 345 "VBNET.ATG" m); } NonModuleDeclaration( #line 345 "VBNET.ATG" m, attributes); } else SynErr(210); } void OptionValue( #line 264 "VBNET.ATG" ref bool val) { if (la.kind == 135) { lexer.NextToken(); #line 266 "VBNET.ATG" val = true; } else if (la.kind == 134) { lexer.NextToken(); #line 268 "VBNET.ATG" val = false; } else SynErr(211); } void EndOfStmt() { if (la.kind == 1) { lexer.NextToken(); } else if (la.kind == 13) { lexer.NextToken(); if (la.kind == 1) { lexer.NextToken(); } } else SynErr(212); } void ImportClause( #line 299 "VBNET.ATG" out Using u) { #line 301 "VBNET.ATG" string qualident = null; TypeReference aliasedType = null; u = null; Qualident( #line 305 "VBNET.ATG" out qualident); if (la.kind == 11) { lexer.NextToken(); TypeName( #line 306 "VBNET.ATG" out aliasedType); } #line 308 "VBNET.ATG" if (qualident != null && qualident.Length > 0) { if (aliasedType != null) { u = new Using(qualident, aliasedType); } else { u = new Using(qualident); } } } void Qualident( #line 2757 "VBNET.ATG" out string qualident) { #line 2759 "VBNET.ATG" string name; qualidentBuilder.Length = 0; Identifier(); #line 2763 "VBNET.ATG" qualidentBuilder.Append(t.val); while ( #line 2764 "VBNET.ATG" DotAndIdentOrKw()) { Expect(10); IdentifierOrKeyword( #line 2764 "VBNET.ATG" out name); #line 2764 "VBNET.ATG" qualidentBuilder.Append('.'); qualidentBuilder.Append(name); } #line 2766 "VBNET.ATG" qualident = qualidentBuilder.ToString(); } void TypeName( #line 1922 "VBNET.ATG" out TypeReference typeref) { #line 1923 "VBNET.ATG" ArrayList rank = null; NonArrayTypeName( #line 1925 "VBNET.ATG" out typeref, false); ArrayTypeModifiers( #line 1926 "VBNET.ATG" out rank); #line 1927 "VBNET.ATG" if (rank != null && typeref != null) { typeref.RankSpecifier = (int[])rank.ToArray(typeof(int)); } } void NamespaceBody() { while (StartOf(1)) { NamespaceMemberDecl(); } Expect(88); Expect(126); Expect(1); } void AttributeSection( #line 2099 "VBNET.ATG" out AttributeSection section) { #line 2101 "VBNET.ATG" string attributeTarget = "";List attributes = new List(); ASTAttribute attribute; Expect(27); #line 2105 "VBNET.ATG" Location startPos = t.Location; if ( #line 2106 "VBNET.ATG" IsLocalAttrTarget()) { if (la.kind == 93) { lexer.NextToken(); #line 2107 "VBNET.ATG" attributeTarget = "event"; } else if (la.kind == 154) { lexer.NextToken(); #line 2108 "VBNET.ATG" attributeTarget = "return"; } else { Identifier(); #line 2111 "VBNET.ATG" string val = t.val.ToLower(System.Globalization.CultureInfo.InvariantCulture); if (val != "field" || val != "method" || val != "module" || val != "param" || val != "property" || val != "type") Error("attribute target specifier (event, return, field," + "method, module, param, property, or type) expected"); attributeTarget = t.val; } Expect(13); } Attribute( #line 2121 "VBNET.ATG" out attribute); #line 2121 "VBNET.ATG" attributes.Add(attribute); while ( #line 2122 "VBNET.ATG" NotFinalComma()) { Expect(12); Attribute( #line 2122 "VBNET.ATG" out attribute); #line 2122 "VBNET.ATG" attributes.Add(attribute); } if (la.kind == 12) { lexer.NextToken(); } Expect(26); #line 2126 "VBNET.ATG" section = new AttributeSection(attributeTarget, attributes); section.StartLocation = startPos; section.EndLocation = t.EndLocation; } void TypeModifier( #line 2833 "VBNET.ATG" ModifierList m) { switch (la.kind) { case 148: { lexer.NextToken(); #line 2834 "VBNET.ATG" m.Add(Modifiers.Public, t.Location); break; } case 147: { lexer.NextToken(); #line 2835 "VBNET.ATG" m.Add(Modifiers.Protected, t.Location); break; } case 99: { lexer.NextToken(); #line 2836 "VBNET.ATG" m.Add(Modifiers.Internal, t.Location); break; } case 145: { lexer.NextToken(); #line 2837 "VBNET.ATG" m.Add(Modifiers.Private, t.Location); break; } case 158: { lexer.NextToken(); #line 2838 "VBNET.ATG" m.Add(Modifiers.Static, t.Location); break; } case 157: { lexer.NextToken(); #line 2839 "VBNET.ATG" m.Add(Modifiers.New, t.Location); break; } case 122: { lexer.NextToken(); #line 2840 "VBNET.ATG" m.Add(Modifiers.Abstract, t.Location); break; } case 131: { lexer.NextToken(); #line 2841 "VBNET.ATG" m.Add(Modifiers.Sealed, t.Location); break; } case 203: { lexer.NextToken(); #line 2842 "VBNET.ATG" m.Add(Modifiers.Partial, t.Location); break; } default: SynErr(213); break; } } void NonModuleDeclaration( #line 404 "VBNET.ATG" ModifierList m, List attributes) { #line 406 "VBNET.ATG" TypeReference typeRef = null; List baseInterfaces = null; switch (la.kind) { case 67: { #line 409 "VBNET.ATG" m.Check(Modifiers.Classes); lexer.NextToken(); #line 412 "VBNET.ATG" TypeDeclaration newType = new TypeDeclaration(m.Modifier, attributes); newType.StartLocation = t.Location; compilationUnit.AddChild(newType); compilationUnit.BlockStart(newType); newType.Type = ClassType.Class; Identifier(); #line 419 "VBNET.ATG" newType.Name = t.val; TypeParameterList( #line 420 "VBNET.ATG" newType.Templates); EndOfStmt(); #line 422 "VBNET.ATG" newType.BodyStartLocation = t.Location; if (la.kind == 110) { ClassBaseType( #line 423 "VBNET.ATG" out typeRef); #line 423 "VBNET.ATG" newType.BaseTypes.Add(typeRef); } while (la.kind == 107) { TypeImplementsClause( #line 424 "VBNET.ATG" out baseInterfaces); #line 424 "VBNET.ATG" newType.BaseTypes.AddRange(baseInterfaces); } ClassBody( #line 425 "VBNET.ATG" newType); #line 427 "VBNET.ATG" compilationUnit.BlockEnd(); break; } case 121: { lexer.NextToken(); #line 431 "VBNET.ATG" m.Check(Modifiers.VBModules); TypeDeclaration newType = new TypeDeclaration(m.Modifier, attributes); compilationUnit.AddChild(newType); compilationUnit.BlockStart(newType); newType.StartLocation = m.GetDeclarationLocation(t.Location); newType.Type = ClassType.Module; Identifier(); #line 438 "VBNET.ATG" newType.Name = t.val; Expect(1); #line 440 "VBNET.ATG" newType.BodyStartLocation = t.Location; ModuleBody( #line 441 "VBNET.ATG" newType); #line 443 "VBNET.ATG" compilationUnit.BlockEnd(); break; } case 166: { lexer.NextToken(); #line 447 "VBNET.ATG" m.Check(Modifiers.VBStructures); TypeDeclaration newType = new TypeDeclaration(m.Modifier, attributes); compilationUnit.AddChild(newType); compilationUnit.BlockStart(newType); newType.StartLocation = m.GetDeclarationLocation(t.Location); newType.Type = ClassType.Struct; Identifier(); #line 454 "VBNET.ATG" newType.Name = t.val; TypeParameterList( #line 455 "VBNET.ATG" newType.Templates); Expect(1); #line 457 "VBNET.ATG" newType.BodyStartLocation = t.Location; while (la.kind == 107) { TypeImplementsClause( #line 458 "VBNET.ATG" out baseInterfaces); #line 458 "VBNET.ATG" newType.BaseTypes.AddRange(baseInterfaces); } StructureBody( #line 459 "VBNET.ATG" newType); #line 461 "VBNET.ATG" compilationUnit.BlockEnd(); break; } case 90: { lexer.NextToken(); #line 466 "VBNET.ATG" m.Check(Modifiers.VBEnums); TypeDeclaration newType = new TypeDeclaration(m.Modifier, attributes); newType.StartLocation = m.GetDeclarationLocation(t.Location); compilationUnit.AddChild(newType); compilationUnit.BlockStart(newType); newType.Type = ClassType.Enum; Identifier(); #line 474 "VBNET.ATG" newType.Name = t.val; if (la.kind == 48) { lexer.NextToken(); NonArrayTypeName( #line 475 "VBNET.ATG" out typeRef, false); #line 475 "VBNET.ATG" newType.BaseTypes.Add(typeRef); } Expect(1); #line 477 "VBNET.ATG" newType.BodyStartLocation = t.Location; EnumBody( #line 478 "VBNET.ATG" newType); #line 480 "VBNET.ATG" compilationUnit.BlockEnd(); break; } case 112: { lexer.NextToken(); #line 485 "VBNET.ATG" m.Check(Modifiers.VBInterfacs); TypeDeclaration newType = new TypeDeclaration(m.Modifier, attributes); newType.StartLocation = m.GetDeclarationLocation(t.Location); compilationUnit.AddChild(newType); compilationUnit.BlockStart(newType); newType.Type = ClassType.Interface; Identifier(); #line 492 "VBNET.ATG" newType.Name = t.val; TypeParameterList( #line 493 "VBNET.ATG" newType.Templates); EndOfStmt(); #line 495 "VBNET.ATG" newType.BodyStartLocation = t.Location; while (la.kind == 110) { InterfaceBase( #line 496 "VBNET.ATG" out baseInterfaces); #line 496 "VBNET.ATG" newType.BaseTypes.AddRange(baseInterfaces); } InterfaceBody( #line 497 "VBNET.ATG" newType); #line 499 "VBNET.ATG" compilationUnit.BlockEnd(); break; } case 80: { lexer.NextToken(); #line 504 "VBNET.ATG" m.Check(Modifiers.VBDelegates); DelegateDeclaration delegateDeclr = new DelegateDeclaration(m.Modifier, attributes); delegateDeclr.ReturnType = new TypeReference("", "System.Void"); delegateDeclr.StartLocation = m.GetDeclarationLocation(t.Location); List p = new List(); if (la.kind == 167) { lexer.NextToken(); Identifier(); #line 511 "VBNET.ATG" delegateDeclr.Name = t.val; TypeParameterList( #line 512 "VBNET.ATG" delegateDeclr.Templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 513 "VBNET.ATG" p); } Expect(25); #line 513 "VBNET.ATG" delegateDeclr.Parameters = p; } } else if (la.kind == 100) { lexer.NextToken(); Identifier(); #line 515 "VBNET.ATG" delegateDeclr.Name = t.val; TypeParameterList( #line 516 "VBNET.ATG" delegateDeclr.Templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 517 "VBNET.ATG" p); } Expect(25); #line 517 "VBNET.ATG" delegateDeclr.Parameters = p; } if (la.kind == 48) { lexer.NextToken(); #line 518 "VBNET.ATG" TypeReference type; TypeName( #line 518 "VBNET.ATG" out type); #line 518 "VBNET.ATG" delegateDeclr.ReturnType = type; } } else SynErr(214); #line 520 "VBNET.ATG" delegateDeclr.EndLocation = t.EndLocation; Expect(1); #line 523 "VBNET.ATG" compilationUnit.AddChild(delegateDeclr); break; } default: SynErr(215); break; } } void TypeParameterList( #line 349 "VBNET.ATG" List templates) { #line 351 "VBNET.ATG" TemplateDefinition template; if ( #line 354 "VBNET.ATG" la.kind == Tokens.OpenParenthesis && Peek(1).kind == Tokens.Of) { lexer.NextToken(); Expect(200); TypeParameter( #line 355 "VBNET.ATG" out template); #line 357 "VBNET.ATG" if (template != null) templates.Add(template); while (la.kind == 12) { lexer.NextToken(); TypeParameter( #line 360 "VBNET.ATG" out template); #line 362 "VBNET.ATG" if (template != null) templates.Add(template); } Expect(25); } } void TypeParameter( #line 370 "VBNET.ATG" out TemplateDefinition template) { Identifier(); #line 372 "VBNET.ATG" template = new TemplateDefinition(t.val, null); if (la.kind == 48) { TypeParameterConstraints( #line 373 "VBNET.ATG" template); } } void Identifier() { switch (la.kind) { case 2: { lexer.NextToken(); break; } case 169: { lexer.NextToken(); break; } case 51: { lexer.NextToken(); break; } case 70: { lexer.NextToken(); break; } case 204: { lexer.NextToken(); break; } case 49: { lexer.NextToken(); break; } case 47: { lexer.NextToken(); break; } case 50: { lexer.NextToken(); break; } case 144: { lexer.NextToken(); break; } case 176: { lexer.NextToken(); break; } case 177: { lexer.NextToken(); break; } default: SynErr(216); break; } } void TypeParameterConstraints( #line 377 "VBNET.ATG" TemplateDefinition template) { #line 379 "VBNET.ATG" TypeReference constraint; Expect(48); if (la.kind == 22) { lexer.NextToken(); TypeParameterConstraint( #line 385 "VBNET.ATG" out constraint); #line 385 "VBNET.ATG" if (constraint != null) { template.Bases.Add(constraint); } while (la.kind == 12) { lexer.NextToken(); TypeParameterConstraint( #line 388 "VBNET.ATG" out constraint); #line 388 "VBNET.ATG" if (constraint != null) { template.Bases.Add(constraint); } } Expect(23); } else if (StartOf(5)) { TypeParameterConstraint( #line 391 "VBNET.ATG" out constraint); #line 391 "VBNET.ATG" if (constraint != null) { template.Bases.Add(constraint); } } else SynErr(217); } void TypeParameterConstraint( #line 395 "VBNET.ATG" out TypeReference constraint) { #line 396 "VBNET.ATG" constraint = null; if (la.kind == 67) { lexer.NextToken(); #line 397 "VBNET.ATG" constraint = TypeReference.ClassConstraint; } else if (la.kind == 166) { lexer.NextToken(); #line 398 "VBNET.ATG" constraint = TypeReference.StructConstraint; } else if (la.kind == 127) { lexer.NextToken(); #line 399 "VBNET.ATG" constraint = TypeReference.NewConstraint; } else if (StartOf(6)) { TypeName( #line 400 "VBNET.ATG" out constraint); } else SynErr(218); } void ClassBaseType( #line 716 "VBNET.ATG" out TypeReference typeRef) { #line 718 "VBNET.ATG" typeRef = null; Expect(110); TypeName( #line 721 "VBNET.ATG" out typeRef); EndOfStmt(); } void TypeImplementsClause( #line 1494 "VBNET.ATG" out List baseInterfaces) { #line 1496 "VBNET.ATG" baseInterfaces = new List(); TypeReference type = null; Expect(107); TypeName( #line 1499 "VBNET.ATG" out type); #line 1501 "VBNET.ATG" baseInterfaces.Add(type); while (la.kind == 12) { lexer.NextToken(); TypeName( #line 1504 "VBNET.ATG" out type); #line 1505 "VBNET.ATG" baseInterfaces.Add(type); } EndOfStmt(); } void ClassBody( #line 533 "VBNET.ATG" TypeDeclaration newType) { #line 534 "VBNET.ATG" AttributeSection section; while (StartOf(7)) { #line 536 "VBNET.ATG" List attributes = new List(); ModifierList m = new ModifierList(); while (la.kind == 27) { AttributeSection( #line 539 "VBNET.ATG" out section); #line 539 "VBNET.ATG" attributes.Add(section); } while (StartOf(8)) { MemberModifier( #line 540 "VBNET.ATG" m); } ClassMemberDecl( #line 541 "VBNET.ATG" m, attributes); } Expect(88); Expect(67); #line 543 "VBNET.ATG" newType.EndLocation = t.EndLocation; Expect(1); } void ModuleBody( #line 562 "VBNET.ATG" TypeDeclaration newType) { #line 563 "VBNET.ATG" AttributeSection section; while (StartOf(7)) { #line 565 "VBNET.ATG" List attributes = new List(); ModifierList m = new ModifierList(); while (la.kind == 27) { AttributeSection( #line 568 "VBNET.ATG" out section); #line 568 "VBNET.ATG" attributes.Add(section); } while (StartOf(8)) { MemberModifier( #line 569 "VBNET.ATG" m); } ClassMemberDecl( #line 570 "VBNET.ATG" m, attributes); } Expect(88); Expect(121); #line 572 "VBNET.ATG" newType.EndLocation = t.EndLocation; Expect(1); } void StructureBody( #line 547 "VBNET.ATG" TypeDeclaration newType) { #line 548 "VBNET.ATG" AttributeSection section; while (StartOf(7)) { #line 550 "VBNET.ATG" List attributes = new List(); ModifierList m = new ModifierList(); while (la.kind == 27) { AttributeSection( #line 553 "VBNET.ATG" out section); #line 553 "VBNET.ATG" attributes.Add(section); } while (StartOf(8)) { MemberModifier( #line 554 "VBNET.ATG" m); } StructureMemberDecl( #line 555 "VBNET.ATG" m, attributes); } Expect(88); Expect(166); #line 557 "VBNET.ATG" newType.EndLocation = t.EndLocation; Expect(1); } void NonArrayTypeName( #line 1945 "VBNET.ATG" out TypeReference typeref, bool canBeUnbound) { #line 1947 "VBNET.ATG" string name; typeref = null; bool isGlobal = false; if (StartOf(9)) { if (la.kind == 198) { lexer.NextToken(); Expect(10); #line 1952 "VBNET.ATG" isGlobal = true; } QualIdentAndTypeArguments( #line 1953 "VBNET.ATG" out typeref, canBeUnbound); #line 1954 "VBNET.ATG" typeref.IsGlobal = isGlobal; while (la.kind == 10) { lexer.NextToken(); #line 1955 "VBNET.ATG" TypeReference nestedTypeRef; QualIdentAndTypeArguments( #line 1956 "VBNET.ATG" out nestedTypeRef, canBeUnbound); #line 1957 "VBNET.ATG" typeref = new InnerClassTypeReference(typeref, nestedTypeRef.Type, nestedTypeRef.GenericTypes); } } else if (la.kind == 133) { lexer.NextToken(); #line 1960 "VBNET.ATG" typeref = new TypeReference("System.Object"); } else if (StartOf(10)) { PrimitiveTypeName( #line 1961 "VBNET.ATG" out name); #line 1961 "VBNET.ATG" typeref = new TypeReference(name); } else SynErr(219); } void EnumBody( #line 576 "VBNET.ATG" TypeDeclaration newType) { #line 577 "VBNET.ATG" FieldDeclaration f; while (StartOf(11)) { EnumMemberDecl( #line 579 "VBNET.ATG" out f); #line 579 "VBNET.ATG" compilationUnit.AddChild(f); } Expect(88); Expect(90); #line 581 "VBNET.ATG" newType.EndLocation = t.EndLocation; Expect(1); } void InterfaceBase( #line 1479 "VBNET.ATG" out List bases) { #line 1481 "VBNET.ATG" TypeReference type; bases = new List(); Expect(110); TypeName( #line 1485 "VBNET.ATG" out type); #line 1485 "VBNET.ATG" bases.Add(type); while (la.kind == 12) { lexer.NextToken(); TypeName( #line 1488 "VBNET.ATG" out type); #line 1488 "VBNET.ATG" bases.Add(type); } Expect(1); } void InterfaceBody( #line 585 "VBNET.ATG" TypeDeclaration newType) { while (StartOf(12)) { InterfaceMemberDecl(); } Expect(88); Expect(112); #line 587 "VBNET.ATG" newType.EndLocation = t.EndLocation; Expect(1); } void FormalParameterList( #line 2133 "VBNET.ATG" List parameter) { #line 2135 "VBNET.ATG" ParameterDeclarationExpression p; AttributeSection section; List attributes = new List(); while (la.kind == 27) { AttributeSection( #line 2139 "VBNET.ATG" out section); #line 2139 "VBNET.ATG" attributes.Add(section); } FormalParameter( #line 2141 "VBNET.ATG" out p); #line 2143 "VBNET.ATG" bool paramsFound = false; p.Attributes = attributes; parameter.Add(p); while (la.kind == 12) { lexer.NextToken(); #line 2148 "VBNET.ATG" if (paramsFound) Error("params array must be at end of parameter list"); while (la.kind == 27) { AttributeSection( #line 2149 "VBNET.ATG" out section); #line 2149 "VBNET.ATG" attributes.Add(section); } FormalParameter( #line 2151 "VBNET.ATG" out p); #line 2151 "VBNET.ATG" p.Attributes = attributes; parameter.Add(p); } } void MemberModifier( #line 2845 "VBNET.ATG" ModifierList m) { switch (la.kind) { case 122: { lexer.NextToken(); #line 2846 "VBNET.ATG" m.Add(Modifiers.Abstract, t.Location); break; } case 79: { lexer.NextToken(); #line 2847 "VBNET.ATG" m.Add(Modifiers.Default, t.Location); break; } case 99: { lexer.NextToken(); #line 2848 "VBNET.ATG" m.Add(Modifiers.Internal, t.Location); break; } case 157: { lexer.NextToken(); #line 2849 "VBNET.ATG" m.Add(Modifiers.New, t.Location); break; } case 142: { lexer.NextToken(); #line 2850 "VBNET.ATG" m.Add(Modifiers.Override, t.Location); break; } case 123: { lexer.NextToken(); #line 2851 "VBNET.ATG" m.Add(Modifiers.Abstract, t.Location); break; } case 145: { lexer.NextToken(); #line 2852 "VBNET.ATG" m.Add(Modifiers.Private, t.Location); break; } case 147: { lexer.NextToken(); #line 2853 "VBNET.ATG" m.Add(Modifiers.Protected, t.Location); break; } case 148: { lexer.NextToken(); #line 2854 "VBNET.ATG" m.Add(Modifiers.Public, t.Location); break; } case 131: { lexer.NextToken(); #line 2855 "VBNET.ATG" m.Add(Modifiers.Sealed, t.Location); break; } case 132: { lexer.NextToken(); #line 2856 "VBNET.ATG" m.Add(Modifiers.Sealed, t.Location); break; } case 158: { lexer.NextToken(); #line 2857 "VBNET.ATG" m.Add(Modifiers.Static, t.Location); break; } case 141: { lexer.NextToken(); #line 2858 "VBNET.ATG" m.Add(Modifiers.Virtual, t.Location); break; } case 140: { lexer.NextToken(); #line 2859 "VBNET.ATG" m.Add(Modifiers.Overloads, t.Location); break; } case 150: { lexer.NextToken(); #line 2860 "VBNET.ATG" m.Add(Modifiers.ReadOnly, t.Location); break; } case 184: { lexer.NextToken(); #line 2861 "VBNET.ATG" m.Add(Modifiers.WriteOnly, t.Location); break; } case 183: { lexer.NextToken(); #line 2862 "VBNET.ATG" m.Add(Modifiers.WithEvents, t.Location); break; } case 81: { lexer.NextToken(); #line 2863 "VBNET.ATG" m.Add(Modifiers.Dim, t.Location); break; } default: SynErr(220); break; } } void ClassMemberDecl( #line 712 "VBNET.ATG" ModifierList m, List attributes) { StructureMemberDecl( #line 713 "VBNET.ATG" m, attributes); } void StructureMemberDecl( #line 726 "VBNET.ATG" ModifierList m, List attributes) { #line 728 "VBNET.ATG" TypeReference type = null; List p = new List(); Statement stmt = null; List variableDeclarators = new List(); List templates = new List(); switch (la.kind) { case 67: case 80: case 90: case 112: case 121: case 166: { NonModuleDeclaration( #line 735 "VBNET.ATG" m, attributes); break; } case 167: { lexer.NextToken(); #line 739 "VBNET.ATG" Location startPos = t.Location; if (StartOf(13)) { #line 743 "VBNET.ATG" string name = String.Empty; MethodDeclaration methodDeclaration; List handlesClause = null; List implementsClause = null; Identifier(); #line 749 "VBNET.ATG" name = t.val; m.Check(Modifiers.VBMethods); TypeParameterList( #line 752 "VBNET.ATG" templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 753 "VBNET.ATG" p); } Expect(25); } if (la.kind == 105 || la.kind == 107) { if (la.kind == 107) { ImplementsClause( #line 756 "VBNET.ATG" out implementsClause); } else { HandlesClause( #line 758 "VBNET.ATG" out handlesClause); } } #line 761 "VBNET.ATG" Location endLocation = t.EndLocation; Expect(1); if ( #line 765 "VBNET.ATG" IsMustOverride(m)) { #line 767 "VBNET.ATG" methodDeclaration = new MethodDeclaration(name, m.Modifier, null, p, attributes); methodDeclaration.StartLocation = m.GetDeclarationLocation(startPos); methodDeclaration.EndLocation = endLocation; methodDeclaration.TypeReference = new TypeReference("", "System.Void"); methodDeclaration.Templates = templates; methodDeclaration.HandlesClause = handlesClause; methodDeclaration.InterfaceImplementations = implementsClause; compilationUnit.AddChild(methodDeclaration); } else if (StartOf(14)) { #line 780 "VBNET.ATG" methodDeclaration = new MethodDeclaration(name, m.Modifier, null, p, attributes); methodDeclaration.StartLocation = m.GetDeclarationLocation(startPos); methodDeclaration.EndLocation = endLocation; methodDeclaration.TypeReference = new TypeReference("", "System.Void"); methodDeclaration.Templates = templates; methodDeclaration.HandlesClause = handlesClause; methodDeclaration.InterfaceImplementations = implementsClause; compilationUnit.AddChild(methodDeclaration); #line 792 "VBNET.ATG" if (ParseMethodBodies) { Block( #line 793 "VBNET.ATG" out stmt); Expect(88); Expect(167); #line 795 "VBNET.ATG" } else { // don't parse method body lexer.SkipCurrentBlock(Tokens.Sub); stmt = new BlockStatement(); } #line 801 "VBNET.ATG" methodDeclaration.Body = (BlockStatement)stmt; #line 802 "VBNET.ATG" methodDeclaration.Body.EndLocation = t.EndLocation; Expect(1); } else SynErr(221); } else if (la.kind == 127) { lexer.NextToken(); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 805 "VBNET.ATG" p); } Expect(25); } #line 806 "VBNET.ATG" m.Check(Modifiers.Constructors); #line 807 "VBNET.ATG" Location constructorEndLocation = t.EndLocation; Expect(1); #line 810 "VBNET.ATG" if (ParseMethodBodies) { Block( #line 811 "VBNET.ATG" out stmt); Expect(88); Expect(167); #line 813 "VBNET.ATG" } else { // don't parse method body lexer.SkipCurrentBlock(Tokens.Sub); stmt = new BlockStatement(); } #line 819 "VBNET.ATG" Location endLocation = t.EndLocation; Expect(1); #line 821 "VBNET.ATG" ConstructorDeclaration cd = new ConstructorDeclaration("New", m.Modifier, p, attributes); cd.StartLocation = m.GetDeclarationLocation(startPos); cd.EndLocation = constructorEndLocation; cd.Body = (BlockStatement)stmt; cd.Body.EndLocation = endLocation; compilationUnit.AddChild(cd); } else SynErr(222); break; } case 100: { lexer.NextToken(); #line 833 "VBNET.ATG" m.Check(Modifiers.VBMethods); string name = String.Empty; Location startPos = t.Location; MethodDeclaration methodDeclaration;List handlesClause = null; List implementsClause = null; AttributeSection returnTypeAttributeSection = null; Identifier(); #line 840 "VBNET.ATG" name = t.val; TypeParameterList( #line 841 "VBNET.ATG" templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 842 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); while (la.kind == 27) { AttributeSection( #line 843 "VBNET.ATG" out returnTypeAttributeSection); } TypeName( #line 843 "VBNET.ATG" out type); } #line 845 "VBNET.ATG" if(type == null) { type = new TypeReference("System.Object"); } if (la.kind == 105 || la.kind == 107) { if (la.kind == 107) { ImplementsClause( #line 851 "VBNET.ATG" out implementsClause); } else { HandlesClause( #line 853 "VBNET.ATG" out handlesClause); } } Expect(1); if ( #line 859 "VBNET.ATG" IsMustOverride(m)) { #line 861 "VBNET.ATG" methodDeclaration = new MethodDeclaration(name, m.Modifier, type, p, attributes); methodDeclaration.StartLocation = m.GetDeclarationLocation(startPos); methodDeclaration.EndLocation = t.EndLocation; methodDeclaration.HandlesClause = handlesClause; methodDeclaration.Templates = templates; methodDeclaration.InterfaceImplementations = implementsClause; if (returnTypeAttributeSection != null) { returnTypeAttributeSection.AttributeTarget = "return"; methodDeclaration.Attributes.Add(returnTypeAttributeSection); } compilationUnit.AddChild(methodDeclaration); } else if (StartOf(14)) { #line 876 "VBNET.ATG" methodDeclaration = new MethodDeclaration(name, m.Modifier, type, p, attributes); methodDeclaration.StartLocation = m.GetDeclarationLocation(startPos); methodDeclaration.EndLocation = t.EndLocation; methodDeclaration.Templates = templates; methodDeclaration.HandlesClause = handlesClause; methodDeclaration.InterfaceImplementations = implementsClause; if (returnTypeAttributeSection != null) { returnTypeAttributeSection.AttributeTarget = "return"; methodDeclaration.Attributes.Add(returnTypeAttributeSection); } compilationUnit.AddChild(methodDeclaration); if (ParseMethodBodies) { Block( #line 891 "VBNET.ATG" out stmt); Expect(88); Expect(100); #line 893 "VBNET.ATG" } else { // don't parse method body lexer.SkipCurrentBlock(Tokens.Function); stmt = new BlockStatement(); } methodDeclaration.Body = (BlockStatement)stmt; methodDeclaration.Body.StartLocation = methodDeclaration.EndLocation; methodDeclaration.Body.EndLocation = t.EndLocation; Expect(1); } else SynErr(223); break; } case 78: { lexer.NextToken(); #line 907 "VBNET.ATG" m.Check(Modifiers.VBExternalMethods); Location startPos = t.Location; CharsetModifier charsetModifer = CharsetModifier.None; string library = String.Empty; string alias = null; string name = String.Empty; if (StartOf(15)) { Charset( #line 914 "VBNET.ATG" out charsetModifer); } if (la.kind == 167) { lexer.NextToken(); Identifier(); #line 917 "VBNET.ATG" name = t.val; Expect(115); Expect(3); #line 918 "VBNET.ATG" library = t.literalValue as string; if (la.kind == 44) { lexer.NextToken(); Expect(3); #line 919 "VBNET.ATG" alias = t.literalValue as string; } if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 920 "VBNET.ATG" p); } Expect(25); } Expect(1); #line 923 "VBNET.ATG" DeclareDeclaration declareDeclaration = new DeclareDeclaration(name, m.Modifier, null, p, attributes, library, alias, charsetModifer); declareDeclaration.StartLocation = m.GetDeclarationLocation(startPos); declareDeclaration.EndLocation = t.EndLocation; compilationUnit.AddChild(declareDeclaration); } else if (la.kind == 100) { lexer.NextToken(); Identifier(); #line 930 "VBNET.ATG" name = t.val; Expect(115); Expect(3); #line 931 "VBNET.ATG" library = t.literalValue as string; if (la.kind == 44) { lexer.NextToken(); Expect(3); #line 932 "VBNET.ATG" alias = t.literalValue as string; } if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 933 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 934 "VBNET.ATG" out type); } Expect(1); #line 937 "VBNET.ATG" DeclareDeclaration declareDeclaration = new DeclareDeclaration(name, m.Modifier, type, p, attributes, library, alias, charsetModifer); declareDeclaration.StartLocation = m.GetDeclarationLocation(startPos); declareDeclaration.EndLocation = t.EndLocation; compilationUnit.AddChild(declareDeclaration); } else SynErr(224); break; } case 93: { lexer.NextToken(); #line 947 "VBNET.ATG" m.Check(Modifiers.VBEvents); Location startPos = t.Location; EventDeclaration eventDeclaration; string name = String.Empty; List implementsClause = null; Identifier(); #line 953 "VBNET.ATG" name= t.val; if (la.kind == 48) { lexer.NextToken(); TypeName( #line 955 "VBNET.ATG" out type); } else if (la.kind == 1 || la.kind == 24 || la.kind == 107) { if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 957 "VBNET.ATG" p); } Expect(25); } } else SynErr(225); if (la.kind == 107) { ImplementsClause( #line 959 "VBNET.ATG" out implementsClause); } #line 961 "VBNET.ATG" eventDeclaration = new EventDeclaration(type, m.Modifier, p, attributes, name, implementsClause); eventDeclaration.StartLocation = m.GetDeclarationLocation(startPos); eventDeclaration.EndLocation = t.EndLocation; compilationUnit.AddChild(eventDeclaration); Expect(1); break; } case 2: case 47: case 49: case 50: case 51: case 70: case 144: case 169: case 176: case 177: { #line 968 "VBNET.ATG" Location startPos = t.Location; #line 970 "VBNET.ATG" m.Check(Modifiers.Fields); FieldDeclaration fd = new FieldDeclaration(attributes, null, m.Modifier); fd.StartLocation = m.GetDeclarationLocation(startPos); IdentifierForFieldDeclaration(); #line 974 "VBNET.ATG" string name = t.val; VariableDeclaratorPartAfterIdentifier( #line 975 "VBNET.ATG" variableDeclarators, name); while (la.kind == 12) { lexer.NextToken(); VariableDeclarator( #line 976 "VBNET.ATG" variableDeclarators); } Expect(1); #line 979 "VBNET.ATG" fd.EndLocation = t.EndLocation; fd.Fields = variableDeclarators; compilationUnit.AddChild(fd); break; } case 71: { #line 984 "VBNET.ATG" m.Check(Modifiers.Fields); lexer.NextToken(); #line 985 "VBNET.ATG" m.Add(Modifiers.Const, t.Location); #line 987 "VBNET.ATG" FieldDeclaration fd = new FieldDeclaration(attributes, type, m.Modifier); fd.StartLocation = m.GetDeclarationLocation(t.Location); List constantDeclarators = new List(); ConstantDeclarator( #line 991 "VBNET.ATG" constantDeclarators); while (la.kind == 12) { lexer.NextToken(); ConstantDeclarator( #line 992 "VBNET.ATG" constantDeclarators); } #line 994 "VBNET.ATG" fd.Fields = constantDeclarators; fd.EndLocation = t.Location; Expect(1); #line 999 "VBNET.ATG" fd.EndLocation = t.EndLocation; compilationUnit.AddChild(fd); break; } case 146: { lexer.NextToken(); #line 1005 "VBNET.ATG" m.Check(Modifiers.VBProperties); Location startPos = t.Location; List implementsClause = null; Identifier(); #line 1009 "VBNET.ATG" string propertyName = t.val; if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 1010 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 1011 "VBNET.ATG" out type); } #line 1013 "VBNET.ATG" if(type == null) { type = new TypeReference("System.Object"); } if (la.kind == 107) { ImplementsClause( #line 1017 "VBNET.ATG" out implementsClause); } Expect(1); if ( #line 1021 "VBNET.ATG" IsMustOverride(m)) { #line 1023 "VBNET.ATG" PropertyDeclaration pDecl = new PropertyDeclaration(propertyName, type, m.Modifier, attributes); pDecl.StartLocation = m.GetDeclarationLocation(startPos); pDecl.EndLocation = t.Location; pDecl.TypeReference = type; pDecl.InterfaceImplementations = implementsClause; pDecl.Parameters = p; compilationUnit.AddChild(pDecl); } else if (StartOf(16)) { #line 1033 "VBNET.ATG" PropertyDeclaration pDecl = new PropertyDeclaration(propertyName, type, m.Modifier, attributes); pDecl.StartLocation = m.GetDeclarationLocation(startPos); pDecl.EndLocation = t.Location; pDecl.BodyStart = t.Location; pDecl.TypeReference = type; pDecl.InterfaceImplementations = implementsClause; pDecl.Parameters = p; PropertyGetRegion getRegion; PropertySetRegion setRegion; AccessorDecls( #line 1043 "VBNET.ATG" out getRegion, out setRegion); Expect(88); Expect(146); Expect(1); #line 1047 "VBNET.ATG" pDecl.GetRegion = getRegion; pDecl.SetRegion = setRegion; pDecl.BodyEnd = t.EndLocation; compilationUnit.AddChild(pDecl); } else SynErr(226); break; } case 204: { lexer.NextToken(); #line 1054 "VBNET.ATG" Location startPos = t.Location; Expect(93); #line 1056 "VBNET.ATG" m.Check(Modifiers.VBCustomEvents); EventAddRemoveRegion eventAccessorDeclaration; EventAddRegion addHandlerAccessorDeclaration = null; EventRemoveRegion removeHandlerAccessorDeclaration = null; EventRaiseRegion raiseEventAccessorDeclaration = null; List implementsClause = null; Identifier(); #line 1063 "VBNET.ATG" string customEventName = t.val; Expect(48); TypeName( #line 1064 "VBNET.ATG" out type); if (la.kind == 107) { ImplementsClause( #line 1065 "VBNET.ATG" out implementsClause); } Expect(1); while (StartOf(17)) { EventAccessorDeclaration( #line 1068 "VBNET.ATG" out eventAccessorDeclaration); #line 1070 "VBNET.ATG" if(eventAccessorDeclaration is EventAddRegion) { addHandlerAccessorDeclaration = (EventAddRegion)eventAccessorDeclaration; } else if(eventAccessorDeclaration is EventRemoveRegion) { removeHandlerAccessorDeclaration = (EventRemoveRegion)eventAccessorDeclaration; } else if(eventAccessorDeclaration is EventRaiseRegion) { raiseEventAccessorDeclaration = (EventRaiseRegion)eventAccessorDeclaration; } } Expect(88); Expect(93); Expect(1); #line 1086 "VBNET.ATG" if(addHandlerAccessorDeclaration == null) { Error("Need to provide AddHandler accessor."); } if(removeHandlerAccessorDeclaration == null) { Error("Need to provide RemoveHandler accessor."); } if(raiseEventAccessorDeclaration == null) { Error("Need to provide RaiseEvent accessor."); } EventDeclaration decl = new EventDeclaration(type, customEventName, m.Modifier, attributes, null); decl.StartLocation = m.GetDeclarationLocation(startPos); decl.EndLocation = t.EndLocation; decl.AddRegion = addHandlerAccessorDeclaration; decl.RemoveRegion = removeHandlerAccessorDeclaration; decl.RaiseRegion = raiseEventAccessorDeclaration; compilationUnit.AddChild(decl); break; } case 187: case 201: case 202: { #line 1109 "VBNET.ATG" ConversionType opConversionType = ConversionType.None; if (la.kind == 201 || la.kind == 202) { if (la.kind == 202) { lexer.NextToken(); #line 1110 "VBNET.ATG" opConversionType = ConversionType.Implicit; } else { lexer.NextToken(); #line 1111 "VBNET.ATG" opConversionType = ConversionType.Explicit; } } Expect(187); #line 1114 "VBNET.ATG" m.Check(Modifiers.VBOperators); Location startPos = t.Location; TypeReference returnType = NullTypeReference.Instance; TypeReference operandType = NullTypeReference.Instance; string operandName; OverloadableOperatorType operatorType; AttributeSection section; List parameters = new List(); List returnTypeAttributes = new List(); OverloadableOperator( #line 1124 "VBNET.ATG" out operatorType); Expect(24); if (la.kind == 55) { lexer.NextToken(); } Identifier(); #line 1125 "VBNET.ATG" operandName = t.val; if (la.kind == 48) { lexer.NextToken(); TypeName( #line 1126 "VBNET.ATG" out operandType); } #line 1127 "VBNET.ATG" parameters.Add(new ParameterDeclarationExpression(operandType, operandName, ParameterModifiers.In)); while (la.kind == 12) { lexer.NextToken(); if (la.kind == 55) { lexer.NextToken(); } Identifier(); #line 1131 "VBNET.ATG" operandName = t.val; if (la.kind == 48) { lexer.NextToken(); TypeName( #line 1132 "VBNET.ATG" out operandType); } #line 1133 "VBNET.ATG" parameters.Add(new ParameterDeclarationExpression(operandType, operandName, ParameterModifiers.In)); } Expect(25); #line 1136 "VBNET.ATG" Location endPos = t.EndLocation; if (la.kind == 48) { lexer.NextToken(); while (la.kind == 27) { AttributeSection( #line 1137 "VBNET.ATG" out section); #line 1137 "VBNET.ATG" returnTypeAttributes.Add(section); } TypeName( #line 1137 "VBNET.ATG" out returnType); #line 1137 "VBNET.ATG" endPos = t.EndLocation; Expect(1); } Block( #line 1138 "VBNET.ATG" out stmt); Expect(88); Expect(187); Expect(1); #line 1140 "VBNET.ATG" OperatorDeclaration operatorDeclaration = new OperatorDeclaration(m.Modifier, attributes, parameters, returnType, operatorType ); operatorDeclaration.ConversionType = opConversionType; operatorDeclaration.ReturnTypeAttributes = returnTypeAttributes; operatorDeclaration.Body = (BlockStatement)stmt; operatorDeclaration.StartLocation = m.GetDeclarationLocation(startPos); operatorDeclaration.EndLocation = endPos; operatorDeclaration.Body.StartLocation = startPos; operatorDeclaration.Body.EndLocation = t.Location; compilationUnit.AddChild(operatorDeclaration); break; } default: SynErr(227); break; } } void EnumMemberDecl( #line 694 "VBNET.ATG" out FieldDeclaration f) { #line 696 "VBNET.ATG" Expression expr = null;List attributes = new List(); AttributeSection section = null; VariableDeclaration varDecl = null; while (la.kind == 27) { AttributeSection( #line 700 "VBNET.ATG" out section); #line 700 "VBNET.ATG" attributes.Add(section); } Identifier(); #line 703 "VBNET.ATG" f = new FieldDeclaration(attributes); varDecl = new VariableDeclaration(t.val); f.Fields.Add(varDecl); f.StartLocation = t.Location; if (la.kind == 11) { lexer.NextToken(); Expr( #line 708 "VBNET.ATG" out expr); #line 708 "VBNET.ATG" varDecl.Initializer = expr; } Expect(1); } void InterfaceMemberDecl() { #line 595 "VBNET.ATG" TypeReference type =null; List p = new List(); List templates = new List(); AttributeSection section, returnTypeAttributeSection = null; ModifierList mod = new ModifierList(); List attributes = new List(); string name; if (StartOf(18)) { while (la.kind == 27) { AttributeSection( #line 603 "VBNET.ATG" out section); #line 603 "VBNET.ATG" attributes.Add(section); } while (StartOf(8)) { MemberModifier( #line 606 "VBNET.ATG" mod); } if (la.kind == 93) { lexer.NextToken(); #line 610 "VBNET.ATG" mod.Check(Modifiers.VBInterfaceEvents); Location startLocation = t.Location; Identifier(); #line 613 "VBNET.ATG" name = t.val; if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 614 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 615 "VBNET.ATG" out type); } Expect(1); #line 618 "VBNET.ATG" EventDeclaration ed = new EventDeclaration(type, mod.Modifier, p, attributes, name, null); compilationUnit.AddChild(ed); ed.StartLocation = startLocation; ed.EndLocation = t.EndLocation; } else if (la.kind == 167) { lexer.NextToken(); #line 626 "VBNET.ATG" Location startLocation = t.Location; mod.Check(Modifiers.VBInterfaceMethods); Identifier(); #line 629 "VBNET.ATG" name = t.val; TypeParameterList( #line 630 "VBNET.ATG" templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 631 "VBNET.ATG" p); } Expect(25); } Expect(1); #line 634 "VBNET.ATG" MethodDeclaration md = new MethodDeclaration(name, mod.Modifier, null, p, attributes); md.TypeReference = new TypeReference("", "System.Void"); md.StartLocation = startLocation; md.EndLocation = t.EndLocation; md.Templates = templates; compilationUnit.AddChild(md); } else if (la.kind == 100) { lexer.NextToken(); #line 644 "VBNET.ATG" mod.Check(Modifiers.VBInterfaceMethods); Location startLocation = t.Location; Identifier(); #line 647 "VBNET.ATG" name = t.val; TypeParameterList( #line 648 "VBNET.ATG" templates); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 649 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); while (la.kind == 27) { AttributeSection( #line 650 "VBNET.ATG" out returnTypeAttributeSection); } TypeName( #line 650 "VBNET.ATG" out type); } #line 652 "VBNET.ATG" if(type == null) { type = new TypeReference("System.Object"); } MethodDeclaration md = new MethodDeclaration(name, mod.Modifier, type, p, attributes); if (returnTypeAttributeSection != null) { returnTypeAttributeSection.AttributeTarget = "return"; md.Attributes.Add(returnTypeAttributeSection); } md.StartLocation = startLocation; md.EndLocation = t.EndLocation; md.Templates = templates; compilationUnit.AddChild(md); Expect(1); } else if (la.kind == 146) { lexer.NextToken(); #line 669 "VBNET.ATG" Location startLocation = t.Location; mod.Check(Modifiers.VBInterfaceProperties); Identifier(); #line 672 "VBNET.ATG" name = t.val; if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 673 "VBNET.ATG" p); } Expect(25); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 674 "VBNET.ATG" out type); } #line 676 "VBNET.ATG" if(type == null) { type = new TypeReference("System.Object"); } Expect(1); #line 682 "VBNET.ATG" PropertyDeclaration pd = new PropertyDeclaration(name, type, mod.Modifier, attributes); pd.Parameters = p; pd.EndLocation = t.EndLocation; pd.StartLocation = startLocation; compilationUnit.AddChild(pd); } else SynErr(228); } else if (StartOf(19)) { NonModuleDeclaration( #line 690 "VBNET.ATG" mod, attributes); } else SynErr(229); } void Expr( #line 1540 "VBNET.ATG" out Expression expr) { DisjunctionExpr( #line 1542 "VBNET.ATG" out expr); } void ImplementsClause( #line 1511 "VBNET.ATG" out List baseInterfaces) { #line 1513 "VBNET.ATG" baseInterfaces = new List(); TypeReference type = null; string memberName = null; Expect(107); NonArrayTypeName( #line 1518 "VBNET.ATG" out type, false); #line 1519 "VBNET.ATG" if (type != null) memberName = TypeReference.StripLastIdentifierFromType(ref type); #line 1520 "VBNET.ATG" baseInterfaces.Add(new InterfaceImplementation(type, memberName)); while (la.kind == 12) { lexer.NextToken(); NonArrayTypeName( #line 1522 "VBNET.ATG" out type, false); #line 1523 "VBNET.ATG" if (type != null) memberName = TypeReference.StripLastIdentifierFromType(ref type); #line 1524 "VBNET.ATG" baseInterfaces.Add(new InterfaceImplementation(type, memberName)); } } void HandlesClause( #line 1469 "VBNET.ATG" out List handlesClause) { #line 1471 "VBNET.ATG" handlesClause = new List(); string name; Expect(105); EventMemberSpecifier( #line 1474 "VBNET.ATG" out name); #line 1474 "VBNET.ATG" handlesClause.Add(name); while (la.kind == 12) { lexer.NextToken(); EventMemberSpecifier( #line 1475 "VBNET.ATG" out name); #line 1475 "VBNET.ATG" handlesClause.Add(name); } } void Block( #line 2189 "VBNET.ATG" out Statement stmt) { #line 2192 "VBNET.ATG" BlockStatement blockStmt = new BlockStatement(); blockStmt.StartLocation = t.Location; compilationUnit.BlockStart(blockStmt); while (StartOf(20) || #line 2197 "VBNET.ATG" IsEndStmtAhead()) { if ( #line 2197 "VBNET.ATG" IsEndStmtAhead()) { Expect(88); EndOfStmt(); #line 2197 "VBNET.ATG" compilationUnit.AddChild(new EndStatement()); } else { Statement(); EndOfStmt(); } } #line 2202 "VBNET.ATG" stmt = blockStmt; blockStmt.EndLocation = t.EndLocation; compilationUnit.BlockEnd(); } void Charset( #line 1461 "VBNET.ATG" out CharsetModifier charsetModifier) { #line 1462 "VBNET.ATG" charsetModifier = CharsetModifier.None; if (la.kind == 100 || la.kind == 167) { } else if (la.kind == 47) { lexer.NextToken(); #line 1463 "VBNET.ATG" charsetModifier = CharsetModifier.Ansi; } else if (la.kind == 50) { lexer.NextToken(); #line 1464 "VBNET.ATG" charsetModifier = CharsetModifier.Auto; } else if (la.kind == 176) { lexer.NextToken(); #line 1465 "VBNET.ATG" charsetModifier = CharsetModifier.Unicode; } else SynErr(230); } void IdentifierForFieldDeclaration() { switch (la.kind) { case 2: { lexer.NextToken(); break; } case 169: { lexer.NextToken(); break; } case 51: { lexer.NextToken(); break; } case 70: { lexer.NextToken(); break; } case 49: { lexer.NextToken(); break; } case 47: { lexer.NextToken(); break; } case 50: { lexer.NextToken(); break; } case 144: { lexer.NextToken(); break; } case 176: { lexer.NextToken(); break; } case 177: { lexer.NextToken(); break; } default: SynErr(231); break; } } void VariableDeclaratorPartAfterIdentifier( #line 1341 "VBNET.ATG" List fieldDeclaration, string name) { #line 1343 "VBNET.ATG" Expression expr = null; TypeReference type = null; ArrayList rank = null; List dimension = null; if ( #line 1348 "VBNET.ATG" IsSize() && !IsDims()) { ArrayInitializationModifier( #line 1348 "VBNET.ATG" out dimension); } if ( #line 1349 "VBNET.ATG" IsDims()) { ArrayNameModifier( #line 1349 "VBNET.ATG" out rank); } if ( #line 1351 "VBNET.ATG" IsObjectCreation()) { Expect(48); ObjectCreateExpression( #line 1351 "VBNET.ATG" out expr); #line 1353 "VBNET.ATG" if (expr is ObjectCreateExpression) { type = ((ObjectCreateExpression)expr).CreateType; } else { type = ((ArrayCreateExpression)expr).CreateType; } } else if (StartOf(21)) { if (la.kind == 48) { lexer.NextToken(); TypeName( #line 1360 "VBNET.ATG" out type); #line 1362 "VBNET.ATG" if (type != null) { for (int i = fieldDeclaration.Count - 1; i >= 0; i--) { VariableDeclaration vd = fieldDeclaration[i]; if (vd.TypeReference.Type.Length > 0) break; TypeReference newType = type.Clone(); newType.RankSpecifier = vd.TypeReference.RankSpecifier; vd.TypeReference = newType; } } } #line 1374 "VBNET.ATG" if (type == null && (dimension != null || rank != null)) { type = new TypeReference(""); } if (dimension != null) { if(type.RankSpecifier != null) { Error("array rank only allowed one time"); } else { for (int i = 0; i < dimension.Count; i++) dimension[i] = Expression.AddInteger(dimension[i], 1); if (rank == null) { type.RankSpecifier = new int[] { dimension.Count - 1 }; } else { rank.Insert(0, dimension.Count - 1); type.RankSpecifier = (int[])rank.ToArray(typeof(int)); } expr = new ArrayCreateExpression(type, dimension); } } else if (rank != null) { if(type.RankSpecifier != null) { Error("array rank only allowed one time"); } else { type.RankSpecifier = (int[])rank.ToArray(typeof(int)); } } if (la.kind == 11) { lexer.NextToken(); VariableInitializer( #line 1399 "VBNET.ATG" out expr); } } else SynErr(232); #line 1401 "VBNET.ATG" fieldDeclaration.Add(new VariableDeclaration(name, expr, type)); } void VariableDeclarator( #line 1335 "VBNET.ATG" List fieldDeclaration) { Identifier(); #line 1337 "VBNET.ATG" string name = t.val; VariableDeclaratorPartAfterIdentifier( #line 1338 "VBNET.ATG" fieldDeclaration, name); } void ConstantDeclarator( #line 1318 "VBNET.ATG" List constantDeclaration) { #line 1320 "VBNET.ATG" Expression expr = null; TypeReference type = null; string name = String.Empty; Identifier(); #line 1324 "VBNET.ATG" name = t.val; if (la.kind == 48) { lexer.NextToken(); TypeName( #line 1325 "VBNET.ATG" out type); } Expect(11); Expr( #line 1326 "VBNET.ATG" out expr); #line 1328 "VBNET.ATG" VariableDeclaration f = new VariableDeclaration(name, expr); f.TypeReference = type; constantDeclaration.Add(f); } void AccessorDecls( #line 1252 "VBNET.ATG" out PropertyGetRegion getBlock, out PropertySetRegion setBlock) { #line 1254 "VBNET.ATG" List attributes = new List(); AttributeSection section; getBlock = null; setBlock = null; while (la.kind == 27) { AttributeSection( #line 1259 "VBNET.ATG" out section); #line 1259 "VBNET.ATG" attributes.Add(section); } if (StartOf(22)) { GetAccessorDecl( #line 1261 "VBNET.ATG" out getBlock, attributes); if (StartOf(23)) { #line 1263 "VBNET.ATG" attributes = new List(); while (la.kind == 27) { AttributeSection( #line 1264 "VBNET.ATG" out section); #line 1264 "VBNET.ATG" attributes.Add(section); } SetAccessorDecl( #line 1265 "VBNET.ATG" out setBlock, attributes); } } else if (StartOf(24)) { SetAccessorDecl( #line 1268 "VBNET.ATG" out setBlock, attributes); if (StartOf(25)) { #line 1270 "VBNET.ATG" attributes = new List(); while (la.kind == 27) { AttributeSection( #line 1271 "VBNET.ATG" out section); #line 1271 "VBNET.ATG" attributes.Add(section); } GetAccessorDecl( #line 1272 "VBNET.ATG" out getBlock, attributes); } } else SynErr(233); } void EventAccessorDeclaration( #line 1215 "VBNET.ATG" out EventAddRemoveRegion eventAccessorDeclaration) { #line 1217 "VBNET.ATG" Statement stmt = null; List p = new List(); AttributeSection section; List attributes = new List(); eventAccessorDeclaration = null; while (la.kind == 27) { AttributeSection( #line 1223 "VBNET.ATG" out section); #line 1223 "VBNET.ATG" attributes.Add(section); } if (la.kind == 42) { lexer.NextToken(); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 1225 "VBNET.ATG" p); } Expect(25); } Expect(1); Block( #line 1226 "VBNET.ATG" out stmt); Expect(88); Expect(42); Expect(1); #line 1228 "VBNET.ATG" eventAccessorDeclaration = new EventAddRegion(attributes); eventAccessorDeclaration.Block = (BlockStatement)stmt; eventAccessorDeclaration.Parameters = p; } else if (la.kind == 152) { lexer.NextToken(); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 1233 "VBNET.ATG" p); } Expect(25); } Expect(1); Block( #line 1234 "VBNET.ATG" out stmt); Expect(88); Expect(152); Expect(1); #line 1236 "VBNET.ATG" eventAccessorDeclaration = new EventRemoveRegion(attributes); eventAccessorDeclaration.Block = (BlockStatement)stmt; eventAccessorDeclaration.Parameters = p; } else if (la.kind == 149) { lexer.NextToken(); if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 1241 "VBNET.ATG" p); } Expect(25); } Expect(1); Block( #line 1242 "VBNET.ATG" out stmt); Expect(88); Expect(149); Expect(1); #line 1244 "VBNET.ATG" eventAccessorDeclaration = new EventRaiseRegion(attributes); eventAccessorDeclaration.Block = (BlockStatement)stmt; eventAccessorDeclaration.Parameters = p; } else SynErr(234); } void OverloadableOperator( #line 1157 "VBNET.ATG" out OverloadableOperatorType operatorType) { #line 1158 "VBNET.ATG" operatorType = OverloadableOperatorType.None; switch (la.kind) { case 14: { lexer.NextToken(); #line 1160 "VBNET.ATG" operatorType = OverloadableOperatorType.Add; break; } case 15: { lexer.NextToken(); #line 1162 "VBNET.ATG" operatorType = OverloadableOperatorType.Subtract; break; } case 16: { lexer.NextToken(); #line 1164 "VBNET.ATG" operatorType = OverloadableOperatorType.Multiply; break; } case 17: { lexer.NextToken(); #line 1166 "VBNET.ATG" operatorType = OverloadableOperatorType.Divide; break; } case 18: { lexer.NextToken(); #line 1168 "VBNET.ATG" operatorType = OverloadableOperatorType.DivideInteger; break; } case 19: { lexer.NextToken(); #line 1170 "VBNET.ATG" operatorType = OverloadableOperatorType.Concat; break; } case 116: { lexer.NextToken(); #line 1172 "VBNET.ATG" operatorType = OverloadableOperatorType.Like; break; } case 120: { lexer.NextToken(); #line 1174 "VBNET.ATG" operatorType = OverloadableOperatorType.Modulus; break; } case 45: { lexer.NextToken(); #line 1176 "VBNET.ATG" operatorType = OverloadableOperatorType.BitwiseAnd; break; } case 138: { lexer.NextToken(); #line 1178 "VBNET.ATG" operatorType = OverloadableOperatorType.BitwiseOr; break; } case 185: { lexer.NextToken(); #line 1180 "VBNET.ATG" operatorType = OverloadableOperatorType.ExclusiveOr; break; } case 20: { lexer.NextToken(); #line 1182 "VBNET.ATG" operatorType = OverloadableOperatorType.Power; break; } case 31: { lexer.NextToken(); #line 1184 "VBNET.ATG" operatorType = OverloadableOperatorType.ShiftLeft; break; } case 32: { lexer.NextToken(); #line 1186 "VBNET.ATG" operatorType = OverloadableOperatorType.ShiftRight; break; } case 11: { lexer.NextToken(); #line 1188 "VBNET.ATG" operatorType = OverloadableOperatorType.Equality; break; } case 28: { lexer.NextToken(); #line 1190 "VBNET.ATG" operatorType = OverloadableOperatorType.InEquality; break; } case 27: { lexer.NextToken(); #line 1192 "VBNET.ATG" operatorType = OverloadableOperatorType.LessThan; break; } case 30: { lexer.NextToken(); #line 1194 "VBNET.ATG" operatorType = OverloadableOperatorType.LessThanOrEqual; break; } case 26: { lexer.NextToken(); #line 1196 "VBNET.ATG" operatorType = OverloadableOperatorType.GreaterThan; break; } case 29: { lexer.NextToken(); #line 1198 "VBNET.ATG" operatorType = OverloadableOperatorType.GreaterThanOrEqual; break; } case 75: { lexer.NextToken(); #line 1200 "VBNET.ATG" operatorType = OverloadableOperatorType.CType; break; } case 2: case 47: case 49: case 50: case 51: case 70: case 144: case 169: case 176: case 177: case 204: { Identifier(); #line 1204 "VBNET.ATG" string opName = t.val; if (string.Equals(opName, "istrue", StringComparison.InvariantCultureIgnoreCase)) { operatorType = OverloadableOperatorType.IsTrue; } else if (string.Equals(opName, "isfalse", StringComparison.InvariantCultureIgnoreCase)) { operatorType = OverloadableOperatorType.IsFalse; } else { Error("Invalid operator. Possible operators are '+', '-', 'Not', 'IsTrue', 'IsFalse'."); } break; } default: SynErr(235); break; } } void GetAccessorDecl( #line 1278 "VBNET.ATG" out PropertyGetRegion getBlock, List attributes) { #line 1279 "VBNET.ATG" Statement stmt = null; Modifiers m; PropertyAccessorAccessModifier( #line 1281 "VBNET.ATG" out m); Expect(101); #line 1283 "VBNET.ATG" Location startLocation = t.Location; Expect(1); Block( #line 1285 "VBNET.ATG" out stmt); #line 1286 "VBNET.ATG" getBlock = new PropertyGetRegion((BlockStatement)stmt, attributes); Expect(88); Expect(101); #line 1288 "VBNET.ATG" getBlock.Modifier = m; #line 1289 "VBNET.ATG" getBlock.StartLocation = startLocation; getBlock.EndLocation = t.EndLocation; Expect(1); } void SetAccessorDecl( #line 1294 "VBNET.ATG" out PropertySetRegion setBlock, List attributes) { #line 1296 "VBNET.ATG" Statement stmt = null; List p = new List(); Modifiers m; PropertyAccessorAccessModifier( #line 1301 "VBNET.ATG" out m); Expect(156); #line 1303 "VBNET.ATG" Location startLocation = t.Location; if (la.kind == 24) { lexer.NextToken(); if (StartOf(4)) { FormalParameterList( #line 1304 "VBNET.ATG" p); } Expect(25); } Expect(1); Block( #line 1306 "VBNET.ATG" out stmt); #line 1308 "VBNET.ATG" setBlock = new PropertySetRegion((BlockStatement)stmt, attributes); setBlock.Modifier = m; setBlock.Parameters = p; Expect(88); Expect(156); #line 1313 "VBNET.ATG" setBlock.StartLocation = startLocation; setBlock.EndLocation = t.EndLocation; Expect(1); } void PropertyAccessorAccessModifier( #line 2866 "VBNET.ATG" out Modifiers m) { #line 2867 "VBNET.ATG" m = Modifiers.None; while (StartOf(26)) { if (la.kind == 148) { lexer.NextToken(); #line 2869 "VBNET.ATG" m |= Modifiers.Public; } else if (la.kind == 147) { lexer.NextToken(); #line 2870 "VBNET.ATG" m |= Modifiers.Protected; } else if (la.kind == 99) { lexer.NextToken(); #line 2871 "VBNET.ATG" m |= Modifiers.Internal; } else { lexer.NextToken(); #line 2872 "VBNET.ATG" m |= Modifiers.Private; } } } void ArrayInitializationModifier( #line 1405 "VBNET.ATG" out List arrayModifiers) { #line 1407 "VBNET.ATG" arrayModifiers = null; Expect(24); InitializationRankList( #line 1409 "VBNET.ATG" out arrayModifiers); Expect(25); } void ArrayNameModifier( #line 1981 "VBNET.ATG" out ArrayList arrayModifiers) { #line 1983 "VBNET.ATG" arrayModifiers = null; ArrayTypeModifiers( #line 1985 "VBNET.ATG" out arrayModifiers); } void ObjectCreateExpression( #line 1834 "VBNET.ATG" out Expression oce) { #line 1836 "VBNET.ATG" TypeReference type = null; Expression initializer = null; List arguments = null; ArrayList dimensions = null; oce = null; bool canBeNormal; bool canBeReDim; Expect(127); NonArrayTypeName( #line 1843 "VBNET.ATG" out type, false); if (la.kind == 24) { lexer.NextToken(); NormalOrReDimArgumentList( #line 1844 "VBNET.ATG" out arguments, out canBeNormal, out canBeReDim); Expect(25); if (la.kind == 22 || #line 1845 "VBNET.ATG" la.kind == Tokens.OpenParenthesis) { if ( #line 1845 "VBNET.ATG" la.kind == Tokens.OpenParenthesis) { ArrayTypeModifiers( #line 1846 "VBNET.ATG" out dimensions); ArrayInitializer( #line 1847 "VBNET.ATG" out initializer); } else { ArrayInitializer( #line 1848 "VBNET.ATG" out initializer); } } #line 1850 "VBNET.ATG" if (canBeReDim && !canBeNormal && initializer == null) initializer = new ArrayInitializerExpression(); } #line 1853 "VBNET.ATG" if (type == null) type = new TypeReference("Object"); // fallback type on parser errors if (initializer == null) { oce = new ObjectCreateExpression(type, arguments); } else { if (dimensions == null) dimensions = new ArrayList(); dimensions.Insert(0, (arguments == null) ? 0 : Math.Max(arguments.Count - 1, 0)); type.RankSpecifier = (int[])dimensions.ToArray(typeof(int)); ArrayCreateExpression ace = new ArrayCreateExpression(type, initializer as ArrayInitializerExpression); ace.Arguments = arguments; oce = ace; } } void VariableInitializer( #line 1433 "VBNET.ATG" out Expression initializerExpression) { #line 1435 "VBNET.ATG" initializerExpression = null; if (StartOf(27)) { Expr( #line 1437 "VBNET.ATG" out initializerExpression); } else if (la.kind == 22) { ArrayInitializer( #line 1438 "VBNET.ATG" out initializerExpression); } else SynErr(236); } void InitializationRankList( #line 1413 "VBNET.ATG" out List rank) { #line 1415 "VBNET.ATG" rank = new List(); Expression expr = null; Expr( #line 1418 "VBNET.ATG" out expr); if (la.kind == 172) { lexer.NextToken(); #line 1419 "VBNET.ATG" EnsureIsZero(expr); Expr( #line 1420 "VBNET.ATG" out expr); } #line 1422 "VBNET.ATG" if (expr != null) { rank.Add(expr); } while (la.kind == 12) { lexer.NextToken(); Expr( #line 1424 "VBNET.ATG" out expr); if (la.kind == 172) { lexer.NextToken(); #line 1425 "VBNET.ATG" EnsureIsZero(expr); Expr( #line 1426 "VBNET.ATG" out expr); } #line 1428 "VBNET.ATG" if (expr != null) { rank.Add(expr); } } } void ArrayInitializer( #line 1442 "VBNET.ATG" out Expression outExpr) { #line 1444 "VBNET.ATG" Expression expr = null; ArrayInitializerExpression initializer = new ArrayInitializerExpression(); Expect(22); if (StartOf(28)) { VariableInitializer( #line 1449 "VBNET.ATG" out expr); #line 1451 "VBNET.ATG" if (expr != null) { initializer.CreateExpressions.Add(expr); } while ( #line 1454 "VBNET.ATG" NotFinalComma()) { Expect(12); VariableInitializer( #line 1454 "VBNET.ATG" out expr); #line 1455 "VBNET.ATG" if (expr != null) { initializer.CreateExpressions.Add(expr); } } } Expect(23); #line 1458 "VBNET.ATG" outExpr = initializer; } void EventMemberSpecifier( #line 1528 "VBNET.ATG" out string name) { #line 1529 "VBNET.ATG" string type; name = String.Empty; if (StartOf(13)) { Identifier(); #line 1530 "VBNET.ATG" type = t.val; Expect(10); Identifier(); #line 1532 "VBNET.ATG" name = type + "." + t.val; } else if (la.kind == 124) { lexer.NextToken(); Expect(10); if (StartOf(13)) { Identifier(); #line 1535 "VBNET.ATG" name = "MyBase." + t.val; } else if (la.kind == 92) { lexer.NextToken(); #line 1536 "VBNET.ATG" name = "MyBase.Error"; } else SynErr(237); } else SynErr(238); } void DisjunctionExpr( #line 1678 "VBNET.ATG" out Expression outExpr) { #line 1680 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; ConjunctionExpr( #line 1683 "VBNET.ATG" out outExpr); while (la.kind == 138 || la.kind == 139 || la.kind == 185) { if (la.kind == 138) { lexer.NextToken(); #line 1686 "VBNET.ATG" op = BinaryOperatorType.BitwiseOr; } else if (la.kind == 139) { lexer.NextToken(); #line 1687 "VBNET.ATG" op = BinaryOperatorType.LogicalOr; } else { lexer.NextToken(); #line 1688 "VBNET.ATG" op = BinaryOperatorType.ExclusiveOr; } ConjunctionExpr( #line 1690 "VBNET.ATG" out expr); #line 1690 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } } void AssignmentOperator( #line 1545 "VBNET.ATG" out AssignmentOperatorType op) { #line 1546 "VBNET.ATG" op = AssignmentOperatorType.None; switch (la.kind) { case 11: { lexer.NextToken(); #line 1547 "VBNET.ATG" op = AssignmentOperatorType.Assign; break; } case 41: { lexer.NextToken(); #line 1548 "VBNET.ATG" op = AssignmentOperatorType.ConcatString; break; } case 33: { lexer.NextToken(); #line 1549 "VBNET.ATG" op = AssignmentOperatorType.Add; break; } case 35: { lexer.NextToken(); #line 1550 "VBNET.ATG" op = AssignmentOperatorType.Subtract; break; } case 36: { lexer.NextToken(); #line 1551 "VBNET.ATG" op = AssignmentOperatorType.Multiply; break; } case 37: { lexer.NextToken(); #line 1552 "VBNET.ATG" op = AssignmentOperatorType.Divide; break; } case 38: { lexer.NextToken(); #line 1553 "VBNET.ATG" op = AssignmentOperatorType.DivideInteger; break; } case 34: { lexer.NextToken(); #line 1554 "VBNET.ATG" op = AssignmentOperatorType.Power; break; } case 39: { lexer.NextToken(); #line 1555 "VBNET.ATG" op = AssignmentOperatorType.ShiftLeft; break; } case 40: { lexer.NextToken(); #line 1556 "VBNET.ATG" op = AssignmentOperatorType.ShiftRight; break; } default: SynErr(239); break; } } void SimpleExpr( #line 1560 "VBNET.ATG" out Expression pexpr) { SimpleNonInvocationExpression( #line 1562 "VBNET.ATG" out pexpr); while (la.kind == 10 || la.kind == 24) { if (la.kind == 10) { #line 1563 "VBNET.ATG" string name; lexer.NextToken(); IdentifierOrKeyword( #line 1564 "VBNET.ATG" out name); #line 1564 "VBNET.ATG" pexpr = new FieldReferenceExpression(pexpr, name); } else { InvocationExpression( #line 1565 "VBNET.ATG" ref pexpr); } } } void SimpleNonInvocationExpression( #line 1569 "VBNET.ATG" out Expression pexpr) { #line 1571 "VBNET.ATG" Expression expr; TypeReference type = null; string name = String.Empty; pexpr = null; if (StartOf(29)) { switch (la.kind) { case 3: { lexer.NextToken(); #line 1579 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 4: { lexer.NextToken(); #line 1580 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 7: { lexer.NextToken(); #line 1581 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 6: { lexer.NextToken(); #line 1582 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 5: { lexer.NextToken(); #line 1583 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 9: { lexer.NextToken(); #line 1584 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 8: { lexer.NextToken(); #line 1585 "VBNET.ATG" pexpr = new PrimitiveExpression(t.literalValue, t.val); break; } case 173: { lexer.NextToken(); #line 1587 "VBNET.ATG" pexpr = new PrimitiveExpression(true, "true"); break; } case 96: { lexer.NextToken(); #line 1588 "VBNET.ATG" pexpr = new PrimitiveExpression(false, "false"); break; } case 130: { lexer.NextToken(); #line 1589 "VBNET.ATG" pexpr = new PrimitiveExpression(null, "null"); break; } case 24: { lexer.NextToken(); Expr( #line 1590 "VBNET.ATG" out expr); Expect(25); #line 1590 "VBNET.ATG" pexpr = new ParenthesizedExpression(expr); break; } case 2: case 47: case 49: case 50: case 51: case 70: case 144: case 169: case 176: case 177: case 204: { Identifier(); #line 1591 "VBNET.ATG" pexpr = new IdentifierExpression(t.val); break; } case 52: case 54: case 65: case 76: case 77: case 84: case 111: case 117: case 133: case 159: case 160: case 165: case 190: case 191: case 192: case 193: { #line 1592 "VBNET.ATG" string val = String.Empty; if (StartOf(10)) { PrimitiveTypeName( #line 1593 "VBNET.ATG" out val); } else if (la.kind == 133) { lexer.NextToken(); #line 1593 "VBNET.ATG" val = "Object"; } else SynErr(240); Expect(10); #line 1594 "VBNET.ATG" t.val = ""; Identifier(); #line 1594 "VBNET.ATG" pexpr = new FieldReferenceExpression(new TypeReferenceExpression(val), t.val); break; } case 119: { lexer.NextToken(); #line 1595 "VBNET.ATG" pexpr = new ThisReferenceExpression(); break; } case 124: case 125: { #line 1596 "VBNET.ATG" Expression retExpr = null; if (la.kind == 124) { lexer.NextToken(); #line 1597 "VBNET.ATG" retExpr = new BaseReferenceExpression(); } else if (la.kind == 125) { lexer.NextToken(); #line 1598 "VBNET.ATG" retExpr = new ClassReferenceExpression(); } else SynErr(241); Expect(10); IdentifierOrKeyword( #line 1600 "VBNET.ATG" out name); #line 1600 "VBNET.ATG" pexpr = new FieldReferenceExpression(retExpr, name); break; } case 198: { lexer.NextToken(); Expect(10); Identifier(); #line 1602 "VBNET.ATG" type = new TypeReference(t.val ?? ""); #line 1604 "VBNET.ATG" type.IsGlobal = true; #line 1605 "VBNET.ATG" pexpr = new TypeReferenceExpression(type); break; } case 127: { ObjectCreateExpression( #line 1606 "VBNET.ATG" out expr); #line 1606 "VBNET.ATG" pexpr = expr; break; } case 75: case 82: case 199: { #line 1608 "VBNET.ATG" CastType castType = CastType.Cast; if (la.kind == 82) { lexer.NextToken(); } else if (la.kind == 75) { lexer.NextToken(); #line 1610 "VBNET.ATG" castType = CastType.Conversion; } else if (la.kind == 199) { lexer.NextToken(); #line 1611 "VBNET.ATG" castType = CastType.TryCast; } else SynErr(242); Expect(24); Expr( #line 1613 "VBNET.ATG" out expr); Expect(12); TypeName( #line 1613 "VBNET.ATG" out type); Expect(25); #line 1614 "VBNET.ATG" pexpr = new CastExpression(type, expr, castType); break; } case 59: case 60: case 61: case 62: case 63: case 64: case 66: case 68: case 69: case 72: case 73: case 74: case 194: case 195: case 196: case 197: { CastTarget( #line 1615 "VBNET.ATG" out type); Expect(24); Expr( #line 1615 "VBNET.ATG" out expr); Expect(25); #line 1615 "VBNET.ATG" pexpr = new CastExpression(type, expr, CastType.PrimitiveConversion); break; } case 43: { lexer.NextToken(); Expr( #line 1616 "VBNET.ATG" out expr); #line 1616 "VBNET.ATG" pexpr = new AddressOfExpression(expr); break; } case 102: { lexer.NextToken(); Expect(24); GetTypeTypeName( #line 1617 "VBNET.ATG" out type); Expect(25); #line 1617 "VBNET.ATG" pexpr = new TypeOfExpression(type); break; } case 175: { lexer.NextToken(); SimpleExpr( #line 1618 "VBNET.ATG" out expr); Expect(113); TypeName( #line 1618 "VBNET.ATG" out type); #line 1618 "VBNET.ATG" pexpr = new TypeOfIsExpression(expr, type); break; } } } else if (la.kind == 10) { lexer.NextToken(); IdentifierOrKeyword( #line 1622 "VBNET.ATG" out name); #line 1622 "VBNET.ATG" pexpr = new FieldReferenceExpression(null, name); } else SynErr(243); } void IdentifierOrKeyword( #line 2800 "VBNET.ATG" out string name) { #line 2802 "VBNET.ATG" lexer.NextToken(); name = t.val; } void InvocationExpression( #line 1626 "VBNET.ATG" ref Expression pexpr) { #line 1627 "VBNET.ATG" List typeParameters = new List(); List parameters = null; TypeReference type; Expect(24); #line 1631 "VBNET.ATG" Location start = t.Location; if (la.kind == 200) { lexer.NextToken(); TypeName( #line 1633 "VBNET.ATG" out type); #line 1633 "VBNET.ATG" if (type != null) typeParameters.Add(type); while (la.kind == 12) { lexer.NextToken(); TypeName( #line 1636 "VBNET.ATG" out type); #line 1636 "VBNET.ATG" if (type != null) typeParameters.Add(type); } Expect(25); if (la.kind == 10) { lexer.NextToken(); Identifier(); #line 1641 "VBNET.ATG" pexpr = new FieldReferenceExpression(GetTypeReferenceExpression(pexpr, typeParameters), t.val); } else if (la.kind == 24) { lexer.NextToken(); ArgumentList( #line 1643 "VBNET.ATG" out parameters); Expect(25); #line 1645 "VBNET.ATG" pexpr = new InvocationExpression(pexpr, parameters, typeParameters); } else SynErr(244); } else if (StartOf(30)) { ArgumentList( #line 1647 "VBNET.ATG" out parameters); Expect(25); #line 1649 "VBNET.ATG" pexpr = new InvocationExpression(pexpr, parameters, typeParameters); } else SynErr(245); #line 1651 "VBNET.ATG" pexpr.StartLocation = start; pexpr.EndLocation = t.Location; } void PrimitiveTypeName( #line 2807 "VBNET.ATG" out string type) { #line 2808 "VBNET.ATG" type = String.Empty; switch (la.kind) { case 52: { lexer.NextToken(); #line 2809 "VBNET.ATG" type = "Boolean"; break; } case 76: { lexer.NextToken(); #line 2810 "VBNET.ATG" type = "Date"; break; } case 65: { lexer.NextToken(); #line 2811 "VBNET.ATG" type = "Char"; break; } case 165: { lexer.NextToken(); #line 2812 "VBNET.ATG" type = "String"; break; } case 77: { lexer.NextToken(); #line 2813 "VBNET.ATG" type = "Decimal"; break; } case 54: { lexer.NextToken(); #line 2814 "VBNET.ATG" type = "Byte"; break; } case 159: { lexer.NextToken(); #line 2815 "VBNET.ATG" type = "Short"; break; } case 111: { lexer.NextToken(); #line 2816 "VBNET.ATG" type = "Integer"; break; } case 117: { lexer.NextToken(); #line 2817 "VBNET.ATG" type = "Long"; break; } case 160: { lexer.NextToken(); #line 2818 "VBNET.ATG" type = "Single"; break; } case 84: { lexer.NextToken(); #line 2819 "VBNET.ATG" type = "Double"; break; } case 191: { lexer.NextToken(); #line 2820 "VBNET.ATG" type = "UInteger"; break; } case 192: { lexer.NextToken(); #line 2821 "VBNET.ATG" type = "ULong"; break; } case 193: { lexer.NextToken(); #line 2822 "VBNET.ATG" type = "UShort"; break; } case 190: { lexer.NextToken(); #line 2823 "VBNET.ATG" type = "SByte"; break; } default: SynErr(246); break; } } void CastTarget( #line 1656 "VBNET.ATG" out TypeReference type) { #line 1658 "VBNET.ATG" type = null; switch (la.kind) { case 59: { lexer.NextToken(); #line 1660 "VBNET.ATG" type = new TypeReference("System.Boolean"); break; } case 60: { lexer.NextToken(); #line 1661 "VBNET.ATG" type = new TypeReference("System.Byte"); break; } case 194: { lexer.NextToken(); #line 1662 "VBNET.ATG" type = new TypeReference("System.SByte"); break; } case 61: { lexer.NextToken(); #line 1663 "VBNET.ATG" type = new TypeReference("System.Char"); break; } case 62: { lexer.NextToken(); #line 1664 "VBNET.ATG" type = new TypeReference("System.DateTime"); break; } case 64: { lexer.NextToken(); #line 1665 "VBNET.ATG" type = new TypeReference("System.Decimal"); break; } case 63: { lexer.NextToken(); #line 1666 "VBNET.ATG" type = new TypeReference("System.Double"); break; } case 72: { lexer.NextToken(); #line 1667 "VBNET.ATG" type = new TypeReference("System.Int16"); break; } case 66: { lexer.NextToken(); #line 1668 "VBNET.ATG" type = new TypeReference("System.Int32"); break; } case 68: { lexer.NextToken(); #line 1669 "VBNET.ATG" type = new TypeReference("System.Int64"); break; } case 195: { lexer.NextToken(); #line 1670 "VBNET.ATG" type = new TypeReference("System.UInt16"); break; } case 196: { lexer.NextToken(); #line 1671 "VBNET.ATG" type = new TypeReference("System.UInt32"); break; } case 197: { lexer.NextToken(); #line 1672 "VBNET.ATG" type = new TypeReference("System.UInt64"); break; } case 69: { lexer.NextToken(); #line 1673 "VBNET.ATG" type = new TypeReference("System.Object"); break; } case 73: { lexer.NextToken(); #line 1674 "VBNET.ATG" type = new TypeReference("System.Single"); break; } case 74: { lexer.NextToken(); #line 1675 "VBNET.ATG" type = new TypeReference("System.String"); break; } default: SynErr(247); break; } } void GetTypeTypeName( #line 1933 "VBNET.ATG" out TypeReference typeref) { #line 1934 "VBNET.ATG" ArrayList rank = null; NonArrayTypeName( #line 1936 "VBNET.ATG" out typeref, true); ArrayTypeModifiers( #line 1937 "VBNET.ATG" out rank); #line 1938 "VBNET.ATG" if (rank != null && typeref != null) { typeref.RankSpecifier = (int[])rank.ToArray(typeof(int)); } } void ArgumentList( #line 1868 "VBNET.ATG" out List arguments) { #line 1870 "VBNET.ATG" arguments = new List(); Expression expr = null; if (StartOf(27)) { Argument( #line 1873 "VBNET.ATG" out expr); } while (la.kind == 12) { lexer.NextToken(); #line 1874 "VBNET.ATG" arguments.Add(expr ?? Expression.Null); expr = null; if (StartOf(27)) { Argument( #line 1875 "VBNET.ATG" out expr); } #line 1876 "VBNET.ATG" if (expr == null) expr = Expression.Null; } #line 1878 "VBNET.ATG" if (expr != null) arguments.Add(expr); } void ConjunctionExpr( #line 1694 "VBNET.ATG" out Expression outExpr) { #line 1696 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; NotExpr( #line 1699 "VBNET.ATG" out outExpr); while (la.kind == 45 || la.kind == 46) { if (la.kind == 45) { lexer.NextToken(); #line 1702 "VBNET.ATG" op = BinaryOperatorType.BitwiseAnd; } else { lexer.NextToken(); #line 1703 "VBNET.ATG" op = BinaryOperatorType.LogicalAnd; } NotExpr( #line 1705 "VBNET.ATG" out expr); #line 1705 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } } void NotExpr( #line 1709 "VBNET.ATG" out Expression outExpr) { #line 1710 "VBNET.ATG" UnaryOperatorType uop = UnaryOperatorType.None; while (la.kind == 129) { lexer.NextToken(); #line 1711 "VBNET.ATG" uop = UnaryOperatorType.Not; } ComparisonExpr( #line 1712 "VBNET.ATG" out outExpr); #line 1713 "VBNET.ATG" if (uop != UnaryOperatorType.None) outExpr = new UnaryOperatorExpression(outExpr, uop); } void ComparisonExpr( #line 1718 "VBNET.ATG" out Expression outExpr) { #line 1720 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; ShiftExpr( #line 1723 "VBNET.ATG" out outExpr); while (StartOf(31)) { switch (la.kind) { case 27: { lexer.NextToken(); #line 1726 "VBNET.ATG" op = BinaryOperatorType.LessThan; break; } case 26: { lexer.NextToken(); #line 1727 "VBNET.ATG" op = BinaryOperatorType.GreaterThan; break; } case 30: { lexer.NextToken(); #line 1728 "VBNET.ATG" op = BinaryOperatorType.LessThanOrEqual; break; } case 29: { lexer.NextToken(); #line 1729 "VBNET.ATG" op = BinaryOperatorType.GreaterThanOrEqual; break; } case 28: { lexer.NextToken(); #line 1730 "VBNET.ATG" op = BinaryOperatorType.InEquality; break; } case 11: { lexer.NextToken(); #line 1731 "VBNET.ATG" op = BinaryOperatorType.Equality; break; } case 116: { lexer.NextToken(); #line 1732 "VBNET.ATG" op = BinaryOperatorType.Like; break; } case 113: { lexer.NextToken(); #line 1733 "VBNET.ATG" op = BinaryOperatorType.ReferenceEquality; break; } case 189: { lexer.NextToken(); #line 1734 "VBNET.ATG" op = BinaryOperatorType.ReferenceInequality; break; } } if (StartOf(32)) { ShiftExpr( #line 1737 "VBNET.ATG" out expr); #line 1737 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } else if (la.kind == 129) { lexer.NextToken(); ShiftExpr( #line 1740 "VBNET.ATG" out expr); #line 1740 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, new UnaryOperatorExpression(expr, UnaryOperatorType.Not)); } else SynErr(248); } } void ShiftExpr( #line 1745 "VBNET.ATG" out Expression outExpr) { #line 1747 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; ConcatenationExpr( #line 1750 "VBNET.ATG" out outExpr); while (la.kind == 31 || la.kind == 32) { if (la.kind == 31) { lexer.NextToken(); #line 1753 "VBNET.ATG" op = BinaryOperatorType.ShiftLeft; } else { lexer.NextToken(); #line 1754 "VBNET.ATG" op = BinaryOperatorType.ShiftRight; } ConcatenationExpr( #line 1756 "VBNET.ATG" out expr); #line 1756 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } } void ConcatenationExpr( #line 1760 "VBNET.ATG" out Expression outExpr) { #line 1761 "VBNET.ATG" Expression expr; AdditiveExpr( #line 1763 "VBNET.ATG" out outExpr); while (la.kind == 19) { lexer.NextToken(); AdditiveExpr( #line 1763 "VBNET.ATG" out expr); #line 1763 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, BinaryOperatorType.Concat, expr); } } void AdditiveExpr( #line 1766 "VBNET.ATG" out Expression outExpr) { #line 1768 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; ModuloExpr( #line 1771 "VBNET.ATG" out outExpr); while (la.kind == 14 || la.kind == 15) { if (la.kind == 14) { lexer.NextToken(); #line 1774 "VBNET.ATG" op = BinaryOperatorType.Add; } else { lexer.NextToken(); #line 1775 "VBNET.ATG" op = BinaryOperatorType.Subtract; } ModuloExpr( #line 1777 "VBNET.ATG" out expr); #line 1777 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } } void ModuloExpr( #line 1781 "VBNET.ATG" out Expression outExpr) { #line 1782 "VBNET.ATG" Expression expr; IntegerDivisionExpr( #line 1784 "VBNET.ATG" out outExpr); while (la.kind == 120) { lexer.NextToken(); IntegerDivisionExpr( #line 1784 "VBNET.ATG" out expr); #line 1784 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, BinaryOperatorType.Modulus, expr); } } void IntegerDivisionExpr( #line 1787 "VBNET.ATG" out Expression outExpr) { #line 1788 "VBNET.ATG" Expression expr; MultiplicativeExpr( #line 1790 "VBNET.ATG" out outExpr); while (la.kind == 18) { lexer.NextToken(); MultiplicativeExpr( #line 1790 "VBNET.ATG" out expr); #line 1790 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, BinaryOperatorType.DivideInteger, expr); } } void MultiplicativeExpr( #line 1793 "VBNET.ATG" out Expression outExpr) { #line 1795 "VBNET.ATG" Expression expr; BinaryOperatorType op = BinaryOperatorType.None; UnaryExpr( #line 1798 "VBNET.ATG" out outExpr); while (la.kind == 16 || la.kind == 17) { if (la.kind == 16) { lexer.NextToken(); #line 1801 "VBNET.ATG" op = BinaryOperatorType.Multiply; } else { lexer.NextToken(); #line 1802 "VBNET.ATG" op = BinaryOperatorType.Divide; } UnaryExpr( #line 1804 "VBNET.ATG" out expr); #line 1804 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, op, expr); } } void UnaryExpr( #line 1808 "VBNET.ATG" out Expression uExpr) { #line 1810 "VBNET.ATG" Expression expr; UnaryOperatorType uop = UnaryOperatorType.None; bool isUOp = false; while (la.kind == 14 || la.kind == 15 || la.kind == 16) { if (la.kind == 14) { lexer.NextToken(); #line 1814 "VBNET.ATG" uop = UnaryOperatorType.Plus; isUOp = true; } else if (la.kind == 15) { lexer.NextToken(); #line 1815 "VBNET.ATG" uop = UnaryOperatorType.Minus; isUOp = true; } else { lexer.NextToken(); #line 1816 "VBNET.ATG" uop = UnaryOperatorType.Star; isUOp = true; } } ExponentiationExpr( #line 1818 "VBNET.ATG" out expr); #line 1820 "VBNET.ATG" if (isUOp) { uExpr = new UnaryOperatorExpression(expr, uop); } else { uExpr = expr; } } void ExponentiationExpr( #line 1828 "VBNET.ATG" out Expression outExpr) { #line 1829 "VBNET.ATG" Expression expr; SimpleExpr( #line 1831 "VBNET.ATG" out outExpr); while (la.kind == 20) { lexer.NextToken(); SimpleExpr( #line 1831 "VBNET.ATG" out expr); #line 1831 "VBNET.ATG" outExpr = new BinaryOperatorExpression(outExpr, BinaryOperatorType.Power, expr); } } void NormalOrReDimArgumentList( #line 1882 "VBNET.ATG" out List arguments, out bool canBeNormal, out bool canBeRedim) { #line 1884 "VBNET.ATG" arguments = new List(); canBeNormal = true; canBeRedim = !IsNamedAssign(); Expression expr = null; if (StartOf(27)) { Argument( #line 1889 "VBNET.ATG" out expr); if (la.kind == 172) { lexer.NextToken(); #line 1890 "VBNET.ATG" EnsureIsZero(expr); canBeNormal = false; Expr( #line 1891 "VBNET.ATG" out expr); } } while (la.kind == 12) { lexer.NextToken(); #line 1894 "VBNET.ATG" if (expr == null) canBeRedim = false; #line 1895 "VBNET.ATG" arguments.Add(expr ?? Expression.Null); expr = null; #line 1896 "VBNET.ATG" canBeRedim &= !IsNamedAssign(); if (StartOf(27)) { Argument( #line 1897 "VBNET.ATG" out expr); if (la.kind == 172) { lexer.NextToken(); #line 1898 "VBNET.ATG" EnsureIsZero(expr); canBeNormal = false; Expr( #line 1899 "VBNET.ATG" out expr); } } #line 1901 "VBNET.ATG" if (expr == null) { canBeRedim = false; expr = Expression.Null; } } #line 1903 "VBNET.ATG" if (expr != null) arguments.Add(expr); else canBeRedim = false; } void ArrayTypeModifiers( #line 1990 "VBNET.ATG" out ArrayList arrayModifiers) { #line 1992 "VBNET.ATG" arrayModifiers = new ArrayList(); int i = 0; while ( #line 1995 "VBNET.ATG" IsDims()) { Expect(24); if (la.kind == 12 || la.kind == 25) { RankList( #line 1997 "VBNET.ATG" out i); } #line 1999 "VBNET.ATG" arrayModifiers.Add(i); Expect(25); } #line 2004 "VBNET.ATG" if(arrayModifiers.Count == 0) { arrayModifiers = null; } } void Argument( #line 1907 "VBNET.ATG" out Expression argumentexpr) { #line 1909 "VBNET.ATG" Expression expr; argumentexpr = null; string name; if ( #line 1913 "VBNET.ATG" IsNamedAssign()) { Identifier(); #line 1913 "VBNET.ATG" name = t.val; Expect(13); Expect(11); Expr( #line 1913 "VBNET.ATG" out expr); #line 1915 "VBNET.ATG" argumentexpr = new NamedArgumentExpression(name, expr); } else if (StartOf(27)) { Expr( #line 1918 "VBNET.ATG" out argumentexpr); } else SynErr(249); } void QualIdentAndTypeArguments( #line 1964 "VBNET.ATG" out TypeReference typeref, bool canBeUnbound) { #line 1965 "VBNET.ATG" string name; typeref = null; Qualident( #line 1967 "VBNET.ATG" out name); #line 1968 "VBNET.ATG" typeref = new TypeReference(name); if ( #line 1969 "VBNET.ATG" la.kind == Tokens.OpenParenthesis && Peek(1).kind == Tokens.Of) { lexer.NextToken(); Expect(200); if ( #line 1971 "VBNET.ATG" canBeUnbound && (la.kind == Tokens.CloseParenthesis || la.kind == Tokens.Comma)) { #line 1972 "VBNET.ATG" typeref.GenericTypes.Add(NullTypeReference.Instance); while (la.kind == 12) { lexer.NextToken(); #line 1973 "VBNET.ATG" typeref.GenericTypes.Add(NullTypeReference.Instance); } } else if (StartOf(6)) { TypeArgumentList( #line 1974 "VBNET.ATG" typeref.GenericTypes); } else SynErr(250); Expect(25); } } void TypeArgumentList( #line 2017 "VBNET.ATG" List typeArguments) { #line 2019 "VBNET.ATG" TypeReference typeref; TypeName( #line 2021 "VBNET.ATG" out typeref); #line 2021 "VBNET.ATG" if (typeref != null) typeArguments.Add(typeref); while (la.kind == 12) { lexer.NextToken(); TypeName( #line 2024 "VBNET.ATG" out typeref); #line 2024 "VBNET.ATG" if (typeref != null) typeArguments.Add(typeref); } } void RankList( #line 2011 "VBNET.ATG" out int i) { #line 2012 "VBNET.ATG" i = 0; while (la.kind == 12) { lexer.NextToken(); #line 2013 "VBNET.ATG" ++i; } } void Attribute( #line 2049 "VBNET.ATG" out ASTAttribute attribute) { #line 2050 "VBNET.ATG" string name; List positional = new List(); List named = new List(); if (la.kind == 198) { lexer.NextToken(); Expect(10); } Qualident( #line 2055 "VBNET.ATG" out name); if (la.kind == 24) { AttributeArguments( #line 2056 "VBNET.ATG" positional, named); } #line 2057 "VBNET.ATG" attribute = new ASTAttribute(name, positional, named); } void AttributeArguments( #line 2061 "VBNET.ATG" List positional, List named) { #line 2063 "VBNET.ATG" bool nameFound = false; string name = ""; Expression expr; Expect(24); if ( #line 2069 "VBNET.ATG" IsNotClosingParenthesis()) { if ( #line 2071 "VBNET.ATG" IsNamedAssign()) { #line 2071 "VBNET.ATG" nameFound = true; IdentifierOrKeyword( #line 2072 "VBNET.ATG" out name); if (la.kind == 13) { lexer.NextToken(); } Expect(11); } Expr( #line 2074 "VBNET.ATG" out expr); #line 2076 "VBNET.ATG" if (expr != null) { if (string.IsNullOrEmpty(name)) { positional.Add(expr); } else { named.Add(new NamedArgumentExpression(name, expr)); name = ""; } } while (la.kind == 12) { lexer.NextToken(); if ( #line 2084 "VBNET.ATG" IsNamedAssign()) { #line 2084 "VBNET.ATG" nameFound = true; IdentifierOrKeyword( #line 2085 "VBNET.ATG" out name); if (la.kind == 13) { lexer.NextToken(); } Expect(11); } else if (StartOf(27)) { #line 2087 "VBNET.ATG" if (nameFound) Error("no positional argument after named argument"); } else SynErr(251); Expr( #line 2088 "VBNET.ATG" out expr); #line 2088 "VBNET.ATG" if (expr != null) { if(name == "") positional.Add(expr); else { named.Add(new NamedArgumentExpression(name, expr)); name = ""; } } } } Expect(25); } void FormalParameter( #line 2157 "VBNET.ATG" out ParameterDeclarationExpression p) { #line 2159 "VBNET.ATG" TypeReference type = null; ParamModifierList mod = new ParamModifierList(this); Expression expr = null; p = null;ArrayList arrayModifiers = null; while (StartOf(33)) { ParameterModifier( #line 2164 "VBNET.ATG" mod); } Identifier(); #line 2165 "VBNET.ATG" string parameterName = t.val; if ( #line 2166 "VBNET.ATG" IsDims()) { ArrayTypeModifiers( #line 2166 "VBNET.ATG" out arrayModifiers); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 2167 "VBNET.ATG" out type); } #line 2169 "VBNET.ATG" if(type != null) { if (arrayModifiers != null) { if (type.RankSpecifier != null) { Error("array rank only allowed one time"); } else { type.RankSpecifier = (int[])arrayModifiers.ToArray(typeof(int)); } } } else { type = new TypeReference("System.Object", arrayModifiers == null ? null : (int[])arrayModifiers.ToArray(typeof(int))); } if (la.kind == 11) { lexer.NextToken(); Expr( #line 2181 "VBNET.ATG" out expr); } #line 2183 "VBNET.ATG" mod.Check(); p = new ParameterDeclarationExpression(type, parameterName, mod.Modifier, expr); } void ParameterModifier( #line 2826 "VBNET.ATG" ParamModifierList m) { if (la.kind == 55) { lexer.NextToken(); #line 2827 "VBNET.ATG" m.Add(ParameterModifiers.In); } else if (la.kind == 53) { lexer.NextToken(); #line 2828 "VBNET.ATG" m.Add(ParameterModifiers.Ref); } else if (la.kind == 137) { lexer.NextToken(); #line 2829 "VBNET.ATG" m.Add(ParameterModifiers.Optional); } else if (la.kind == 143) { lexer.NextToken(); #line 2830 "VBNET.ATG" m.Add(ParameterModifiers.Params); } else SynErr(252); } void Statement() { #line 2210 "VBNET.ATG" Statement stmt = null; Location startPos = la.Location; string label = String.Empty; if (la.kind == 1 || la.kind == 13) { } else if ( #line 2216 "VBNET.ATG" IsLabel()) { LabelName( #line 2216 "VBNET.ATG" out label); #line 2218 "VBNET.ATG" compilationUnit.AddChild(new LabelStatement(t.val)); Expect(13); Statement(); } else if (StartOf(34)) { EmbeddedStatement( #line 2221 "VBNET.ATG" out stmt); #line 2221 "VBNET.ATG" compilationUnit.AddChild(stmt); } else if (StartOf(35)) { LocalDeclarationStatement( #line 2222 "VBNET.ATG" out stmt); #line 2222 "VBNET.ATG" compilationUnit.AddChild(stmt); } else SynErr(253); #line 2225 "VBNET.ATG" if (stmt != null) { stmt.StartLocation = startPos; stmt.EndLocation = t.Location; } } void LabelName( #line 2609 "VBNET.ATG" out string name) { #line 2611 "VBNET.ATG" name = String.Empty; if (StartOf(13)) { Identifier(); #line 2613 "VBNET.ATG" name = t.val; } else if (la.kind == 5) { lexer.NextToken(); #line 2614 "VBNET.ATG" name = t.val; } else SynErr(254); } void EmbeddedStatement( #line 2264 "VBNET.ATG" out Statement statement) { #line 2266 "VBNET.ATG" Statement embeddedStatement = null; statement = null; Expression expr = null; string name = String.Empty; List p = null; switch (la.kind) { case 94: { lexer.NextToken(); #line 2272 "VBNET.ATG" ExitType exitType = ExitType.None; switch (la.kind) { case 167: { lexer.NextToken(); #line 2274 "VBNET.ATG" exitType = ExitType.Sub; break; } case 100: { lexer.NextToken(); #line 2276 "VBNET.ATG" exitType = ExitType.Function; break; } case 146: { lexer.NextToken(); #line 2278 "VBNET.ATG" exitType = ExitType.Property; break; } case 83: { lexer.NextToken(); #line 2280 "VBNET.ATG" exitType = ExitType.Do; break; } case 98: { lexer.NextToken(); #line 2282 "VBNET.ATG" exitType = ExitType.For; break; } case 174: { lexer.NextToken(); #line 2284 "VBNET.ATG" exitType = ExitType.Try; break; } case 181: { lexer.NextToken(); #line 2286 "VBNET.ATG" exitType = ExitType.While; break; } case 155: { lexer.NextToken(); #line 2288 "VBNET.ATG" exitType = ExitType.Select; break; } default: SynErr(255); break; } #line 2290 "VBNET.ATG" statement = new ExitStatement(exitType); break; } case 174: { TryStatement( #line 2291 "VBNET.ATG" out statement); break; } case 186: { lexer.NextToken(); #line 2292 "VBNET.ATG" ContinueType continueType = ContinueType.None; if (la.kind == 83 || la.kind == 98 || la.kind == 181) { if (la.kind == 83) { lexer.NextToken(); #line 2292 "VBNET.ATG" continueType = ContinueType.Do; } else if (la.kind == 98) { lexer.NextToken(); #line 2292 "VBNET.ATG" continueType = ContinueType.For; } else { lexer.NextToken(); #line 2292 "VBNET.ATG" continueType = ContinueType.While; } } #line 2292 "VBNET.ATG" statement = new ContinueStatement(continueType); break; } case 171: { lexer.NextToken(); if (StartOf(27)) { Expr( #line 2294 "VBNET.ATG" out expr); } #line 2294 "VBNET.ATG" statement = new ThrowStatement(expr); break; } case 154: { lexer.NextToken(); if (StartOf(27)) { Expr( #line 2296 "VBNET.ATG" out expr); } #line 2296 "VBNET.ATG" statement = new ReturnStatement(expr); break; } case 168: { lexer.NextToken(); Expr( #line 2298 "VBNET.ATG" out expr); EndOfStmt(); Block( #line 2298 "VBNET.ATG" out embeddedStatement); Expect(88); Expect(168); #line 2299 "VBNET.ATG" statement = new LockStatement(expr, embeddedStatement); break; } case 149: { lexer.NextToken(); Identifier(); #line 2301 "VBNET.ATG" name = t.val; if (la.kind == 24) { lexer.NextToken(); if (StartOf(30)) { ArgumentList( #line 2302 "VBNET.ATG" out p); } Expect(25); } #line 2303 "VBNET.ATG" statement = new RaiseEventStatement(name, p); break; } case 182: { WithStatement( #line 2305 "VBNET.ATG" out statement); break; } case 42: { lexer.NextToken(); #line 2307 "VBNET.ATG" Expression handlerExpr = null; Expr( #line 2308 "VBNET.ATG" out expr); Expect(12); Expr( #line 2308 "VBNET.ATG" out handlerExpr); #line 2310 "VBNET.ATG" statement = new AddHandlerStatement(expr, handlerExpr); break; } case 152: { lexer.NextToken(); #line 2313 "VBNET.ATG" Expression handlerExpr = null; Expr( #line 2314 "VBNET.ATG" out expr); Expect(12); Expr( #line 2314 "VBNET.ATG" out handlerExpr); #line 2316 "VBNET.ATG" statement = new RemoveHandlerStatement(expr, handlerExpr); break; } case 181: { lexer.NextToken(); Expr( #line 2319 "VBNET.ATG" out expr); EndOfStmt(); Block( #line 2320 "VBNET.ATG" out embeddedStatement); Expect(88); Expect(181); #line 2322 "VBNET.ATG" statement = new DoLoopStatement(expr, embeddedStatement, ConditionType.While, ConditionPosition.Start); break; } case 83: { lexer.NextToken(); #line 2327 "VBNET.ATG" ConditionType conditionType = ConditionType.None; if (la.kind == 177 || la.kind == 181) { WhileOrUntil( #line 2330 "VBNET.ATG" out conditionType); Expr( #line 2330 "VBNET.ATG" out expr); EndOfStmt(); Block( #line 2331 "VBNET.ATG" out embeddedStatement); Expect(118); #line 2334 "VBNET.ATG" statement = new DoLoopStatement(expr, embeddedStatement, conditionType == ConditionType.While ? ConditionType.DoWhile : conditionType, ConditionPosition.Start); } else if (la.kind == 1 || la.kind == 13) { EndOfStmt(); Block( #line 2341 "VBNET.ATG" out embeddedStatement); Expect(118); if (la.kind == 177 || la.kind == 181) { WhileOrUntil( #line 2342 "VBNET.ATG" out conditionType); Expr( #line 2342 "VBNET.ATG" out expr); } #line 2344 "VBNET.ATG" statement = new DoLoopStatement(expr, embeddedStatement, conditionType, ConditionPosition.End); } else SynErr(256); break; } case 98: { lexer.NextToken(); #line 2349 "VBNET.ATG" Expression group = null; TypeReference typeReference; string typeName; Location startLocation = t.Location; if (la.kind == 85) { lexer.NextToken(); LoopControlVariable( #line 2356 "VBNET.ATG" out typeReference, out typeName); Expect(109); Expr( #line 2357 "VBNET.ATG" out group); EndOfStmt(); Block( #line 2358 "VBNET.ATG" out embeddedStatement); Expect(128); if (StartOf(27)) { Expr( #line 2359 "VBNET.ATG" out expr); } #line 2361 "VBNET.ATG" statement = new ForeachStatement(typeReference, typeName, group, embeddedStatement, expr); statement.StartLocation = startLocation; statement.EndLocation = t.EndLocation; } else if (StartOf(13)) { #line 2372 "VBNET.ATG" Expression start = null; Expression end = null; Expression step = null; Expression nextExpr = null;List nextExpressions = null; LoopControlVariable( #line 2377 "VBNET.ATG" out typeReference, out typeName); Expect(11); Expr( #line 2378 "VBNET.ATG" out start); Expect(172); Expr( #line 2378 "VBNET.ATG" out end); if (la.kind == 162) { lexer.NextToken(); Expr( #line 2378 "VBNET.ATG" out step); } EndOfStmt(); Block( #line 2379 "VBNET.ATG" out embeddedStatement); Expect(128); if (StartOf(27)) { Expr( #line 2382 "VBNET.ATG" out nextExpr); #line 2382 "VBNET.ATG" nextExpressions = new List(); nextExpressions.Add(nextExpr); while (la.kind == 12) { lexer.NextToken(); Expr( #line 2383 "VBNET.ATG" out nextExpr); #line 2383 "VBNET.ATG" nextExpressions.Add(nextExpr); } } #line 2386 "VBNET.ATG" statement = new ForNextStatement(typeReference, typeName, start, end, step, embeddedStatement, nextExpressions); } else SynErr(257); break; } case 92: { lexer.NextToken(); Expr( #line 2390 "VBNET.ATG" out expr); #line 2390 "VBNET.ATG" statement = new ErrorStatement(expr); break; } case 151: { lexer.NextToken(); #line 2392 "VBNET.ATG" bool isPreserve = false; if (la.kind == 144) { lexer.NextToken(); #line 2392 "VBNET.ATG" isPreserve = true; } ReDimClause( #line 2393 "VBNET.ATG" out expr); #line 2395 "VBNET.ATG" ReDimStatement reDimStatement = new ReDimStatement(isPreserve); statement = reDimStatement; InvocationExpression redimClause = expr as InvocationExpression; if (redimClause != null) { reDimStatement.ReDimClauses.Add(redimClause); } while (la.kind == 12) { lexer.NextToken(); ReDimClause( #line 2400 "VBNET.ATG" out expr); #line 2401 "VBNET.ATG" redimClause = expr as InvocationExpression; #line 2402 "VBNET.ATG" if (redimClause != null) { reDimStatement.ReDimClauses.Add(redimClause); } } break; } case 91: { lexer.NextToken(); Expr( #line 2406 "VBNET.ATG" out expr); #line 2407 "VBNET.ATG" List arrays = new List(); if (expr != null) { arrays.Add(expr);} EraseStatement eraseStatement = new EraseStatement(arrays); while (la.kind == 12) { lexer.NextToken(); Expr( #line 2412 "VBNET.ATG" out expr); #line 2412 "VBNET.ATG" if (expr != null) { arrays.Add(expr); } } #line 2413 "VBNET.ATG" statement = eraseStatement; break; } case 163: { lexer.NextToken(); #line 2415 "VBNET.ATG" statement = new StopStatement(); break; } case 106: { lexer.NextToken(); #line 2417 "VBNET.ATG" Location ifStartLocation = t.Location; Expr( #line 2417 "VBNET.ATG" out expr); if (la.kind == 170) { lexer.NextToken(); } if ( #line 2419 "VBNET.ATG" IsEndStmtAhead()) { Expect(88); #line 2419 "VBNET.ATG" statement = new IfElseStatement(expr, new EndStatement()); statement.StartLocation = ifStartLocation; statement.EndLocation = t.Location; } else if (la.kind == 1 || la.kind == 13) { EndOfStmt(); Block( #line 2422 "VBNET.ATG" out embeddedStatement); #line 2424 "VBNET.ATG" IfElseStatement ifStatement = new IfElseStatement(expr, embeddedStatement); ifStatement.StartLocation = ifStartLocation; Location elseIfStart; while (la.kind == 87 || #line 2430 "VBNET.ATG" IsElseIf()) { if ( #line 2430 "VBNET.ATG" IsElseIf()) { Expect(86); #line 2430 "VBNET.ATG" elseIfStart = t.Location; Expect(106); } else { lexer.NextToken(); #line 2431 "VBNET.ATG" elseIfStart = t.Location; } #line 2433 "VBNET.ATG" Expression condition = null; Statement block = null; Expr( #line 2434 "VBNET.ATG" out condition); if (la.kind == 170) { lexer.NextToken(); } EndOfStmt(); Block( #line 2435 "VBNET.ATG" out block); #line 2437 "VBNET.ATG" ElseIfSection elseIfSection = new ElseIfSection(condition, block); elseIfSection.StartLocation = elseIfStart; elseIfSection.EndLocation = t.Location; elseIfSection.Parent = ifStatement; ifStatement.ElseIfSections.Add(elseIfSection); } if (la.kind == 86) { lexer.NextToken(); EndOfStmt(); Block( #line 2446 "VBNET.ATG" out embeddedStatement); #line 2448 "VBNET.ATG" ifStatement.FalseStatement.Add(embeddedStatement); } Expect(88); Expect(106); #line 2452 "VBNET.ATG" ifStatement.EndLocation = t.Location; statement = ifStatement; } else if (StartOf(34)) { EmbeddedStatement( #line 2456 "VBNET.ATG" out embeddedStatement); #line 2458 "VBNET.ATG" IfElseStatement ifStatement = new IfElseStatement(expr, embeddedStatement); ifStatement.StartLocation = ifStartLocation; while (la.kind == 13) { lexer.NextToken(); EmbeddedStatement( #line 2461 "VBNET.ATG" out embeddedStatement); #line 2461 "VBNET.ATG" ifStatement.TrueStatement.Add(embeddedStatement); } if (la.kind == 86) { lexer.NextToken(); if (StartOf(34)) { EmbeddedStatement( #line 2463 "VBNET.ATG" out embeddedStatement); } #line 2465 "VBNET.ATG" ifStatement.FalseStatement.Add(embeddedStatement); while (la.kind == 13) { lexer.NextToken(); EmbeddedStatement( #line 2468 "VBNET.ATG" out embeddedStatement); #line 2469 "VBNET.ATG" ifStatement.FalseStatement.Add(embeddedStatement); } } #line 2472 "VBNET.ATG" ifStatement.EndLocation = ifStartLocation; statement = ifStatement; } else SynErr(258); break; } case 155: { lexer.NextToken(); if (la.kind == 57) { lexer.NextToken(); } Expr( #line 2475 "VBNET.ATG" out expr); EndOfStmt(); #line 2476 "VBNET.ATG" List selectSections = new List(); Statement block = null; while (la.kind == 57) { #line 2480 "VBNET.ATG" List caseClauses = null; lexer.NextToken(); CaseClauses( #line 2481 "VBNET.ATG" out caseClauses); if ( #line 2481 "VBNET.ATG" IsNotStatementSeparator()) { lexer.NextToken(); } EndOfStmt(); #line 2483 "VBNET.ATG" SwitchSection selectSection = new SwitchSection(caseClauses); Block( #line 2485 "VBNET.ATG" out block); #line 2487 "VBNET.ATG" selectSection.Children = block.Children; selectSections.Add(selectSection); } #line 2491 "VBNET.ATG" statement = new SwitchStatement(expr, selectSections); Expect(88); Expect(155); break; } case 135: { #line 2493 "VBNET.ATG" OnErrorStatement onErrorStatement = null; OnErrorStatement( #line 2494 "VBNET.ATG" out onErrorStatement); #line 2494 "VBNET.ATG" statement = onErrorStatement; break; } case 104: { #line 2495 "VBNET.ATG" GotoStatement goToStatement = null; GotoStatement( #line 2496 "VBNET.ATG" out goToStatement); #line 2496 "VBNET.ATG" statement = goToStatement; break; } case 153: { #line 2497 "VBNET.ATG" ResumeStatement resumeStatement = null; ResumeStatement( #line 2498 "VBNET.ATG" out resumeStatement); #line 2498 "VBNET.ATG" statement = resumeStatement; break; } case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 24: case 43: case 47: case 49: case 50: case 51: case 52: case 54: case 59: case 60: case 61: case 62: case 63: case 64: case 65: case 66: case 68: case 69: case 70: case 72: case 73: case 74: case 75: case 76: case 77: case 82: case 84: case 96: case 102: case 111: case 117: case 119: case 124: case 125: case 127: case 130: case 133: case 144: case 159: case 160: case 165: case 169: case 173: case 175: case 176: case 177: case 190: case 191: case 192: case 193: case 194: case 195: case 196: case 197: case 198: case 199: case 204: { #line 2501 "VBNET.ATG" Expression val = null; AssignmentOperatorType op; bool mustBeAssignment = la.kind == Tokens.Plus || la.kind == Tokens.Minus || la.kind == Tokens.Not || la.kind == Tokens.Times; SimpleExpr( #line 2507 "VBNET.ATG" out expr); if (StartOf(36)) { AssignmentOperator( #line 2509 "VBNET.ATG" out op); Expr( #line 2509 "VBNET.ATG" out val); #line 2509 "VBNET.ATG" expr = new AssignmentExpression(expr, op, val); } else if (la.kind == 1 || la.kind == 13 || la.kind == 86) { #line 2510 "VBNET.ATG" if (mustBeAssignment) Error("error in assignment."); } else SynErr(259); #line 2513 "VBNET.ATG" // a field reference expression that stands alone is a // invocation expression without parantheses and arguments if(expr is FieldReferenceExpression || expr is IdentifierExpression) { expr = new InvocationExpression(expr); } statement = new ExpressionStatement(expr); break; } case 56: { lexer.NextToken(); SimpleExpr( #line 2520 "VBNET.ATG" out expr); #line 2520 "VBNET.ATG" statement = new ExpressionStatement(expr); break; } case 188: { lexer.NextToken(); #line 2522 "VBNET.ATG" Statement block; if ( #line 2523 "VBNET.ATG" Peek(1).kind == Tokens.As) { #line 2524 "VBNET.ATG" LocalVariableDeclaration resourceAquisition = new LocalVariableDeclaration(Modifiers.None); VariableDeclarator( #line 2525 "VBNET.ATG" resourceAquisition.Variables); while (la.kind == 12) { lexer.NextToken(); VariableDeclarator( #line 2527 "VBNET.ATG" resourceAquisition.Variables); } Block( #line 2529 "VBNET.ATG" out block); #line 2530 "VBNET.ATG" statement = new UsingStatement(resourceAquisition, block); } else if (StartOf(27)) { Expr( #line 2531 "VBNET.ATG" out expr); Block( #line 2532 "VBNET.ATG" out block); #line 2533 "VBNET.ATG" statement = new UsingStatement(new ExpressionStatement(expr), block); } else SynErr(260); Expect(88); Expect(188); break; } default: SynErr(261); break; } } void LocalDeclarationStatement( #line 2233 "VBNET.ATG" out Statement statement) { #line 2235 "VBNET.ATG" ModifierList m = new ModifierList(); LocalVariableDeclaration localVariableDeclaration; bool dimfound = false; while (la.kind == 71 || la.kind == 81 || la.kind == 161) { if (la.kind == 71) { lexer.NextToken(); #line 2241 "VBNET.ATG" m.Add(Modifiers.Const, t.Location); } else if (la.kind == 161) { lexer.NextToken(); #line 2242 "VBNET.ATG" m.Add(Modifiers.Static, t.Location); } else { lexer.NextToken(); #line 2243 "VBNET.ATG" dimfound = true; } } #line 2246 "VBNET.ATG" if(dimfound && (m.Modifier & Modifiers.Const) != 0) { Error("Dim is not allowed on constants."); } if(m.isNone && dimfound == false) { Error("Const, Dim or Static expected"); } localVariableDeclaration = new LocalVariableDeclaration(m.Modifier); localVariableDeclaration.StartLocation = t.Location; VariableDeclarator( #line 2257 "VBNET.ATG" localVariableDeclaration.Variables); while (la.kind == 12) { lexer.NextToken(); VariableDeclarator( #line 2258 "VBNET.ATG" localVariableDeclaration.Variables); } #line 2260 "VBNET.ATG" statement = localVariableDeclaration; } void TryStatement( #line 2723 "VBNET.ATG" out Statement tryStatement) { #line 2725 "VBNET.ATG" Statement blockStmt = null, finallyStmt = null;List catchClauses = null; Expect(174); EndOfStmt(); Block( #line 2728 "VBNET.ATG" out blockStmt); if (la.kind == 58 || la.kind == 88 || la.kind == 97) { CatchClauses( #line 2729 "VBNET.ATG" out catchClauses); } if (la.kind == 97) { lexer.NextToken(); EndOfStmt(); Block( #line 2730 "VBNET.ATG" out finallyStmt); } Expect(88); Expect(174); #line 2733 "VBNET.ATG" tryStatement = new TryCatchStatement(blockStmt, catchClauses, finallyStmt); } void WithStatement( #line 2703 "VBNET.ATG" out Statement withStatement) { #line 2705 "VBNET.ATG" Statement blockStmt = null; Expression expr = null; Expect(182); #line 2708 "VBNET.ATG" Location start = t.Location; Expr( #line 2709 "VBNET.ATG" out expr); EndOfStmt(); #line 2711 "VBNET.ATG" withStatement = new WithStatement(expr); withStatement.StartLocation = start; Block( #line 2714 "VBNET.ATG" out blockStmt); #line 2716 "VBNET.ATG" ((WithStatement)withStatement).Body = (BlockStatement)blockStmt; Expect(88); Expect(182); #line 2719 "VBNET.ATG" withStatement.EndLocation = t.Location; } void WhileOrUntil( #line 2696 "VBNET.ATG" out ConditionType conditionType) { #line 2697 "VBNET.ATG" conditionType = ConditionType.None; if (la.kind == 181) { lexer.NextToken(); #line 2698 "VBNET.ATG" conditionType = ConditionType.While; } else if (la.kind == 177) { lexer.NextToken(); #line 2699 "VBNET.ATG" conditionType = ConditionType.Until; } else SynErr(262); } void LoopControlVariable( #line 2539 "VBNET.ATG" out TypeReference type, out string name) { #line 2540 "VBNET.ATG" ArrayList arrayModifiers = null; type = null; Qualident( #line 2544 "VBNET.ATG" out name); if ( #line 2545 "VBNET.ATG" IsDims()) { ArrayTypeModifiers( #line 2545 "VBNET.ATG" out arrayModifiers); } if (la.kind == 48) { lexer.NextToken(); TypeName( #line 2546 "VBNET.ATG" out type); #line 2546 "VBNET.ATG" if (name.IndexOf('.') > 0) { Error("No type def for 'for each' member indexer allowed."); } } #line 2548 "VBNET.ATG" if (type != null) { if(type.RankSpecifier != null && arrayModifiers != null) { Error("array rank only allowed one time"); } else if (arrayModifiers != null) { type.RankSpecifier = (int[])arrayModifiers.ToArray(typeof(int)); } } } void ReDimClause( #line 2618 "VBNET.ATG" out Expression expr) { SimpleNonInvocationExpression( #line 2620 "VBNET.ATG" out expr); ReDimClauseInternal( #line 2621 "VBNET.ATG" ref expr); } void CaseClauses( #line 2656 "VBNET.ATG" out List caseClauses) { #line 2658 "VBNET.ATG" caseClauses = new List(); CaseLabel caseClause = null; CaseClause( #line 2661 "VBNET.ATG" out caseClause); #line 2661 "VBNET.ATG" if (caseClause != null) { caseClauses.Add(caseClause); } while (la.kind == 12) { lexer.NextToken(); CaseClause( #line 2662 "VBNET.ATG" out caseClause); #line 2662 "VBNET.ATG" if (caseClause != null) { caseClauses.Add(caseClause); } } } void OnErrorStatement( #line 2559 "VBNET.ATG" out OnErrorStatement stmt) { #line 2561 "VBNET.ATG" stmt = null; GotoStatement goToStatement = null; Expect(135); Expect(92); if ( #line 2567 "VBNET.ATG" IsNegativeLabelName()) { Expect(104); Expect(15); Expect(5); #line 2569 "VBNET.ATG" long intLabel = Int64.Parse(t.val); if(intLabel != 1) { Error("invalid label in on error statement."); } stmt = new OnErrorStatement(new GotoStatement((intLabel * -1).ToString())); } else if (la.kind == 104) { GotoStatement( #line 2575 "VBNET.ATG" out goToStatement); #line 2577 "VBNET.ATG" string val = goToStatement.Label; // if value is numeric, make sure that is 0 try { long intLabel = Int64.Parse(val); if(intLabel != 0) { Error("invalid label in on error statement."); } } catch { } stmt = new OnErrorStatement(goToStatement); } else if (la.kind == 153) { lexer.NextToken(); Expect(128); #line 2591 "VBNET.ATG" stmt = new OnErrorStatement(new ResumeStatement(true)); } else SynErr(263); } void GotoStatement( #line 2597 "VBNET.ATG" out GotoStatement goToStatement) { #line 2599 "VBNET.ATG" string label = String.Empty; Expect(104); LabelName( #line 2602 "VBNET.ATG" out label); #line 2604 "VBNET.ATG" goToStatement = new GotoStatement(label); } void ResumeStatement( #line 2645 "VBNET.ATG" out ResumeStatement resumeStatement) { #line 2647 "VBNET.ATG" resumeStatement = null; string label = String.Empty; if ( #line 2650 "VBNET.ATG" IsResumeNext()) { Expect(153); Expect(128); #line 2651 "VBNET.ATG" resumeStatement = new ResumeStatement(true); } else if (la.kind == 153) { lexer.NextToken(); if (StartOf(37)) { LabelName( #line 2652 "VBNET.ATG" out label); } #line 2652 "VBNET.ATG" resumeStatement = new ResumeStatement(label); } else SynErr(264); } void ReDimClauseInternal( #line 2624 "VBNET.ATG" ref Expression expr) { #line 2625 "VBNET.ATG" List arguments; bool canBeNormal; bool canBeRedim; string name; while (la.kind == 10 || #line 2628 "VBNET.ATG" la.kind == Tokens.OpenParenthesis && Peek(1).kind == Tokens.Of) { if (la.kind == 10) { lexer.NextToken(); IdentifierOrKeyword( #line 2627 "VBNET.ATG" out name); #line 2627 "VBNET.ATG" expr = new FieldReferenceExpression(expr, name); } else { InvocationExpression( #line 2629 "VBNET.ATG" ref expr); } } Expect(24); NormalOrReDimArgumentList( #line 2632 "VBNET.ATG" out arguments, out canBeNormal, out canBeRedim); Expect(25); #line 2634 "VBNET.ATG" expr = new InvocationExpression(expr, arguments); if (canBeRedim == false || canBeNormal && (la.kind == Tokens.Dot || la.kind == Tokens.OpenParenthesis)) { if (this.Errors.Count == 0) { // don't recurse on parse errors - could result in endless recursion ReDimClauseInternal(ref expr); } } } void CaseClause( #line 2666 "VBNET.ATG" out CaseLabel caseClause) { #line 2668 "VBNET.ATG" Expression expr = null; Expression sexpr = null; BinaryOperatorType op = BinaryOperatorType.None; caseClause = null; if (la.kind == 86) { lexer.NextToken(); #line 2674 "VBNET.ATG" caseClause = new CaseLabel(); } else if (StartOf(38)) { if (la.kind == 113) { lexer.NextToken(); } switch (la.kind) { case 27: { lexer.NextToken(); #line 2678 "VBNET.ATG" op = BinaryOperatorType.LessThan; break; } case 26: { lexer.NextToken(); #line 2679 "VBNET.ATG" op = BinaryOperatorType.GreaterThan; break; } case 30: { lexer.NextToken(); #line 2680 "VBNET.ATG" op = BinaryOperatorType.LessThanOrEqual; break; } case 29: { lexer.NextToken(); #line 2681 "VBNET.ATG" op = BinaryOperatorType.GreaterThanOrEqual; break; } case 11: { lexer.NextToken(); #line 2682 "VBNET.ATG" op = BinaryOperatorType.Equality; break; } case 28: { lexer.NextToken(); #line 2683 "VBNET.ATG" op = BinaryOperatorType.InEquality; break; } default: SynErr(265); break; } Expr( #line 2685 "VBNET.ATG" out expr); #line 2687 "VBNET.ATG" caseClause = new CaseLabel(op, expr); } else if (StartOf(27)) { Expr( #line 2689 "VBNET.ATG" out expr); if (la.kind == 172) { lexer.NextToken(); Expr( #line 2689 "VBNET.ATG" out sexpr); } #line 2691 "VBNET.ATG" caseClause = new CaseLabel(expr, sexpr); } else SynErr(266); } void CatchClauses( #line 2738 "VBNET.ATG" out List catchClauses) { #line 2740 "VBNET.ATG" catchClauses = new List(); TypeReference type = null; Statement blockStmt = null; Expression expr = null; string name = String.Empty; while (la.kind == 58) { lexer.NextToken(); if (StartOf(13)) { Identifier(); #line 2748 "VBNET.ATG" name = t.val; if (la.kind == 48) { lexer.NextToken(); TypeName( #line 2748 "VBNET.ATG" out type); } } if (la.kind == 180) { lexer.NextToken(); Expr( #line 2749 "VBNET.ATG" out expr); } EndOfStmt(); Block( #line 2751 "VBNET.ATG" out blockStmt); #line 2752 "VBNET.ATG" catchClauses.Add(new CatchClause(type, name, blockStmt, expr)); } } public override void Parse() { VBNET(); } protected override void SynErr(int line, int col, int errorNumber) { string s; switch (errorNumber) { case 0: s = "EOF expected"; break; case 1: s = "EOL expected"; break; case 2: s = "ident expected"; break; case 3: s = "LiteralString expected"; break; case 4: s = "LiteralCharacter expected"; break; case 5: s = "LiteralInteger expected"; break; case 6: s = "LiteralDouble expected"; break; case 7: s = "LiteralSingle expected"; break; case 8: s = "LiteralDecimal expected"; break; case 9: s = "LiteralDate expected"; break; case 10: s = "\".\" expected"; break; case 11: s = "\"=\" expected"; break; case 12: s = "\",\" expected"; break; case 13: s = "\":\" expected"; break; case 14: s = "\"+\" expected"; break; case 15: s = "\"-\" expected"; break; case 16: s = "\"*\" expected"; break; case 17: s = "\"/\" expected"; break; case 18: s = "\"\\\\\" expected"; break; case 19: s = "\"&\" expected"; break; case 20: s = "\"^\" expected"; break; case 21: s = "\"?\" expected"; break; case 22: s = "\"{\" expected"; break; case 23: s = "\"}\" expected"; break; case 24: s = "\"(\" expected"; break; case 25: s = "\")\" expected"; break; case 26: s = "\">\" expected"; break; case 27: s = "\"<\" expected"; break; case 28: s = "\"<>\" expected"; break; case 29: s = "\">=\" expected"; break; case 30: s = "\"<=\" expected"; break; case 31: s = "\"<<\" expected"; break; case 32: s = "\">>\" expected"; break; case 33: s = "\"+=\" expected"; break; case 34: s = "\"^=\" expected"; break; case 35: s = "\"-=\" expected"; break; case 36: s = "\"*=\" expected"; break; case 37: s = "\"/=\" expected"; break; case 38: s = "\"\\\\=\" expected"; break; case 39: s = "\"<<=\" expected"; break; case 40: s = "\">>=\" expected"; break; case 41: s = "\"&=\" expected"; break; case 42: s = "\"AddHandler\" expected"; break; case 43: s = "\"AddressOf\" expected"; break; case 44: s = "\"Alias\" expected"; break; case 45: s = "\"And\" expected"; break; case 46: s = "\"AndAlso\" expected"; break; case 47: s = "\"Ansi\" expected"; break; case 48: s = "\"As\" expected"; break; case 49: s = "\"Assembly\" expected"; break; case 50: s = "\"Auto\" expected"; break; case 51: s = "\"Binary\" expected"; break; case 52: s = "\"Boolean\" expected"; break; case 53: s = "\"ByRef\" expected"; break; case 54: s = "\"Byte\" expected"; break; case 55: s = "\"ByVal\" expected"; break; case 56: s = "\"Call\" expected"; break; case 57: s = "\"Case\" expected"; break; case 58: s = "\"Catch\" expected"; break; case 59: s = "\"CBool\" expected"; break; case 60: s = "\"CByte\" expected"; break; case 61: s = "\"CChar\" expected"; break; case 62: s = "\"CDate\" expected"; break; case 63: s = "\"CDbl\" expected"; break; case 64: s = "\"CDec\" expected"; break; case 65: s = "\"Char\" expected"; break; case 66: s = "\"CInt\" expected"; break; case 67: s = "\"Class\" expected"; break; case 68: s = "\"CLng\" expected"; break; case 69: s = "\"CObj\" expected"; break; case 70: s = "\"Compare\" expected"; break; case 71: s = "\"Const\" expected"; break; case 72: s = "\"CShort\" expected"; break; case 73: s = "\"CSng\" expected"; break; case 74: s = "\"CStr\" expected"; break; case 75: s = "\"CType\" expected"; break; case 76: s = "\"Date\" expected"; break; case 77: s = "\"Decimal\" expected"; break; case 78: s = "\"Declare\" expected"; break; case 79: s = "\"Default\" expected"; break; case 80: s = "\"Delegate\" expected"; break; case 81: s = "\"Dim\" expected"; break; case 82: s = "\"DirectCast\" expected"; break; case 83: s = "\"Do\" expected"; break; case 84: s = "\"Double\" expected"; break; case 85: s = "\"Each\" expected"; break; case 86: s = "\"Else\" expected"; break; case 87: s = "\"ElseIf\" expected"; break; case 88: s = "\"End\" expected"; break; case 89: s = "\"EndIf\" expected"; break; case 90: s = "\"Enum\" expected"; break; case 91: s = "\"Erase\" expected"; break; case 92: s = "\"Error\" expected"; break; case 93: s = "\"Event\" expected"; break; case 94: s = "\"Exit\" expected"; break; case 95: s = "\"Explicit\" expected"; break; case 96: s = "\"False\" expected"; break; case 97: s = "\"Finally\" expected"; break; case 98: s = "\"For\" expected"; break; case 99: s = "\"Friend\" expected"; break; case 100: s = "\"Function\" expected"; break; case 101: s = "\"Get\" expected"; break; case 102: s = "\"GetType\" expected"; break; case 103: s = "\"GoSub\" expected"; break; case 104: s = "\"GoTo\" expected"; break; case 105: s = "\"Handles\" expected"; break; case 106: s = "\"If\" expected"; break; case 107: s = "\"Implements\" expected"; break; case 108: s = "\"Imports\" expected"; break; case 109: s = "\"In\" expected"; break; case 110: s = "\"Inherits\" expected"; break; case 111: s = "\"Integer\" expected"; break; case 112: s = "\"Interface\" expected"; break; case 113: s = "\"Is\" expected"; break; case 114: s = "\"Let\" expected"; break; case 115: s = "\"Lib\" expected"; break; case 116: s = "\"Like\" expected"; break; case 117: s = "\"Long\" expected"; break; case 118: s = "\"Loop\" expected"; break; case 119: s = "\"Me\" expected"; break; case 120: s = "\"Mod\" expected"; break; case 121: s = "\"Module\" expected"; break; case 122: s = "\"MustInherit\" expected"; break; case 123: s = "\"MustOverride\" expected"; break; case 124: s = "\"MyBase\" expected"; break; case 125: s = "\"MyClass\" expected"; break; case 126: s = "\"Namespace\" expected"; break; case 127: s = "\"New\" expected"; break; case 128: s = "\"Next\" expected"; break; case 129: s = "\"Not\" expected"; break; case 130: s = "\"Nothing\" expected"; break; case 131: s = "\"NotInheritable\" expected"; break; case 132: s = "\"NotOverridable\" expected"; break; case 133: s = "\"Object\" expected"; break; case 134: s = "\"Off\" expected"; break; case 135: s = "\"On\" expected"; break; case 136: s = "\"Option\" expected"; break; case 137: s = "\"Optional\" expected"; break; case 138: s = "\"Or\" expected"; break; case 139: s = "\"OrElse\" expected"; break; case 140: s = "\"Overloads\" expected"; break; case 141: s = "\"Overridable\" expected"; break; case 142: s = "\"Overrides\" expected"; break; case 143: s = "\"ParamArray\" expected"; break; case 144: s = "\"Preserve\" expected"; break; case 145: s = "\"Private\" expected"; break; case 146: s = "\"Property\" expected"; break; case 147: s = "\"Protected\" expected"; break; case 148: s = "\"Public\" expected"; break; case 149: s = "\"RaiseEvent\" expected"; break; case 150: s = "\"ReadOnly\" expected"; break; case 151: s = "\"ReDim\" expected"; break; case 152: s = "\"RemoveHandler\" expected"; break; case 153: s = "\"Resume\" expected"; break; case 154: s = "\"Return\" expected"; break; case 155: s = "\"Select\" expected"; break; case 156: s = "\"Set\" expected"; break; case 157: s = "\"Shadows\" expected"; break; case 158: s = "\"Shared\" expected"; break; case 159: s = "\"Short\" expected"; break; case 160: s = "\"Single\" expected"; break; case 161: s = "\"Static\" expected"; break; case 162: s = "\"Step\" expected"; break; case 163: s = "\"Stop\" expected"; break; case 164: s = "\"Strict\" expected"; break; case 165: s = "\"String\" expected"; break; case 166: s = "\"Structure\" expected"; break; case 167: s = "\"Sub\" expected"; break; case 168: s = "\"SyncLock\" expected"; break; case 169: s = "\"Text\" expected"; break; case 170: s = "\"Then\" expected"; break; case 171: s = "\"Throw\" expected"; break; case 172: s = "\"To\" expected"; break; case 173: s = "\"True\" expected"; break; case 174: s = "\"Try\" expected"; break; case 175: s = "\"TypeOf\" expected"; break; case 176: s = "\"Unicode\" expected"; break; case 177: s = "\"Until\" expected"; break; case 178: s = "\"Variant\" expected"; break; case 179: s = "\"Wend\" expected"; break; case 180: s = "\"When\" expected"; break; case 181: s = "\"While\" expected"; break; case 182: s = "\"With\" expected"; break; case 183: s = "\"WithEvents\" expected"; break; case 184: s = "\"WriteOnly\" expected"; break; case 185: s = "\"Xor\" expected"; break; case 186: s = "\"Continue\" expected"; break; case 187: s = "\"Operator\" expected"; break; case 188: s = "\"Using\" expected"; break; case 189: s = "\"IsNot\" expected"; break; case 190: s = "\"SByte\" expected"; break; case 191: s = "\"UInteger\" expected"; break; case 192: s = "\"ULong\" expected"; break; case 193: s = "\"UShort\" expected"; break; case 194: s = "\"CSByte\" expected"; break; case 195: s = "\"CUShort\" expected"; break; case 196: s = "\"CUInt\" expected"; break; case 197: s = "\"CULng\" expected"; break; case 198: s = "\"Global\" expected"; break; case 199: s = "\"TryCast\" expected"; break; case 200: s = "\"Of\" expected"; break; case 201: s = "\"Narrowing\" expected"; break; case 202: s = "\"Widening\" expected"; break; case 203: s = "\"Partial\" expected"; break; case 204: s = "\"Custom\" expected"; break; case 205: s = "??? expected"; break; case 206: s = "invalid OptionStmt"; break; case 207: s = "invalid OptionStmt"; break; case 208: s = "invalid GlobalAttributeSection"; break; case 209: s = "invalid GlobalAttributeSection"; break; case 210: s = "invalid NamespaceMemberDecl"; break; case 211: s = "invalid OptionValue"; break; case 212: s = "invalid EndOfStmt"; break; case 213: s = "invalid TypeModifier"; break; case 214: s = "invalid NonModuleDeclaration"; break; case 215: s = "invalid NonModuleDeclaration"; break; case 216: s = "invalid Identifier"; break; case 217: s = "invalid TypeParameterConstraints"; break; case 218: s = "invalid TypeParameterConstraint"; break; case 219: s = "invalid NonArrayTypeName"; break; case 220: s = "invalid MemberModifier"; break; case 221: s = "invalid StructureMemberDecl"; break; case 222: s = "invalid StructureMemberDecl"; break; case 223: s = "invalid StructureMemberDecl"; break; case 224: s = "invalid StructureMemberDecl"; break; case 225: s = "invalid StructureMemberDecl"; break; case 226: s = "invalid StructureMemberDecl"; break; case 227: s = "invalid StructureMemberDecl"; break; case 228: s = "invalid InterfaceMemberDecl"; break; case 229: s = "invalid InterfaceMemberDecl"; break; case 230: s = "invalid Charset"; break; case 231: s = "invalid IdentifierForFieldDeclaration"; break; case 232: s = "invalid VariableDeclaratorPartAfterIdentifier"; break; case 233: s = "invalid AccessorDecls"; break; case 234: s = "invalid EventAccessorDeclaration"; break; case 235: s = "invalid OverloadableOperator"; break; case 236: s = "invalid VariableInitializer"; break; case 237: s = "invalid EventMemberSpecifier"; break; case 238: s = "invalid EventMemberSpecifier"; break; case 239: s = "invalid AssignmentOperator"; break; case 240: s = "invalid SimpleNonInvocationExpression"; break; case 241: s = "invalid SimpleNonInvocationExpression"; break; case 242: s = "invalid SimpleNonInvocationExpression"; break; case 243: s = "invalid SimpleNonInvocationExpression"; break; case 244: s = "invalid InvocationExpression"; break; case 245: s = "invalid InvocationExpression"; break; case 246: s = "invalid PrimitiveTypeName"; break; case 247: s = "invalid CastTarget"; break; case 248: s = "invalid ComparisonExpr"; break; case 249: s = "invalid Argument"; break; case 250: s = "invalid QualIdentAndTypeArguments"; break; case 251: s = "invalid AttributeArguments"; break; case 252: s = "invalid ParameterModifier"; break; case 253: s = "invalid Statement"; break; case 254: s = "invalid LabelName"; break; case 255: s = "invalid EmbeddedStatement"; break; case 256: s = "invalid EmbeddedStatement"; break; case 257: s = "invalid EmbeddedStatement"; break; case 258: s = "invalid EmbeddedStatement"; break; case 259: s = "invalid EmbeddedStatement"; break; case 260: s = "invalid EmbeddedStatement"; break; case 261: s = "invalid EmbeddedStatement"; break; case 262: s = "invalid WhileOrUntil"; break; case 263: s = "invalid OnErrorStatement"; break; case 264: s = "invalid ResumeStatement"; break; case 265: s = "invalid CaseClause"; break; case 266: s = "invalid CaseClause"; break; default: s = "error " + errorNumber; break; } this.Errors.Error(line, col, s); } private bool StartOf(int s) { return set[s, lexer.LookAhead.kind]; } static bool[,] set = { {T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,T,T,x, x,x,T,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,T,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,x, x,x,x,x, x,T,x,T, x,x,T,x, x,x,x,x, T,T,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,T,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,x,x, x,x,T,x, x,x,x,x, T,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,T,x, x,x,x,x, T,T,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,x,x, x,x,T,x, x,x,x,x, T,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,T,T, x,x,x,x, x,x,T,T, T,T,x,x, x,x,x,x, x,x,T,x, x,T,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,T,T,T, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, T,T,T,x, T,T,T,T, T,x,T,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,T,T, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,T, T,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,T,T,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, T,T,T,x, x,T,x,T, T,x,T,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,T,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, T,T,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,T, T,T,x,x, x,x,x,x, x,x,T,x, x,T,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,T,T,T, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, T,T,T,x, x,T,T,T, T,x,T,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x}, {x,T,T,T, T,T,T,T, T,T,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,T, x,T,T,T, T,x,T,x, T,x,x,T, T,T,T,T, T,T,T,x, T,T,T,T, T,T,T,T, T,T,x,x, x,T,T,T, T,x,x,x, T,x,x,T, T,x,T,x, T,x,T,x, x,x,T,x, T,x,T,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,T, x,x,x,x, x,x,x,x, T,x,x,x, x,T,x,T, T,T,T,T, x,x,x,T, T,T,x,T, x,T,x,x, T,T,x,T, x,T,T,T, T,T,x,x, x,T,T,x, x,x,T,x, T,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, T,T,T,x, x,T,T,T, T,x,T,x, x,x,x,x, x,T,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,T,T,T, T,T,T,T, T,T,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,T, x,T,T,T, T,x,T,x, T,x,x,T, T,T,T,T, T,T,T,x, T,T,T,T, T,T,T,T, T,T,x,x, x,T,T,T, T,x,x,x, x,x,x,T, T,x,T,x, T,x,T,x, x,x,T,x, T,x,T,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,T, x,x,x,x, x,x,x,x, T,x,x,x, x,T,x,T, T,T,T,T, x,x,x,T, T,T,x,T, x,T,x,x, T,T,x,T, x,T,T,T, T,T,x,x, x,T,T,x, x,x,T,x, T,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,T,T,T, T,T,T,T, T,T,T,T, T,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,T, T,T,T,T, T,x,T,x, T,x,x,T, T,T,T,T, T,T,T,x, T,T,T,T, T,T,T,T, T,T,x,x, x,T,T,T, T,x,x,x, T,x,x,T, T,x,T,x, T,x,T,x, x,x,T,x, T,x,T,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,T, x,x,x,x, x,x,x,x, T,x,x,x, x,T,x,T, T,T,T,T, x,x,x,T, T,T,x,T, x,T,x,x, T,T,x,T, x,T,T,T, T,T,x,x, x,T,T,x, x,x,T,x, T,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,T, T,T,T,T, T,T,T,x, x,x,T,T, T,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,T,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,T,x,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,T,T, T,T,T,T, T,T,T,x, x,x,T,T, T,x,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,T,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,T,x,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,T,T, T,T,T,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,T,x,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,T,T, T,T,T,T, T,T,T,x, T,x,T,T, T,x,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,T,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,T,x,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,T, T,T,T,T, T,T,T,x, x,x,T,T, T,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,T, x,T,T,T, T,x,T,x, x,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,x, T,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,T,x, x,x,x,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, T,x,x,x, x,T,x,x, x,T,x,x, x,T,x,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,T, T,T,T,T, T,T,T,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,T, x,T,T,T, T,x,T,x, T,x,x,T, T,T,T,T, T,T,T,x, T,T,T,x, T,T,T,T, T,T,x,x, x,x,T,T, T,x,x,x, x,x,x,T, T,x,T,x, T,x,T,x, x,x,T,x, T,x,T,x, x,x,x,T, x,x,x,x, x,T,x,T, x,x,x,x, T,T,x,T, x,x,T,x, x,T,x,T, x,x,x,x, x,x,x,x, T,x,x,x, x,T,x,T, T,T,T,T, x,x,x,T, T,x,x,T, x,T,x,x, T,T,x,T, x,T,T,T, T,T,x,x, x,T,T,x, x,x,T,x, T,x,T,T, T,T,T,T, T,T,T,T, x,x,x,x, T,x,x}, {x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,T,T, T,T,T,T, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x}, {x,x,T,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,T, x,T,T,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, T,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, T,x,x}, {x,x,x,x, x,x,x,x, x,x,x,T, x,x,x,x, x,x,x,x, x,x,x,x, x,x,T,T, T,T,T,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,T,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x} }; } // end Parser }