diff --git a/src/HotChocolate/Core/test/Abstractions.Tests/Execution/__snapshots__/OperationRequestBuilderTests.BuildRequest_OnlyQueryDocIsSet_RequestHasOnlyQuery.snap b/src/HotChocolate/Core/test/Abstractions.Tests/Execution/__snapshots__/OperationRequestBuilderTests.BuildRequest_OnlyQueryDocIsSet_RequestHasOnlyQuery.snap index 15fbd505829..75657bfe1c0 100644 --- a/src/HotChocolate/Core/test/Abstractions.Tests/Execution/__snapshots__/OperationRequestBuilderTests.BuildRequest_OnlyQueryDocIsSet_RequestHasOnlyQuery.snap +++ b/src/HotChocolate/Core/test/Abstractions.Tests/Execution/__snapshots__/OperationRequestBuilderTests.BuildRequest_OnlyQueryDocIsSet_RequestHasOnlyQuery.snap @@ -45,7 +45,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 7, + "End": 5, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field.snap b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field.snap index fb8497ba68a..64f9325db0d 100644 --- a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field.snap +++ b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 16, + "End": 14, "Line": 2, "Column": 5 }, diff --git a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_Message.snap b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_Message.snap index 66f6cce3e58..e0603948c34 100644 --- a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_Message.snap +++ b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_Message.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 16, + "End": 14, "Line": 2, "Column": 5 }, diff --git a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_MessageFactory.snap b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_MessageFactory.snap index 9037a66d858..4a0af07479c 100644 --- a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_MessageFactory.snap +++ b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Schema_Field_Custom_MessageFactory.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 16, + "End": 14, "Line": 2, "Column": 5 }, diff --git a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Type_Field.snap b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Type_Field.snap index 9d7d723bbfa..afc263056a8 100644 --- a/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Type_Field.snap +++ b/src/HotChocolate/Core/test/Validation.Tests/__snapshots__/IntrospectionRuleTests.IntrospectionNotAllowed_Type_Field.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 13, + "End": 12, "Line": 2, "Column": 5 }, diff --git a/src/HotChocolate/Language/src/Language.Utf8/Utf8GraphQLParser.Utilities.cs b/src/HotChocolate/Language/src/Language.Utf8/Utf8GraphQLParser.Utilities.cs index a7be817cc30..25e31a3c82b 100644 --- a/src/HotChocolate/Language/src/Language.Utf8/Utf8GraphQLParser.Utilities.cs +++ b/src/HotChocolate/Language/src/Language.Utf8/Utf8GraphQLParser.Utilities.cs @@ -11,8 +11,8 @@ public ref partial struct Utf8GraphQLParser private NameNode ParseName() { var start = Start(); - var name = ExpectName(); var location = CreateLocation(in start); + var name = ExpectName(); return new NameNode ( diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/DirectiveParserTests.ParseQueryDirective.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/DirectiveParserTests.ParseQueryDirective.snap index 764419e590c..d720a119d37 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/DirectiveParserTests.ParseQueryDirective.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/DirectiveParserTests.ParseQueryDirective.snap @@ -38,7 +38,7 @@ "Kind": "Name", "Location": { "Start": 25, - "End": 29, + "End": 28, "Line": 2, "Column": 25 }, @@ -57,7 +57,7 @@ "Kind": "Name", "Location": { "Start": 30, - "End": 38, + "End": 37, "Line": 2, "Column": 30 }, @@ -81,7 +81,7 @@ "Kind": "Name", "Location": { "Start": 40, - "End": 49, + "End": 47, "Line": 2, "Column": 40 }, @@ -114,7 +114,7 @@ "Kind": "Name", "Location": { "Start": 70, - "End": 93, + "End": 75, "Line": 3, "Column": 21 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_ByteArray.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_ByteArray.snap index 60372c432e6..33ec32bd4d1 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_ByteArray.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_ByteArray.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 4, - "End": 6, + "End": 5, "Line": 1, "Column": 5 }, @@ -44,7 +44,7 @@ "Kind": "Name", "Location": { "Start": 0, - "End": 4, + "End": 3, "Line": 1, "Column": 1 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_Reader.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_Reader.snap index 60372c432e6..33ec32bd4d1 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_Reader.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_Reader.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 4, - "End": 6, + "End": 5, "Line": 1, "Column": 5 }, @@ -44,7 +44,7 @@ "Kind": "Name", "Location": { "Start": 0, - "End": 4, + "End": 3, "Line": 1, "Column": 1 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_String.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_String.snap index 60372c432e6..33ec32bd4d1 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_String.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_FieldNode_From_String.snap @@ -14,7 +14,7 @@ "Kind": "Name", "Location": { "Start": 4, - "End": 6, + "End": 5, "Line": 1, "Column": 5 }, @@ -44,7 +44,7 @@ "Kind": "Name", "Location": { "Start": 0, - "End": 4, + "End": 3, "Line": 1, "Column": 1 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_ByteArray.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_ByteArray.snap index bf8b799d9ec..0384bd5e87d 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_ByteArray.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_ByteArray.snap @@ -19,7 +19,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 4, + "End": 3, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_Reader.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_Reader.snap index bf8b799d9ec..0384bd5e87d 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_Reader.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_Reader.snap @@ -19,7 +19,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 4, + "End": 3, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_String.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_String.snap index bf8b799d9ec..0384bd5e87d 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_String.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_ObjectValueNode_From_String.snap @@ -19,7 +19,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 4, + "End": 3, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_ByteArray.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_ByteArray.snap index c9f9a898227..54f93d8e803 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_ByteArray.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_ByteArray.snap @@ -23,7 +23,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 8, + "End": 7, "Line": 1, "Column": 7 }, @@ -53,7 +53,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 6, + "End": 5, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_Reader.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_Reader.snap index c9f9a898227..54f93d8e803 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_Reader.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_Reader.snap @@ -23,7 +23,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 8, + "End": 7, "Line": 1, "Column": 7 }, @@ -53,7 +53,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 6, + "End": 5, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_String.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_String.snap index c9f9a898227..54f93d8e803 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_String.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/GraphQLParserSyntaxTests.Parse_SelectionSetNode_From_String.snap @@ -23,7 +23,7 @@ "Kind": "Name", "Location": { "Start": 6, - "End": 8, + "End": 7, "Line": 1, "Column": 7 }, @@ -53,7 +53,7 @@ "Kind": "Name", "Location": { "Start": 2, - "End": 6, + "End": 5, "Line": 1, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap index 5cb566fb751..0aed1092d0b 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQuery.snap @@ -77,7 +77,7 @@ AST: "Kind": "Name", "Location": { "Start": 178, - "End": 188, + "End": 187, "Line": 6, "Column": 7 }, @@ -105,7 +105,7 @@ AST: "Kind": "Name", "Location": { "Start": 189, - "End": 193, + "End": 192, "Line": 6, "Column": 18 }, @@ -124,7 +124,7 @@ AST: "Kind": "Name", "Location": { "Start": 194, - "End": 208, + "End": 205, "Line": 6, "Column": 23 }, @@ -154,7 +154,7 @@ AST: "Kind": "Name", "Location": { "Start": 208, - "End": 213, + "End": 212, "Line": 6, "Column": 37 }, @@ -173,7 +173,7 @@ AST: "Kind": "Name", "Location": { "Start": 214, - "End": 220, + "End": 218, "Line": 6, "Column": 43 }, @@ -209,7 +209,7 @@ AST: "Kind": "Name", "Location": { "Start": 233, - "End": 246, + "End": 245, "Line": 7, "Column": 3 }, @@ -228,7 +228,7 @@ AST: "Kind": "Name", "Location": { "Start": 252, - "End": 255, + "End": 254, "Line": 7, "Column": 22 }, @@ -291,7 +291,7 @@ AST: "Kind": "Name", "Location": { "Start": 274, - "End": 286, + "End": 276, "Line": 8, "Column": 5 }, @@ -319,7 +319,7 @@ AST: "Kind": "Name", "Location": { "Start": 290, - "End": 296, + "End": 294, "Line": 9, "Column": 12 }, @@ -339,7 +339,7 @@ AST: "Kind": "Name", "Location": { "Start": 296, - "End": 303, + "End": 301, "Line": 9, "Column": 18 }, @@ -385,7 +385,7 @@ AST: "Kind": "Name", "Location": { "Start": 327, - "End": 345, + "End": 329, "Line": 11, "Column": 9 }, @@ -399,7 +399,7 @@ AST: "Kind": "Name", "Location": { "Start": 340, - "End": 346, + "End": 345, "Line": 12, "Column": 9 }, @@ -418,7 +418,7 @@ AST: "Kind": "Name", "Location": { "Start": 354, - "End": 360, + "End": 359, "Line": 12, "Column": 23 }, @@ -447,7 +447,7 @@ AST: "Kind": "Name", "Location": { "Start": 364, - "End": 370, + "End": 369, "Line": 12, "Column": 33 }, @@ -465,7 +465,7 @@ AST: "Kind": "Name", "Location": { "Start": 371, - "End": 376, + "End": 374, "Line": 12, "Column": 40 }, @@ -498,7 +498,7 @@ AST: "Kind": "Name", "Location": { "Start": 408, - "End": 425, + "End": 410, "Line": 13, "Column": 11 }, @@ -518,7 +518,7 @@ AST: "Kind": "Name", "Location": { "Start": 425, - "End": 439, + "End": 429, "Line": 14, "Column": 14 }, @@ -538,7 +538,7 @@ AST: "Kind": "Name", "Location": { "Start": 347, - "End": 354, + "End": 353, "Line": 12, "Column": 16 }, @@ -557,7 +557,7 @@ AST: "Kind": "Name", "Location": { "Start": 378, - "End": 386, + "End": 385, "Line": 12, "Column": 47 }, @@ -576,7 +576,7 @@ AST: "Kind": "Name", "Location": { "Start": 386, - "End": 389, + "End": 388, "Line": 12, "Column": 55 }, @@ -594,7 +594,7 @@ AST: "Kind": "Name", "Location": { "Start": 391, - "End": 395, + "End": 394, "Line": 12, "Column": 60 }, @@ -618,7 +618,7 @@ AST: "Kind": "Name", "Location": { "Start": 310, - "End": 318, + "End": 316, "Line": 10, "Column": 7 }, @@ -651,7 +651,7 @@ AST: "Kind": "Name", "Location": { "Start": 463, - "End": 468, + "End": 467, "Line": 18, "Column": 10 }, @@ -670,7 +670,7 @@ AST: "Kind": "Name", "Location": { "Start": 468, - "End": 475, + "End": 474, "Line": 18, "Column": 15 }, @@ -688,7 +688,7 @@ AST: "Kind": "Name", "Location": { "Start": 477, - "End": 481, + "End": 480, "Line": 18, "Column": 24 }, @@ -723,7 +723,7 @@ AST: "Kind": "Name", "Location": { "Start": 490, - "End": 498, + "End": 492, "Line": 19, "Column": 7 }, @@ -768,7 +768,7 @@ AST: "Kind": "Name", "Location": { "Start": 515, - "End": 523, + "End": 517, "Line": 22, "Column": 7 }, @@ -791,7 +791,7 @@ AST: "Kind": "Name", "Location": { "Start": 247, - "End": 252, + "End": 251, "Line": 7, "Column": 17 }, @@ -814,7 +814,7 @@ AST: "Kind": "Name", "Location": { "Start": 540, - "End": 551, + "End": 549, "Line": 27, "Column": 10 }, @@ -848,7 +848,7 @@ AST: "Kind": "Name", "Location": { "Start": 559, - "End": 565, + "End": 564, "Line": 28, "Column": 8 }, @@ -903,7 +903,7 @@ AST: "Kind": "Name", "Location": { "Start": 598, - "End": 606, + "End": 600, "Line": 30, "Column": 7 }, @@ -923,7 +923,7 @@ AST: "Kind": "Name", "Location": { "Start": 584, - "End": 591, + "End": 589, "Line": 29, "Column": 5 }, @@ -943,7 +943,7 @@ AST: "Kind": "Name", "Location": { "Start": 554, - "End": 559, + "End": 558, "Line": 28, "Column": 3 }, @@ -962,7 +962,7 @@ AST: "Kind": "Name", "Location": { "Start": 572, - "End": 579, + "End": 577, "Line": 28, "Column": 21 }, @@ -987,7 +987,7 @@ AST: "Kind": "Name", "Location": { "Start": 627, - "End": 649, + "End": 648, "Line": 35, "Column": 14 }, @@ -1015,7 +1015,7 @@ AST: "Kind": "Name", "Location": { "Start": 650, - "End": 656, + "End": 655, "Line": 35, "Column": 37 }, @@ -1034,7 +1034,7 @@ AST: "Kind": "Name", "Location": { "Start": 657, - "End": 681, + "End": 680, "Line": 35, "Column": 44 }, @@ -1071,7 +1071,7 @@ AST: "Kind": "Name", "Location": { "Start": 705, - "End": 711, + "End": 710, "Line": 36, "Column": 22 }, @@ -1089,7 +1089,7 @@ AST: "Kind": "Name", "Location": { "Start": 713, - "End": 719, + "End": 718, "Line": 36, "Column": 30 }, @@ -1148,7 +1148,7 @@ AST: "Kind": "Name", "Location": { "Start": 757, - "End": 770, + "End": 762, "Line": 39, "Column": 9 }, @@ -1168,7 +1168,7 @@ AST: "Kind": "Name", "Location": { "Start": 740, - "End": 748, + "End": 746, "Line": 38, "Column": 7 }, @@ -1204,7 +1204,7 @@ AST: "Kind": "Name", "Location": { "Start": 800, - "End": 812, + "End": 804, "Line": 42, "Column": 9 }, @@ -1224,7 +1224,7 @@ AST: "Kind": "Name", "Location": { "Start": 777, - "End": 791, + "End": 789, "Line": 41, "Column": 7 }, @@ -1244,7 +1244,7 @@ AST: "Kind": "Name", "Location": { "Start": 726, - "End": 733, + "End": 731, "Line": 37, "Column": 5 }, @@ -1264,7 +1264,7 @@ AST: "Kind": "Name", "Location": { "Start": 686, - "End": 705, + "End": 704, "Line": 36, "Column": 3 }, @@ -1290,7 +1290,7 @@ AST: "Kind": "Name", "Location": { "Start": 843, - "End": 851, + "End": 849, "Line": 48, "Column": 18 }, @@ -1322,7 +1322,7 @@ AST: "Kind": "Name", "Location": { "Start": 858, - "End": 863, + "End": 862, "Line": 49, "Column": 7 }, @@ -1340,7 +1340,7 @@ AST: "Kind": "Name", "Location": { "Start": 865, - "End": 874, + "End": 869, "Line": 49, "Column": 14 }, @@ -1360,7 +1360,7 @@ AST: "Kind": "Name", "Location": { "Start": 871, - "End": 875, + "End": 874, "Line": 49, "Column": 20 }, @@ -1378,7 +1378,7 @@ AST: "Kind": "Name", "Location": { "Start": 877, - "End": 883, + "End": 878, "Line": 49, "Column": 26 }, @@ -1398,7 +1398,7 @@ AST: "Kind": "Name", "Location": { "Start": 880, - "End": 884, + "End": 883, "Line": 49, "Column": 29 }, @@ -1425,7 +1425,7 @@ AST: "Kind": "Name", "Location": { "Start": 886, - "End": 890, + "End": 889, "Line": 49, "Column": 35 }, @@ -1455,7 +1455,7 @@ AST: "Kind": "Name", "Location": { "Start": 900, - "End": 906, + "End": 905, "Line": 49, "Column": 49 }, @@ -1488,7 +1488,7 @@ AST: "Kind": "Name", "Location": { "Start": 854, - "End": 858, + "End": 857, "Line": 49, "Column": 3 }, @@ -1508,7 +1508,7 @@ AST: "Kind": "Name", "Location": { "Start": 835, - "End": 842, + "End": 839, "Line": 48, "Column": 10 }, @@ -1553,7 +1553,7 @@ AST: "Kind": "Name", "Location": { "Start": 965, - "End": 972, + "End": 971, "Line": 57, "Column": 11 }, @@ -1582,7 +1582,7 @@ AST: "Kind": "Name", "Location": { "Start": 979, - "End": 986, + "End": 985, "Line": 57, "Column": 25 }, @@ -1611,7 +1611,7 @@ AST: "Kind": "Name", "Location": { "Start": 994, - "End": 1002, + "End": 1001, "Line": 57, "Column": 40 }, @@ -1640,7 +1640,7 @@ AST: "Kind": "Name", "Location": { "Start": 957, - "End": 965, + "End": 964, "Line": 57, "Column": 3 }, @@ -1663,7 +1663,7 @@ AST: "Kind": "Name", "Location": { "Start": 1012, - "End": 1019, + "End": 1017, "Line": 58, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQueryNullability.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQueryNullability.snap index 0085fc50026..19963377c14 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQueryNullability.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkQueryNullability.snap @@ -117,7 +117,7 @@ AST: "Kind": "Name", "Location": { "Start": 6, - "End": 16, + "End": 15, "Line": 1, "Column": 7 }, @@ -145,7 +145,7 @@ AST: "Kind": "Name", "Location": { "Start": 17, - "End": 21, + "End": 20, "Line": 1, "Column": 18 }, @@ -164,7 +164,7 @@ AST: "Kind": "Name", "Location": { "Start": 22, - "End": 36, + "End": 33, "Line": 1, "Column": 23 }, @@ -194,7 +194,7 @@ AST: "Kind": "Name", "Location": { "Start": 36, - "End": 41, + "End": 40, "Line": 1, "Column": 37 }, @@ -213,7 +213,7 @@ AST: "Kind": "Name", "Location": { "Start": 42, - "End": 48, + "End": 46, "Line": 1, "Column": 43 }, @@ -246,7 +246,7 @@ AST: "Kind": "Name", "Location": { "Start": 58, - "End": 67, + "End": 65, "Line": 1, "Column": 59 }, @@ -270,7 +270,7 @@ AST: "Kind": "Name", "Location": { "Start": 70, - "End": 83, + "End": 82, "Line": 2, "Column": 3 }, @@ -289,7 +289,7 @@ AST: "Kind": "Name", "Location": { "Start": 89, - "End": 92, + "End": 91, "Line": 2, "Column": 22 }, @@ -354,7 +354,7 @@ AST: "Kind": "Name", "Location": { "Start": 111, - "End": 121, + "End": 113, "Line": 3, "Column": 5 }, @@ -382,7 +382,7 @@ AST: "Kind": "Name", "Location": { "Start": 125, - "End": 131, + "End": 129, "Line": 4, "Column": 12 }, @@ -402,7 +402,7 @@ AST: "Kind": "Name", "Location": { "Start": 131, - "End": 149, + "End": 147, "Line": 4, "Column": 18 }, @@ -450,7 +450,7 @@ AST: "Kind": "Name", "Location": { "Start": 173, - "End": 189, + "End": 175, "Line": 6, "Column": 9 }, @@ -464,7 +464,7 @@ AST: "Kind": "Name", "Location": { "Start": 184, - "End": 190, + "End": 189, "Line": 7, "Column": 9 }, @@ -483,7 +483,7 @@ AST: "Kind": "Name", "Location": { "Start": 198, - "End": 204, + "End": 203, "Line": 7, "Column": 23 }, @@ -512,7 +512,7 @@ AST: "Kind": "Name", "Location": { "Start": 209, - "End": 215, + "End": 214, "Line": 7, "Column": 34 }, @@ -530,7 +530,7 @@ AST: "Kind": "Name", "Location": { "Start": 217, - "End": 221, + "End": 220, "Line": 7, "Column": 42 }, @@ -565,7 +565,7 @@ AST: "Kind": "Name", "Location": { "Start": 253, - "End": 270, + "End": 255, "Line": 8, "Column": 11 }, @@ -585,7 +585,7 @@ AST: "Kind": "Name", "Location": { "Start": 270, - "End": 276, + "End": 274, "Line": 9, "Column": 15 }, @@ -604,7 +604,7 @@ AST: "Kind": "Name", "Location": { "Start": 276, - "End": 303, + "End": 292, "Line": 9, "Column": 21 }, @@ -626,7 +626,7 @@ AST: "Kind": "Name", "Location": { "Start": 191, - "End": 198, + "End": 197, "Line": 7, "Column": 16 }, @@ -645,7 +645,7 @@ AST: "Kind": "Name", "Location": { "Start": 223, - "End": 231, + "End": 230, "Line": 7, "Column": 48 }, @@ -664,7 +664,7 @@ AST: "Kind": "Name", "Location": { "Start": 231, - "End": 234, + "End": 233, "Line": 7, "Column": 56 }, @@ -682,7 +682,7 @@ AST: "Kind": "Name", "Location": { "Start": 236, - "End": 240, + "End": 239, "Line": 7, "Column": 61 }, @@ -706,7 +706,7 @@ AST: "Kind": "Name", "Location": { "Start": 156, - "End": 164, + "End": 162, "Line": 5, "Column": 7 }, @@ -739,7 +739,7 @@ AST: "Kind": "Name", "Location": { "Start": 320, - "End": 327, + "End": 326, "Line": 12, "Column": 8 }, @@ -753,7 +753,7 @@ AST: "Kind": "Name", "Location": { "Start": 335, - "End": 350, + "End": 349, "Line": 13, "Column": 8 }, @@ -781,7 +781,7 @@ AST: "Kind": "Name", "Location": { "Start": 351, - "End": 358, + "End": 357, "Line": 13, "Column": 24 }, @@ -814,7 +814,7 @@ AST: "Kind": "Name", "Location": { "Start": 366, - "End": 373, + "End": 372, "Line": 14, "Column": 8 }, @@ -828,7 +828,7 @@ AST: "Kind": "Name", "Location": { "Start": 381, - "End": 396, + "End": 395, "Line": 15, "Column": 8 }, @@ -856,7 +856,7 @@ AST: "Kind": "Name", "Location": { "Start": 397, - "End": 404, + "End": 403, "Line": 15, "Column": 24 }, @@ -870,7 +870,7 @@ AST: "Kind": "Name", "Location": { "Start": 412, - "End": 439, + "End": 438, "Line": 16, "Column": 8 }, @@ -907,7 +907,7 @@ AST: "Kind": "Name", "Location": { "Start": 440, - "End": 450, + "End": 449, "Line": 16, "Column": 36 }, @@ -921,7 +921,7 @@ AST: "Kind": "Name", "Location": { "Start": 460, - "End": 487, + "End": 486, "Line": 17, "Column": 8 }, @@ -958,7 +958,7 @@ AST: "Kind": "Name", "Location": { "Start": 488, - "End": 498, + "End": 497, "Line": 17, "Column": 36 }, @@ -972,7 +972,7 @@ AST: "Kind": "Name", "Location": { "Start": 508, - "End": 538, + "End": 537, "Line": 18, "Column": 8 }, @@ -1018,7 +1018,7 @@ AST: "Kind": "Name", "Location": { "Start": 539, - "End": 549, + "End": 548, "Line": 18, "Column": 39 }, @@ -1032,7 +1032,7 @@ AST: "Kind": "Name", "Location": { "Start": 560, - "End": 587, + "End": 586, "Line": 19, "Column": 8 }, @@ -1069,7 +1069,7 @@ AST: "Kind": "Name", "Location": { "Start": 588, - "End": 598, + "End": 597, "Line": 19, "Column": 36 }, @@ -1083,7 +1083,7 @@ AST: "Kind": "Name", "Location": { "Start": 608, - "End": 635, + "End": 634, "Line": 20, "Column": 8 }, @@ -1120,7 +1120,7 @@ AST: "Kind": "Name", "Location": { "Start": 636, - "End": 646, + "End": 645, "Line": 20, "Column": 36 }, @@ -1134,7 +1134,7 @@ AST: "Kind": "Name", "Location": { "Start": 656, - "End": 686, + "End": 685, "Line": 21, "Column": 8 }, @@ -1180,7 +1180,7 @@ AST: "Kind": "Name", "Location": { "Start": 687, - "End": 697, + "End": 696, "Line": 21, "Column": 39 }, @@ -1194,7 +1194,7 @@ AST: "Kind": "Name", "Location": { "Start": 708, - "End": 729, + "End": 728, "Line": 22, "Column": 8 }, @@ -1276,7 +1276,7 @@ AST: "Kind": "Name", "Location": { "Start": 730, - "End": 740, + "End": 739, "Line": 22, "Column": 30 }, @@ -1323,7 +1323,7 @@ AST: "Kind": "Name", "Location": { "Start": 776, - "End": 791, + "End": 782, "Line": 24, "Column": 10 }, @@ -1343,7 +1343,7 @@ AST: "Kind": "Name", "Location": { "Start": 757, - "End": 764, + "End": 763, "Line": 23, "Column": 8 }, @@ -1357,7 +1357,7 @@ AST: "Kind": "Name", "Location": { "Start": 799, - "End": 814, + "End": 813, "Line": 26, "Column": 8 }, @@ -1399,7 +1399,7 @@ AST: "Kind": "Name", "Location": { "Start": 834, - "End": 849, + "End": 840, "Line": 27, "Column": 10 }, @@ -1419,7 +1419,7 @@ AST: "Kind": "Name", "Location": { "Start": 815, - "End": 822, + "End": 821, "Line": 26, "Column": 24 }, @@ -1466,7 +1466,7 @@ AST: "Kind": "Name", "Location": { "Start": 876, - "End": 892, + "End": 883, "Line": 30, "Column": 10 }, @@ -1486,7 +1486,7 @@ AST: "Kind": "Name", "Location": { "Start": 857, - "End": 864, + "End": 863, "Line": 29, "Column": 8 }, @@ -1500,7 +1500,7 @@ AST: "Kind": "Name", "Location": { "Start": 900, - "End": 915, + "End": 914, "Line": 32, "Column": 8 }, @@ -1542,7 +1542,7 @@ AST: "Kind": "Name", "Location": { "Start": 935, - "End": 951, + "End": 942, "Line": 33, "Column": 10 }, @@ -1562,7 +1562,7 @@ AST: "Kind": "Name", "Location": { "Start": 916, - "End": 923, + "End": 922, "Line": 32, "Column": 24 }, @@ -1618,7 +1618,7 @@ AST: "Kind": "Name", "Location": { "Start": 981, - "End": 997, + "End": 988, "Line": 36, "Column": 10 }, @@ -1638,7 +1638,7 @@ AST: "Kind": "Name", "Location": { "Start": 959, - "End": 967, + "End": 966, "Line": 35, "Column": 8 }, @@ -1652,7 +1652,7 @@ AST: "Kind": "Name", "Location": { "Start": 1005, - "End": 1021, + "End": 1020, "Line": 38, "Column": 8 }, @@ -1703,7 +1703,7 @@ AST: "Kind": "Name", "Location": { "Start": 1044, - "End": 1060, + "End": 1051, "Line": 39, "Column": 10 }, @@ -1723,7 +1723,7 @@ AST: "Kind": "Name", "Location": { "Start": 1022, - "End": 1030, + "End": 1029, "Line": 38, "Column": 25 }, @@ -1737,7 +1737,7 @@ AST: "Kind": "Name", "Location": { "Start": 1068, - "End": 1095, + "End": 1094, "Line": 41, "Column": 8 }, @@ -1774,7 +1774,7 @@ AST: "Kind": "Name", "Location": { "Start": 1096, - "End": 1106, + "End": 1105, "Line": 41, "Column": 36 }, @@ -1788,7 +1788,7 @@ AST: "Kind": "Name", "Location": { "Start": 1116, - "End": 1143, + "End": 1142, "Line": 42, "Column": 8 }, @@ -1825,7 +1825,7 @@ AST: "Kind": "Name", "Location": { "Start": 1144, - "End": 1154, + "End": 1153, "Line": 42, "Column": 36 }, @@ -1839,7 +1839,7 @@ AST: "Kind": "Name", "Location": { "Start": 1164, - "End": 1194, + "End": 1193, "Line": 43, "Column": 8 }, @@ -1885,7 +1885,7 @@ AST: "Kind": "Name", "Location": { "Start": 1195, - "End": 1205, + "End": 1204, "Line": 43, "Column": 39 }, @@ -1899,7 +1899,7 @@ AST: "Kind": "Name", "Location": { "Start": 1216, - "End": 1243, + "End": 1242, "Line": 44, "Column": 8 }, @@ -1936,7 +1936,7 @@ AST: "Kind": "Name", "Location": { "Start": 1244, - "End": 1254, + "End": 1253, "Line": 44, "Column": 36 }, @@ -1950,7 +1950,7 @@ AST: "Kind": "Name", "Location": { "Start": 1264, - "End": 1291, + "End": 1290, "Line": 45, "Column": 8 }, @@ -1987,7 +1987,7 @@ AST: "Kind": "Name", "Location": { "Start": 1292, - "End": 1302, + "End": 1301, "Line": 45, "Column": 36 }, @@ -2001,7 +2001,7 @@ AST: "Kind": "Name", "Location": { "Start": 1312, - "End": 1342, + "End": 1341, "Line": 46, "Column": 8 }, @@ -2047,7 +2047,7 @@ AST: "Kind": "Name", "Location": { "Start": 1343, - "End": 1353, + "End": 1352, "Line": 46, "Column": 39 }, @@ -2061,7 +2061,7 @@ AST: "Kind": "Name", "Location": { "Start": 1364, - "End": 1385, + "End": 1384, "Line": 47, "Column": 8 }, @@ -2143,7 +2143,7 @@ AST: "Kind": "Name", "Location": { "Start": 1386, - "End": 1396, + "End": 1395, "Line": 47, "Column": 30 }, @@ -2176,7 +2176,7 @@ AST: "Kind": "Name", "Location": { "Start": 1423, - "End": 1428, + "End": 1427, "Line": 49, "Column": 11 }, @@ -2195,7 +2195,7 @@ AST: "Kind": "Name", "Location": { "Start": 1428, - "End": 1435, + "End": 1434, "Line": 49, "Column": 16 }, @@ -2213,7 +2213,7 @@ AST: "Kind": "Name", "Location": { "Start": 1437, - "End": 1441, + "End": 1440, "Line": 49, "Column": 25 }, @@ -2249,7 +2249,7 @@ AST: "Kind": "Name", "Location": { "Start": 1451, - "End": 1459, + "End": 1453, "Line": 50, "Column": 8 }, @@ -2295,7 +2295,7 @@ AST: "Kind": "Name", "Location": { "Start": 1476, - "End": 1484, + "End": 1478, "Line": 53, "Column": 7 }, @@ -2318,7 +2318,7 @@ AST: "Kind": "Name", "Location": { "Start": 84, - "End": 89, + "End": 88, "Line": 2, "Column": 17 }, @@ -2341,7 +2341,7 @@ AST: "Kind": "Name", "Location": { "Start": 1500, - "End": 1511, + "End": 1509, "Line": 57, "Column": 10 }, @@ -2362,7 +2362,7 @@ AST: "Kind": "Name", "Location": { "Start": 1511, - "End": 1523, + "End": 1521, "Line": 57, "Column": 21 }, @@ -2396,7 +2396,7 @@ AST: "Kind": "Name", "Location": { "Start": 1531, - "End": 1537, + "End": 1536, "Line": 58, "Column": 8 }, @@ -2454,7 +2454,7 @@ AST: "Kind": "Name", "Location": { "Start": 1572, - "End": 1576, + "End": 1574, "Line": 60, "Column": 7 }, @@ -2473,7 +2473,7 @@ AST: "Kind": "Name", "Location": { "Start": 1576, - "End": 1589, + "End": 1583, "Line": 60, "Column": 11 }, @@ -2495,7 +2495,7 @@ AST: "Kind": "Name", "Location": { "Start": 1558, - "End": 1565, + "End": 1563, "Line": 59, "Column": 5 }, @@ -2515,7 +2515,7 @@ AST: "Kind": "Name", "Location": { "Start": 1526, - "End": 1531, + "End": 1530, "Line": 58, "Column": 3 }, @@ -2534,7 +2534,7 @@ AST: "Kind": "Name", "Location": { "Start": 1544, - "End": 1553, + "End": 1551, "Line": 58, "Column": 21 }, @@ -2559,7 +2559,7 @@ AST: "Kind": "Name", "Location": { "Start": 1609, - "End": 1631, + "End": 1630, "Line": 64, "Column": 14 }, @@ -2587,7 +2587,7 @@ AST: "Kind": "Name", "Location": { "Start": 1635, - "End": 1641, + "End": 1640, "Line": 65, "Column": 4 }, @@ -2606,7 +2606,7 @@ AST: "Kind": "Name", "Location": { "Start": 1642, - "End": 1667, + "End": 1665, "Line": 65, "Column": 11 }, @@ -2627,7 +2627,7 @@ AST: "Kind": "Name", "Location": { "Start": 1667, - "End": 1689, + "End": 1687, "Line": 65, "Column": 36 }, @@ -2651,7 +2651,7 @@ AST: "Kind": "Name", "Location": { "Start": 1693, - "End": 1709, + "End": 1707, "Line": 67, "Column": 4 }, @@ -2685,7 +2685,7 @@ AST: "Kind": "Name", "Location": { "Start": 1731, - "End": 1737, + "End": 1736, "Line": 68, "Column": 22 }, @@ -2703,7 +2703,7 @@ AST: "Kind": "Name", "Location": { "Start": 1739, - "End": 1745, + "End": 1744, "Line": 68, "Column": 30 }, @@ -2766,7 +2766,7 @@ AST: "Kind": "Name", "Location": { "Start": 1783, - "End": 1796, + "End": 1788, "Line": 71, "Column": 9 }, @@ -2786,7 +2786,7 @@ AST: "Kind": "Name", "Location": { "Start": 1766, - "End": 1774, + "End": 1772, "Line": 70, "Column": 7 }, @@ -2824,7 +2824,7 @@ AST: "Kind": "Name", "Location": { "Start": 1826, - "End": 1838, + "End": 1830, "Line": 74, "Column": 9 }, @@ -2844,7 +2844,7 @@ AST: "Kind": "Name", "Location": { "Start": 1803, - "End": 1817, + "End": 1815, "Line": 73, "Column": 7 }, @@ -2864,7 +2864,7 @@ AST: "Kind": "Name", "Location": { "Start": 1752, - "End": 1759, + "End": 1757, "Line": 69, "Column": 5 }, @@ -2884,7 +2884,7 @@ AST: "Kind": "Name", "Location": { "Start": 1712, - "End": 1731, + "End": 1730, "Line": 68, "Column": 3 }, @@ -2910,7 +2910,7 @@ AST: "Kind": "Name", "Location": { "Start": 1868, - "End": 1876, + "End": 1874, "Line": 79, "Column": 18 }, @@ -2942,7 +2942,7 @@ AST: "Kind": "Name", "Location": { "Start": 1910, - "End": 1915, + "End": 1914, "Line": 81, "Column": 5 }, @@ -2960,7 +2960,7 @@ AST: "Kind": "Name", "Location": { "Start": 1917, - "End": 1929, + "End": 1921, "Line": 81, "Column": 12 }, @@ -2980,7 +2980,7 @@ AST: "Kind": "Name", "Location": { "Start": 1926, - "End": 1930, + "End": 1929, "Line": 82, "Column": 5 }, @@ -2998,7 +2998,7 @@ AST: "Kind": "Name", "Location": { "Start": 1932, - "End": 1941, + "End": 1933, "Line": 82, "Column": 11 }, @@ -3018,7 +3018,7 @@ AST: "Kind": "Name", "Location": { "Start": 1938, - "End": 1942, + "End": 1941, "Line": 83, "Column": 5 }, @@ -3045,7 +3045,7 @@ AST: "Kind": "Name", "Location": { "Start": 1951, - "End": 1955, + "End": 1954, "Line": 84, "Column": 7 }, @@ -3075,7 +3075,7 @@ AST: "Kind": "Name", "Location": { "Start": 1970, - "End": 1976, + "End": 1975, "Line": 85, "Column": 7 }, @@ -3109,7 +3109,7 @@ AST: "Kind": "Name", "Location": { "Start": 1901, - "End": 1905, + "End": 1904, "Line": 80, "Column": 3 }, @@ -3129,7 +3129,7 @@ AST: "Kind": "Name", "Location": { "Start": 1860, - "End": 1867, + "End": 1864, "Line": 79, "Column": 10 }, @@ -3148,7 +3148,7 @@ AST: "Kind": "Name", "Location": { "Start": 1876, - "End": 1898, + "End": 1896, "Line": 79, "Column": 26 }, @@ -3195,7 +3195,7 @@ AST: "Kind": "Name", "Location": { "Start": 2044, - "End": 2051, + "End": 2050, "Line": 92, "Column": 11 }, @@ -3224,7 +3224,7 @@ AST: "Kind": "Name", "Location": { "Start": 2058, - "End": 2064, + "End": 2063, "Line": 92, "Column": 25 }, @@ -3253,7 +3253,7 @@ AST: "Kind": "Name", "Location": { "Start": 2072, - "End": 2080, + "End": 2079, "Line": 92, "Column": 39 }, @@ -3283,7 +3283,7 @@ AST: "Kind": "Name", "Location": { "Start": 2036, - "End": 2044, + "End": 2043, "Line": 92, "Column": 3 }, @@ -3307,7 +3307,7 @@ AST: "Kind": "Name", "Location": { "Start": 2089, - "End": 2096, + "End": 2094, "Line": 93, "Column": 3 }, @@ -3355,7 +3355,7 @@ AST: "Kind": "Name", "Location": { "Start": 2107, - "End": 2119, + "End": 2117, "Line": 96, "Column": 3 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap index ae7f33c5522..adc4c8e1a90 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/KitchenSinkParserTests.ParseFacebookKitchenSinkSchema.snap @@ -182,7 +182,7 @@ AST: "Kind": "Name", "Location": { "Start": 190, - "End": 210, + "End": 199, "Line": 7, "Column": 10 }, @@ -211,7 +211,7 @@ AST: "Kind": "Name", "Location": { "Start": 212, - "End": 226, + "End": 224, "Line": 8, "Column": 13 }, @@ -247,7 +247,7 @@ AST: "Kind": "Name", "Location": { "Start": 297, - "End": 302, + "End": 300, "Line": 15, "Column": 21 }, @@ -266,7 +266,7 @@ AST: "Kind": "Name", "Location": { "Start": 303, - "End": 308, + "End": 306, "Line": 15, "Column": 27 }, @@ -291,7 +291,7 @@ AST: "Kind": "Name", "Location": { "Start": 316, - "End": 375, + "End": 320, "Line": 16, "Column": 8 }, @@ -308,7 +308,7 @@ AST: "Kind": "Name", "Location": { "Start": 311, - "End": 315, + "End": 314, "Line": 16, "Column": 3 }, @@ -363,7 +363,7 @@ AST: "Kind": "Name", "Location": { "Start": 468, - "End": 478, + "End": 477, "Line": 24, "Column": 15 }, @@ -382,7 +382,7 @@ AST: "Kind": "Name", "Location": { "Start": 458, - "End": 467, + "End": 466, "Line": 24, "Column": 5 }, @@ -403,7 +403,7 @@ AST: "Kind": "Name", "Location": { "Start": 484, - "End": 496, + "End": 488, "Line": 25, "Column": 6 }, @@ -420,7 +420,7 @@ AST: "Kind": "Name", "Location": { "Start": 379, - "End": 383, + "End": 382, "Line": 20, "Column": 3 }, @@ -447,7 +447,7 @@ AST: "Kind": "Name", "Location": { "Start": 507, - "End": 523, + "End": 516, "Line": 26, "Column": 19 }, @@ -465,7 +465,7 @@ AST: "Kind": "Name", "Location": { "Start": 497, - "End": 506, + "End": 505, "Line": 26, "Column": 9 }, @@ -488,7 +488,7 @@ AST: "Kind": "Name", "Location": { "Start": 525, - "End": 532, + "End": 531, "Line": 26, "Column": 37 }, @@ -506,7 +506,7 @@ AST: "Kind": "Name", "Location": { "Start": 518, - "End": 524, + "End": 523, "Line": 26, "Column": 30 }, @@ -527,7 +527,7 @@ AST: "Kind": "Name", "Location": { "Start": 534, - "End": 544, + "End": 537, "Line": 26, "Column": 46 }, @@ -544,7 +544,7 @@ AST: "Kind": "Name", "Location": { "Start": 491, - "End": 497, + "End": 496, "Line": 26, "Column": 3 }, @@ -571,7 +571,7 @@ AST: "Kind": "Name", "Location": { "Start": 555, - "End": 563, + "End": 561, "Line": 27, "Column": 18 }, @@ -599,7 +599,7 @@ AST: "Kind": "Name", "Location": { "Start": 545, - "End": 554, + "End": 553, "Line": 27, "Column": 8 }, @@ -620,7 +620,7 @@ AST: "Kind": "Name", "Location": { "Start": 575, - "End": 588, + "End": 581, "Line": 27, "Column": 38 }, @@ -637,7 +637,7 @@ AST: "Kind": "Name", "Location": { "Start": 540, - "End": 545, + "End": 544, "Line": 27, "Column": 3 }, @@ -672,7 +672,7 @@ AST: "Kind": "Name", "Location": { "Start": 600, - "End": 607, + "End": 606, "Line": 28, "Column": 19 }, @@ -723,7 +723,7 @@ AST: "Kind": "Name", "Location": { "Start": 589, - "End": 598, + "End": 597, "Line": 28, "Column": 8 }, @@ -744,7 +744,7 @@ AST: "Kind": "Name", "Location": { "Start": 633, - "End": 645, + "End": 639, "Line": 28, "Column": 52 }, @@ -761,7 +761,7 @@ AST: "Kind": "Name", "Location": { "Start": 584, - "End": 589, + "End": 588, "Line": 28, "Column": 3 }, @@ -788,7 +788,7 @@ AST: "Kind": "Name", "Location": { "Start": 656, - "End": 667, + "End": 665, "Line": 29, "Column": 17 }, @@ -816,7 +816,7 @@ AST: "Kind": "Name", "Location": { "Start": 669, - "End": 673, + "End": 672, "Line": 29, "Column": 30 }, @@ -846,7 +846,7 @@ AST: "Kind": "Name", "Location": { "Start": 646, - "End": 655, + "End": 654, "Line": 29, "Column": 7 }, @@ -867,7 +867,7 @@ AST: "Kind": "Name", "Location": { "Start": 685, - "End": 697, + "End": 689, "Line": 29, "Column": 46 }, @@ -884,7 +884,7 @@ AST: "Kind": "Name", "Location": { "Start": 642, - "End": 646, + "End": 645, "Line": 29, "Column": 3 }, @@ -911,7 +911,7 @@ AST: "Kind": "Name", "Location": { "Start": 708, - "End": 713, + "End": 711, "Line": 30, "Column": 19 }, @@ -938,7 +938,7 @@ AST: "Kind": "Name", "Location": { "Start": 698, - "End": 707, + "End": 706, "Line": 30, "Column": 9 }, @@ -959,7 +959,7 @@ AST: "Kind": "Name", "Location": { "Start": 721, - "End": 727, + "End": 725, "Line": 30, "Column": 32 }, @@ -976,7 +976,7 @@ AST: "Kind": "Name", "Location": { "Start": 692, - "End": 698, + "End": 697, "Line": 30, "Column": 3 }, @@ -995,7 +995,7 @@ AST: "Kind": "Name", "Location": { "Start": 282, - "End": 296, + "End": 285, "Line": 15, "Column": 6 }, @@ -1027,7 +1027,7 @@ AST: "Kind": "Name", "Location": { "Start": 798, - "End": 804, + "End": 802, "Line": 34, "Column": 23 }, @@ -1055,7 +1055,7 @@ AST: "Kind": "Name", "Location": { "Start": 793, - "End": 797, + "End": 796, "Line": 34, "Column": 18 }, @@ -1074,7 +1074,7 @@ AST: "Kind": "Name", "Location": { "Start": 816, - "End": 822, + "End": 821, "Line": 34, "Column": 41 }, @@ -1097,7 +1097,7 @@ AST: "Kind": "Name", "Location": { "Start": 824, - "End": 830, + "End": 828, "Line": 34, "Column": 49 }, @@ -1114,7 +1114,7 @@ AST: "Kind": "Name", "Location": { "Start": 778, - "End": 793, + "End": 792, "Line": 34, "Column": 3 }, @@ -1133,7 +1133,7 @@ AST: "Kind": "Name", "Location": { "Start": 830, - "End": 839, + "End": 837, "Line": 34, "Column": 55 }, @@ -1154,7 +1154,7 @@ AST: "Kind": "Name", "Location": { "Start": 734, - "End": 751, + "End": 749, "Line": 33, "Column": 6 }, @@ -1173,7 +1173,7 @@ AST: "Kind": "Name", "Location": { "Start": 751, - "End": 760, + "End": 759, "Line": 33, "Column": 23 }, @@ -1192,7 +1192,7 @@ AST: "Kind": "Name", "Location": { "Start": 760, - "End": 764, + "End": 763, "Line": 33, "Column": 32 }, @@ -1229,7 +1229,7 @@ AST: "Kind": "Name", "Location": { "Start": 846, - "End": 867, + "End": 859, "Line": 37, "Column": 6 }, @@ -1268,7 +1268,7 @@ AST: "Kind": "Name", "Location": { "Start": 898, - "End": 905, + "End": 904, "Line": 40, "Column": 20 }, @@ -1287,7 +1287,7 @@ AST: "Kind": "Name", "Location": { "Start": 887, - "End": 896, + "End": 895, "Line": 40, "Column": 9 }, @@ -1308,7 +1308,7 @@ AST: "Kind": "Name", "Location": { "Start": 908, - "End": 914, + "End": 912, "Line": 40, "Column": 30 }, @@ -1325,7 +1325,7 @@ AST: "Kind": "Name", "Location": { "Start": 881, - "End": 887, + "End": 886, "Line": 40, "Column": 3 }, @@ -1344,7 +1344,7 @@ AST: "Kind": "Name", "Location": { "Start": 873, - "End": 878, + "End": 876, "Line": 39, "Column": 13 }, @@ -1366,7 +1366,7 @@ AST: "Kind": "Name", "Location": { "Start": 928, - "End": 933, + "End": 931, "Line": 43, "Column": 13 }, @@ -1385,7 +1385,7 @@ AST: "Kind": "Name", "Location": { "Start": 933, - "End": 950, + "End": 939, "Line": 43, "Column": 18 }, @@ -1416,7 +1416,7 @@ AST: "Kind": "Name", "Location": { "Start": 964, - "End": 975, + "End": 968, "Line": 46, "Column": 8 }, @@ -1433,7 +1433,7 @@ AST: "Kind": "Name", "Location": { "Start": 959, - "End": 963, + "End": 962, "Line": 46, "Column": 3 }, @@ -1460,7 +1460,7 @@ AST: "Kind": "Name", "Location": { "Start": 986, - "End": 994, + "End": 992, "Line": 47, "Column": 18 }, @@ -1488,7 +1488,7 @@ AST: "Kind": "Name", "Location": { "Start": 976, - "End": 985, + "End": 984, "Line": 47, "Column": 8 }, @@ -1509,7 +1509,7 @@ AST: "Kind": "Name", "Location": { "Start": 1006, - "End": 1014, + "End": 1012, "Line": 47, "Column": 38 }, @@ -1526,7 +1526,7 @@ AST: "Kind": "Name", "Location": { "Start": 971, - "End": 976, + "End": 975, "Line": 47, "Column": 3 }, @@ -1545,7 +1545,7 @@ AST: "Kind": "Name", "Location": { "Start": 951, - "End": 956, + "End": 954, "Line": 45, "Column": 11 }, @@ -1577,7 +1577,7 @@ AST: "Kind": "Name", "Location": { "Start": 1082, - "End": 1088, + "End": 1086, "Line": 51, "Column": 23 }, @@ -1595,7 +1595,7 @@ AST: "Kind": "Name", "Location": { "Start": 1077, - "End": 1081, + "End": 1080, "Line": 51, "Column": 18 }, @@ -1614,7 +1614,7 @@ AST: "Kind": "Name", "Location": { "Start": 1088, - "End": 1094, + "End": 1093, "Line": 51, "Column": 29 }, @@ -1637,7 +1637,7 @@ AST: "Kind": "Name", "Location": { "Start": 1096, - "End": 1102, + "End": 1100, "Line": 51, "Column": 37 }, @@ -1654,7 +1654,7 @@ AST: "Kind": "Name", "Location": { "Start": 1062, - "End": 1077, + "End": 1076, "Line": 51, "Column": 3 }, @@ -1673,7 +1673,7 @@ AST: "Kind": "Name", "Location": { "Start": 1102, - "End": 1111, + "End": 1109, "Line": 51, "Column": 43 }, @@ -1694,7 +1694,7 @@ AST: "Kind": "Name", "Location": { "Start": 1026, - "End": 1046, + "End": 1044, "Line": 50, "Column": 11 }, @@ -1713,7 +1713,7 @@ AST: "Kind": "Name", "Location": { "Start": 1046, - "End": 1059, + "End": 1057, "Line": 50, "Column": 31 }, @@ -1738,7 +1738,7 @@ AST: "Kind": "Name", "Location": { "Start": 1123, - "End": 1149, + "End": 1141, "Line": 54, "Column": 11 }, @@ -1777,7 +1777,7 @@ AST: "Kind": "Name", "Location": { "Start": 1182, - "End": 1192, + "End": 1191, "Line": 57, "Column": 17 }, @@ -1796,7 +1796,7 @@ AST: "Kind": "Name", "Location": { "Start": 1172, - "End": 1181, + "End": 1180, "Line": 57, "Column": 7 }, @@ -1817,7 +1817,7 @@ AST: "Kind": "Name", "Location": { "Start": 1195, - "End": 1201, + "End": 1199, "Line": 57, "Column": 30 }, @@ -1834,7 +1834,7 @@ AST: "Kind": "Name", "Location": { "Start": 1168, - "End": 1172, + "End": 1171, "Line": 57, "Column": 3 }, @@ -1853,7 +1853,7 @@ AST: "Kind": "Name", "Location": { "Start": 1160, - "End": 1165, + "End": 1163, "Line": 56, "Column": 18 }, @@ -1875,7 +1875,7 @@ AST: "Kind": "Name", "Location": { "Start": 1220, - "End": 1225, + "End": 1223, "Line": 60, "Column": 18 }, @@ -1894,7 +1894,7 @@ AST: "Kind": "Name", "Location": { "Start": 1225, - "End": 1243, + "End": 1236, "Line": 60, "Column": 23 }, @@ -1920,7 +1920,7 @@ AST: "Kind": "Name", "Location": { "Start": 1251, - "End": 1258, + "End": 1256, "Line": 62, "Column": 14 }, @@ -1939,7 +1939,7 @@ AST: "Kind": "Name", "Location": { "Start": 1259, - "End": 1268, + "End": 1266, "Line": 62, "Column": 22 }, @@ -1958,7 +1958,7 @@ AST: "Kind": "Name", "Location": { "Start": 1269, - "End": 1282, + "End": 1275, "Line": 62, "Column": 32 }, @@ -1976,7 +1976,7 @@ AST: "Kind": "Name", "Location": { "Start": 1244, - "End": 1250, + "End": 1248, "Line": 62, "Column": 7 }, @@ -2000,7 +2000,7 @@ AST: "Kind": "Name", "Location": { "Start": 1309, - "End": 1312, + "End": 1310, "Line": 64, "Column": 33 }, @@ -2019,7 +2019,7 @@ AST: "Kind": "Name", "Location": { "Start": 1313, - "End": 1321, + "End": 1314, "Line": 64, "Column": 37 }, @@ -2037,7 +2037,7 @@ AST: "Kind": "Name", "Location": { "Start": 1283, - "End": 1299, + "End": 1297, "Line": 64, "Column": 7 }, @@ -2056,7 +2056,7 @@ AST: "Kind": "Name", "Location": { "Start": 1299, - "End": 1308, + "End": 1306, "Line": 64, "Column": 23 }, @@ -2082,7 +2082,7 @@ AST: "Kind": "Name", "Location": { "Start": 1353, - "End": 1356, + "End": 1354, "Line": 66, "Column": 38 }, @@ -2101,7 +2101,7 @@ AST: "Kind": "Name", "Location": { "Start": 1357, - "End": 1365, + "End": 1358, "Line": 66, "Column": 42 }, @@ -2119,7 +2119,7 @@ AST: "Kind": "Name", "Location": { "Start": 1322, - "End": 1341, + "End": 1339, "Line": 66, "Column": 7 }, @@ -2138,7 +2138,7 @@ AST: "Kind": "Name", "Location": { "Start": 1341, - "End": 1350, + "End": 1348, "Line": 66, "Column": 26 }, @@ -2162,7 +2162,7 @@ AST: "Kind": "Name", "Location": { "Start": 1366, - "End": 1388, + "End": 1380, "Line": 68, "Column": 7 }, @@ -2185,7 +2185,7 @@ AST: "Kind": "Name", "Location": { "Start": 1402, - "End": 1409, + "End": 1407, "Line": 70, "Column": 21 }, @@ -2204,7 +2204,7 @@ AST: "Kind": "Name", "Location": { "Start": 1410, - "End": 1423, + "End": 1415, "Line": 70, "Column": 29 }, @@ -2222,7 +2222,7 @@ AST: "Kind": "Name", "Location": { "Start": 1395, - "End": 1401, + "End": 1399, "Line": 70, "Column": 14 }, @@ -2243,7 +2243,7 @@ AST: "Kind": "Name", "Location": { "Start": 1430, - "End": 1436, + "End": 1434, "Line": 72, "Column": 14 }, @@ -2262,7 +2262,7 @@ AST: "Kind": "Name", "Location": { "Start": 1436, - "End": 1451, + "End": 1443, "Line": 72, "Column": 20 }, @@ -2285,7 +2285,7 @@ AST: "Kind": "Name", "Location": { "Start": 1452, - "End": 1472, + "End": 1464, "Line": 74, "Column": 8 }, @@ -2306,7 +2306,7 @@ AST: "Kind": "Name", "Location": { "Start": 1473, - "End": 1490, + "End": 1488, "Line": 76, "Column": 8 }, @@ -2325,7 +2325,7 @@ AST: "Kind": "Name", "Location": { "Start": 1490, - "End": 1506, + "End": 1498, "Line": 76, "Column": 25 }, @@ -2347,7 +2347,7 @@ AST: "Kind": "Name", "Location": { "Start": 1514, - "End": 1528, + "End": 1526, "Line": 78, "Column": 15 }, @@ -2366,7 +2366,7 @@ AST: "Kind": "Name", "Location": { "Start": 1528, - "End": 1542, + "End": 1536, "Line": 78, "Column": 29 }, @@ -2393,7 +2393,7 @@ AST: "Kind": "Name", "Location": { "Start": 1552, - "End": 1568, + "End": 1559, "Line": 81, "Column": 3 }, @@ -2414,7 +2414,7 @@ AST: "Kind": "Name", "Location": { "Start": 1562, - "End": 1570, + "End": 1568, "Line": 82, "Column": 3 }, @@ -2433,7 +2433,7 @@ AST: "Kind": "Name", "Location": { "Start": 1543, - "End": 1549, + "End": 1547, "Line": 80, "Column": 6 }, @@ -2458,7 +2458,7 @@ AST: "Kind": "Name", "Location": { "Start": 1603, - "End": 1620, + "End": 1618, "Line": 86, "Column": 3 }, @@ -2477,7 +2477,7 @@ AST: "Kind": "Name", "Location": { "Start": 1620, - "End": 1645, + "End": 1631, "Line": 86, "Column": 20 }, @@ -2500,7 +2500,7 @@ AST: "Kind": "Name", "Location": { "Start": 1634, - "End": 1647, + "End": 1645, "Line": 87, "Column": 3 }, @@ -2519,7 +2519,7 @@ AST: "Kind": "Name", "Location": { "Start": 1577, - "End": 1592, + "End": 1590, "Line": 85, "Column": 6 }, @@ -2538,7 +2538,7 @@ AST: "Kind": "Name", "Location": { "Start": 1592, - "End": 1600, + "End": 1598, "Line": 85, "Column": 21 }, @@ -2562,7 +2562,7 @@ AST: "Kind": "Name", "Location": { "Start": 1654, - "End": 1675, + "End": 1667, "Line": 90, "Column": 6 }, @@ -2586,7 +2586,7 @@ AST: "Kind": "Name", "Location": { "Start": 1690, - "End": 1694, + "End": 1692, "Line": 93, "Column": 3 }, @@ -2605,7 +2605,7 @@ AST: "Kind": "Name", "Location": { "Start": 1681, - "End": 1687, + "End": 1685, "Line": 92, "Column": 13 }, @@ -2626,7 +2626,7 @@ AST: "Kind": "Name", "Location": { "Start": 1708, - "End": 1714, + "End": 1712, "Line": 96, "Column": 13 }, @@ -2645,7 +2645,7 @@ AST: "Kind": "Name", "Location": { "Start": 1714, - "End": 1727, + "End": 1720, "Line": 96, "Column": 19 }, @@ -2682,7 +2682,7 @@ AST: "Kind": "Name", "Location": { "Start": 1747, - "End": 1754, + "End": 1753, "Line": 99, "Column": 8 }, @@ -2701,7 +2701,7 @@ AST: "Kind": "Name", "Location": { "Start": 1742, - "End": 1746, + "End": 1745, "Line": 99, "Column": 3 }, @@ -2724,7 +2724,7 @@ AST: "Kind": "Name", "Location": { "Start": 1765, - "End": 1770, + "End": 1768, "Line": 100, "Column": 11 }, @@ -2751,7 +2751,7 @@ AST: "Kind": "Name", "Location": { "Start": 1757, - "End": 1764, + "End": 1763, "Line": 100, "Column": 3 }, @@ -2770,7 +2770,7 @@ AST: "Kind": "Name", "Location": { "Start": 1728, - "End": 1739, + "End": 1737, "Line": 98, "Column": 7 }, @@ -2797,7 +2797,7 @@ AST: "Kind": "Name", "Location": { "Start": 1833, - "End": 1839, + "End": 1837, "Line": 104, "Column": 19 }, @@ -2815,7 +2815,7 @@ AST: "Kind": "Name", "Location": { "Start": 1817, - "End": 1832, + "End": 1831, "Line": 104, "Column": 3 }, @@ -2834,7 +2834,7 @@ AST: "Kind": "Name", "Location": { "Start": 1839, - "End": 1848, + "End": 1846, "Line": 104, "Column": 25 }, @@ -2855,7 +2855,7 @@ AST: "Kind": "Name", "Location": { "Start": 1783, - "End": 1799, + "End": 1797, "Line": 103, "Column": 7 }, @@ -2874,7 +2874,7 @@ AST: "Kind": "Name", "Location": { "Start": 1799, - "End": 1814, + "End": 1812, "Line": 103, "Column": 23 }, @@ -2898,7 +2898,7 @@ AST: "Kind": "Name", "Location": { "Start": 1856, - "End": 1878, + "End": 1870, "Line": 107, "Column": 7 }, @@ -2924,7 +2924,7 @@ AST: "Kind": "Name", "Location": { "Start": 1906, - "End": 1913, + "End": 1911, "Line": 110, "Column": 10 }, @@ -2952,7 +2952,7 @@ AST: "Kind": "Name", "Location": { "Start": 1899, - "End": 1905, + "End": 1904, "Line": 110, "Column": 3 }, @@ -2971,7 +2971,7 @@ AST: "Kind": "Name", "Location": { "Start": 1885, - "End": 1896, + "End": 1894, "Line": 109, "Column": 14 }, @@ -2992,7 +2992,7 @@ AST: "Kind": "Name", "Location": { "Start": 1937, - "End": 1948, + "End": 1946, "Line": 113, "Column": 14 }, @@ -3011,7 +3011,7 @@ AST: "Kind": "Name", "Location": { "Start": 1948, - "End": 1972, + "End": 1961, "Line": 113, "Column": 25 }, @@ -3033,7 +3033,7 @@ AST: "Kind": "Name", "Location": { "Start": 1974, - "End": 1979, + "End": 1978, "Line": 115, "Column": 12 }, @@ -3065,7 +3065,7 @@ AST: "Kind": "Name", "Location": { "Start": 1983, - "End": 1991, + "End": 1990, "Line": 115, "Column": 21 }, @@ -3084,7 +3084,7 @@ AST: "Kind": "Name", "Location": { "Start": 1979, - "End": 1982, + "End": 1981, "Line": 115, "Column": 17 }, @@ -3098,7 +3098,7 @@ AST: "Kind": "Name", "Location": { "Start": 1996, - "End": 2003, + "End": 2001, "Line": 115, "Column": 34 }, @@ -3108,7 +3108,7 @@ AST: "Kind": "Name", "Location": { "Start": 2004, - "End": 2021, + "End": 2019, "Line": 115, "Column": 42 }, @@ -3118,7 +3118,7 @@ AST: "Kind": "Name", "Location": { "Start": 2022, - "End": 2048, + "End": 2037, "Line": 115, "Column": 60 }, @@ -3138,7 +3138,7 @@ AST: "Kind": "Name", "Location": { "Start": 2050, - "End": 2056, + "End": 2055, "Line": 117, "Column": 12 }, @@ -3170,7 +3170,7 @@ AST: "Kind": "Name", "Location": { "Start": 2060, - "End": 2068, + "End": 2067, "Line": 117, "Column": 22 }, @@ -3189,7 +3189,7 @@ AST: "Kind": "Name", "Location": { "Start": 2056, - "End": 2059, + "End": 2058, "Line": 117, "Column": 18 }, @@ -3203,7 +3203,7 @@ AST: "Kind": "Name", "Location": { "Start": 2084, - "End": 2091, + "End": 2089, "Line": 117, "Column": 46 }, @@ -3213,7 +3213,7 @@ AST: "Kind": "Name", "Location": { "Start": 2092, - "End": 2109, + "End": 2107, "Line": 117, "Column": 54 }, @@ -3223,7 +3223,7 @@ AST: "Kind": "Name", "Location": { "Start": 2110, - "End": 2136, + "End": 2125, "Line": 117, "Column": 72 }, @@ -3243,7 +3243,7 @@ AST: "Kind": "Name", "Location": { "Start": 2138, - "End": 2146, + "End": 2145, "Line": 119, "Column": 12 }, @@ -3275,7 +3275,7 @@ AST: "Kind": "Name", "Location": { "Start": 2150, - "End": 2158, + "End": 2157, "Line": 119, "Column": 24 }, @@ -3294,7 +3294,7 @@ AST: "Kind": "Name", "Location": { "Start": 2146, - "End": 2149, + "End": 2148, "Line": 119, "Column": 20 }, @@ -3308,7 +3308,7 @@ AST: "Kind": "Name", "Location": { "Start": 2165, - "End": 2175, + "End": 2170, "Line": 120, "Column": 6 }, @@ -3318,7 +3318,7 @@ AST: "Kind": "Name", "Location": { "Start": 2176, - "End": 2196, + "End": 2191, "Line": 121, "Column": 6 }, @@ -3328,7 +3328,7 @@ AST: "Kind": "Name", "Location": { "Start": 2197, - "End": 2223, + "End": 2212, "Line": 122, "Column": 6 }, @@ -3348,7 +3348,7 @@ AST: "Kind": "Name", "Location": { "Start": 2225, - "End": 2234, + "End": 2233, "Line": 124, "Column": 12 }, @@ -3380,7 +3380,7 @@ AST: "Kind": "Name", "Location": { "Start": 2238, - "End": 2246, + "End": 2245, "Line": 124, "Column": 25 }, @@ -3399,7 +3399,7 @@ AST: "Kind": "Name", "Location": { "Start": 2234, - "End": 2237, + "End": 2236, "Line": 124, "Column": 21 }, @@ -3413,7 +3413,7 @@ AST: "Kind": "Name", "Location": { "Start": 2255, - "End": 2264, + "End": 2260, "Line": 125, "Column": 5 }, @@ -3423,7 +3423,7 @@ AST: "Kind": "Name", "Location": { "Start": 2265, - "End": 2284, + "End": 2280, "Line": 126, "Column": 5 }, @@ -3433,7 +3433,7 @@ AST: "Kind": "Name", "Location": { "Start": 2285, - "End": 2308, + "End": 2300, "Line": 127, "Column": 5 }, @@ -3462,7 +3462,7 @@ AST: "Kind": "Name", "Location": { "Start": 2317, - "End": 2333, + "End": 2325, "Line": 129, "Column": 16 }, @@ -3494,7 +3494,7 @@ AST: "Kind": "Name", "Location": { "Start": 2342, - "End": 2352, + "End": 2350, "Line": 131, "Column": 16 }, @@ -3525,7 +3525,7 @@ AST: "Kind": "Name", "Location": { "Start": 2369, - "End": 2387, + "End": 2385, "Line": 132, "Column": 17 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.QueryWithComments.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.QueryWithComments.snap index 23afee89476..157f0d9f990 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.QueryWithComments.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.QueryWithComments.snap @@ -70,7 +70,7 @@ AST "Kind": "Name", "Location": { "Start": 45, - "End": 126, + "End": 49, "Line": 3, "Column": 21 }, @@ -94,7 +94,7 @@ AST "Kind": "Name", "Location": { "Start": 127, - "End": 129, + "End": 128, "Line": 5, "Column": 29 }, @@ -124,7 +124,7 @@ AST "Kind": "Name", "Location": { "Start": 135, - "End": 137, + "End": 136, "Line": 5, "Column": 37 }, @@ -153,7 +153,7 @@ AST "Kind": "Name", "Location": { "Start": 145, - "End": 147, + "End": 146, "Line": 5, "Column": 47 }, @@ -182,7 +182,7 @@ AST "Kind": "Name", "Location": { "Start": 152, - "End": 154, + "End": 153, "Line": 5, "Column": 54 }, @@ -224,7 +224,7 @@ AST "Kind": "Name", "Location": { "Start": 191, - "End": 217, + "End": 195, "Line": 6, "Column": 25 }, @@ -244,7 +244,7 @@ AST "Kind": "Name", "Location": { "Start": 119, - "End": 127, + "End": 126, "Line": 5, "Column": 21 }, @@ -264,7 +264,7 @@ AST "Kind": "Name", "Location": { "Start": 18, - "End": 24, + "End": 22, "Line": 2, "Column": 17 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseDirectiveNameAndArg.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseDirectiveNameAndArg.snap index 365116a45af..615af18cf81 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseDirectiveNameAndArg.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseDirectiveNameAndArg.snap @@ -11,7 +11,7 @@ "Kind": "Name", "Location": { "Start": 1, - "End": 5, + "End": 4, "Line": 1, "Column": 2 }, @@ -22,7 +22,7 @@ "Kind": "Name", "Location": { "Start": 5, - "End": 9, + "End": 8, "Line": 1, "Column": 6 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberName.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberName.snap index 426e0074b85..72fd594e3a0 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberName.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberName.snap @@ -11,7 +11,7 @@ "Kind": "Name", "Location": { "Start": 0, - "End": 7, + "End": 6, "Line": 1, "Column": 1 }, diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberNameAndArg.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberNameAndArg.snap index 6d4a124afe3..9bbf624e5a9 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberNameAndArg.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaCoordinateParserTests.ParseNameAndMemberNameAndArg.snap @@ -11,7 +11,7 @@ "Kind": "Name", "Location": { "Start": 0, - "End": 7, + "End": 6, "Line": 1, "Column": 1 }, @@ -21,7 +21,7 @@ "Kind": "Name", "Location": { "Start": 7, - "End": 18, + "End": 17, "Line": 1, "Column": 8 }, @@ -31,7 +31,7 @@ "Kind": "Name", "Location": { "Start": 18, - "End": 22, + "End": 21, "Line": 1, "Column": 19 },