@@ -76,9 +76,9 @@ protected virtual async ValueTask VisitOperationDefinitionAsync(GraphQLOperation
76
76
/// <summary>
77
77
/// Visits <see cref="GraphQLName"/> node.
78
78
/// </summary>
79
- protected virtual async ValueTask VisitNameAsync ( GraphQLName name , TContext context )
79
+ protected virtual ValueTask VisitNameAsync ( GraphQLName name , TContext context )
80
80
{
81
- await VisitAsync ( name . Comments , context ) . ConfigureAwait ( false ) ;
81
+ return VisitAsync ( name . Comments , context ) ;
82
82
}
83
83
84
84
/// <summary>
@@ -207,33 +207,33 @@ protected virtual async ValueTask VisitFragmentDefinitionAsync(GraphQLFragmentDe
207
207
/// <summary>
208
208
/// Visits <see cref="GraphQLIntValue"/> node.
209
209
/// </summary>
210
- protected virtual async ValueTask VisitIntValueAsync ( GraphQLIntValue intValue , TContext context )
210
+ protected virtual ValueTask VisitIntValueAsync ( GraphQLIntValue intValue , TContext context )
211
211
{
212
- await VisitAsync ( intValue . Comments , context ) . ConfigureAwait ( false ) ;
212
+ return VisitAsync ( intValue . Comments , context ) ;
213
213
}
214
214
215
215
/// <summary>
216
216
/// Visits <see cref="GraphQLFloatValue"/> node.
217
217
/// </summary>
218
- protected virtual async ValueTask VisitFloatValueAsync ( GraphQLFloatValue floatValue , TContext context )
218
+ protected virtual ValueTask VisitFloatValueAsync ( GraphQLFloatValue floatValue , TContext context )
219
219
{
220
- await VisitAsync ( floatValue . Comments , context ) . ConfigureAwait ( false ) ;
220
+ return VisitAsync ( floatValue . Comments , context ) ;
221
221
}
222
222
223
223
/// <summary>
224
224
/// Visits <see cref="GraphQLStringValue"/> node.
225
225
/// </summary>
226
- protected virtual async ValueTask VisitStringValueAsync ( GraphQLStringValue stringValue , TContext context )
226
+ protected virtual ValueTask VisitStringValueAsync ( GraphQLStringValue stringValue , TContext context )
227
227
{
228
- await VisitAsync ( stringValue . Comments , context ) . ConfigureAwait ( false ) ;
228
+ return VisitAsync ( stringValue . Comments , context ) ;
229
229
}
230
230
231
231
/// <summary>
232
232
/// Visits <see cref="GraphQLBooleanValue"/> node.
233
233
/// </summary>
234
- protected virtual async ValueTask VisitBooleanValueAsync ( GraphQLBooleanValue booleanValue , TContext context )
234
+ protected virtual ValueTask VisitBooleanValueAsync ( GraphQLBooleanValue booleanValue , TContext context )
235
235
{
236
- await VisitAsync ( booleanValue . Comments , context ) . ConfigureAwait ( false ) ;
236
+ return VisitAsync ( booleanValue . Comments , context ) ;
237
237
}
238
238
239
239
/// <summary>
@@ -322,9 +322,9 @@ protected virtual async ValueTask VisitNonNullTypeAsync(GraphQLNonNullType nonNu
322
322
/// <summary>
323
323
/// Visits <see cref="GraphQLNullValue"/> node.
324
324
/// </summary>
325
- protected virtual async ValueTask VisitNullValueAsync ( GraphQLNullValue nullValue , TContext context )
325
+ protected virtual ValueTask VisitNullValueAsync ( GraphQLNullValue nullValue , TContext context )
326
326
{
327
- await VisitAsync ( nullValue . Comments , context ) . ConfigureAwait ( false ) ;
327
+ return VisitAsync ( nullValue . Comments , context ) ;
328
328
}
329
329
330
330
/// <summary>
@@ -508,9 +508,9 @@ protected virtual async ValueTask VisitDirectiveDefinitionAsync(GraphQLDirective
508
508
/// <summary>
509
509
/// Visits <see cref="GraphQLDirectiveLocations"/> node.
510
510
/// </summary>
511
- protected virtual async ValueTask VisitDirectiveLocationsAsync ( GraphQLDirectiveLocations directiveLocations , TContext context )
511
+ protected virtual ValueTask VisitDirectiveLocationsAsync ( GraphQLDirectiveLocations directiveLocations , TContext context )
512
512
{
513
- await VisitAsync ( directiveLocations . Comments , context ) . ConfigureAwait ( false ) ;
513
+ return VisitAsync ( directiveLocations . Comments , context ) ;
514
514
}
515
515
516
516
/// <summary>
0 commit comments