@@ -61,7 +61,7 @@ macro_rules! __juniper_parse_object_header {
61
61
$( $items: tt) *
62
62
}
63
63
) => {
64
- $callback!(
64
+ $crate :: $ callback!(
65
65
@parse,
66
66
meta = {
67
67
lifetimes = [ $( $lifetime, ) * ] ,
@@ -82,7 +82,7 @@ macro_rules! __juniper_parse_object_header {
82
82
$( $items: tt) *
83
83
}
84
84
) => {
85
- $callback!(
85
+ $crate :: $ callback!(
86
86
@parse,
87
87
meta = {
88
88
lifetimes = [ $( $lifetime, ) * ] ,
@@ -102,7 +102,7 @@ macro_rules! __juniper_parse_object_header {
102
102
$( $items: tt) *
103
103
}
104
104
) => {
105
- $callback!(
105
+ $crate :: $ callback!(
106
106
@parse,
107
107
meta = {
108
108
lifetimes = [ $( $lifetime, ) * ] ,
@@ -123,7 +123,7 @@ macro_rules! __juniper_parse_object_header {
123
123
$( $items: tt) *
124
124
}
125
125
) => {
126
- $callback!(
126
+ $crate :: $ callback!(
127
127
@parse,
128
128
meta = {
129
129
lifetimes = [ ] ,
@@ -144,7 +144,7 @@ macro_rules! __juniper_parse_object_header {
144
144
$( $items: tt) *
145
145
}
146
146
) => {
147
- $callback!(
147
+ $crate :: $ callback!(
148
148
@parse,
149
149
meta = {
150
150
lifetimes = [ ] ,
@@ -165,7 +165,7 @@ macro_rules! __juniper_parse_object_header {
165
165
$( $items: tt) *
166
166
}
167
167
) => {
168
- $callback!(
168
+ $crate :: $ callback!(
169
169
@parse,
170
170
meta = {
171
171
lifetimes = [ ] ,
@@ -186,7 +186,7 @@ macro_rules! __juniper_parse_object_header {
186
186
$( $items: tt) *
187
187
}
188
188
) => {
189
- $callback!(
189
+ $crate :: $ callback!(
190
190
@parse,
191
191
meta = {
192
192
lifetimes = [ $( $lifetime, ) * ] ,
@@ -207,7 +207,7 @@ macro_rules! __juniper_parse_object_header {
207
207
$( $items: tt) *
208
208
}
209
209
) => {
210
- $callback!(
210
+ $crate :: $ callback!(
211
211
@parse,
212
212
meta = {
213
213
lifetimes = [ $( $lifetime, ) * ] ,
@@ -227,7 +227,7 @@ macro_rules! __juniper_parse_object_header {
227
227
$( $items: tt) *
228
228
}
229
229
) => {
230
- $callback!(
230
+ $crate :: $ callback!(
231
231
@parse,
232
232
meta = {
233
233
lifetimes = [ $( $lifetime, ) * ] ,
@@ -250,7 +250,7 @@ macro_rules! __juniper_parse_object_header {
250
250
$( $items: tt) *
251
251
}
252
252
) => {
253
- $callback!(
253
+ $crate :: $ callback!(
254
254
@parse,
255
255
meta = {
256
256
lifetimes = [ ] ,
@@ -270,7 +270,7 @@ macro_rules! __juniper_parse_object_header {
270
270
$( $items: tt) *
271
271
}
272
272
) => {
273
- $callback!(
273
+ $crate :: $ callback!(
274
274
@parse,
275
275
meta = {
276
276
lifetimes = [ ] ,
@@ -290,7 +290,7 @@ macro_rules! __juniper_parse_object_header {
290
290
$( $items: tt) *
291
291
}
292
292
) => {
293
- $callback!(
293
+ $crate :: $ callback!(
294
294
@parse,
295
295
meta = {
296
296
lifetimes = [ ] ,
@@ -311,7 +311,6 @@ macro_rules! __juniper_parse_object_header {
311
311
} ;
312
312
}
313
313
314
-
315
314
#[ doc( hidden) ]
316
315
#[ macro_export]
317
316
macro_rules! __juniper_parse_field_list {
@@ -322,7 +321,7 @@ macro_rules! __juniper_parse_field_list {
322
321
items = [ $( { $( $items: tt) * } , ) * ] ,
323
322
rest =
324
323
) => {
325
- $success_callback!(
324
+ $crate :: $ success_callback!(
326
325
@generate,
327
326
meta = { $( $meta) * } ,
328
327
items = [ $( { $( $items) * } , ) * ] ,
@@ -336,7 +335,7 @@ macro_rules! __juniper_parse_field_list {
336
335
items = [ $( { $( $items: tt) * } , ) * ] ,
337
336
rest = , $( $rest: tt) *
338
337
) => {
339
- __juniper_parse_field_list!(
338
+ $crate :: __juniper_parse_field_list!(
340
339
success_callback = $success_callback,
341
340
additional_parser = { $( $additional) * } ,
342
341
meta = { $( $meta) * } ,
@@ -363,7 +362,7 @@ macro_rules! __juniper_parse_field_list {
363
362
items = [ $( { $( $items: tt) * } , ) * ] ,
364
363
rest = $desc: tt $( $rest: tt) *
365
364
) => {
366
- __juniper_parse_field_list!(
365
+ $crate :: __juniper_parse_field_list!(
367
366
success_callback = $success_callback,
368
367
additional_parser = { $( $additional) * } ,
369
368
meta = {
@@ -388,7 +387,7 @@ macro_rules! __juniper_parse_field_list {
388
387
items = [ $( { $( $items: tt) * } , ) * ] ,
389
388
rest = description: $( $rest: tt) *
390
389
) => {
391
- __juniper_parse_field_list!(
390
+ $crate :: __juniper_parse_field_list!(
392
391
@parse_description,
393
392
success_callback = $success_callback,
394
393
additional_parser = { $( $additional) * } ,
@@ -411,7 +410,7 @@ macro_rules! __juniper_parse_field_list {
411
410
) -> $return_ty: ty $body: block
412
411
$( $rest: tt) *
413
412
) => {
414
- __juniper_parse_field_list!(
413
+ $crate :: __juniper_parse_field_list!(
415
414
success_callback = $success_callback,
416
415
additional_parser = { $( $additional) * } ,
417
416
meta = { $( $meta) * } ,
@@ -446,7 +445,7 @@ macro_rules! __juniper_parse_field_list {
446
445
) -> $return_ty: ty $body: block
447
446
$( $rest: tt) *
448
447
) => {
449
- __juniper_parse_field_list!(
448
+ $crate :: __juniper_parse_field_list!(
450
449
success_callback = $success_callback,
451
450
additional_parser = { $( $additional) * } ,
452
451
meta = { $( $meta) * } ,
@@ -479,7 +478,7 @@ macro_rules! __juniper_parse_field_list {
479
478
) -> $return_ty: ty $( as $desc: tt) * $body: block
480
479
$( $rest: tt) *
481
480
) => {
482
- __juniper_parse_field_list!(
481
+ $crate :: __juniper_parse_field_list!(
483
482
success_callback = $success_callback,
484
483
additional_parser = { $( $additional) * } ,
485
484
meta = { $( $meta) * } ,
@@ -513,7 +512,7 @@ macro_rules! __juniper_parse_field_list {
513
512
) -> $return_ty: ty $( as $desc: tt) * $body: block
514
513
$( $rest: tt) *
515
514
) => {
516
- __juniper_parse_field_list!(
515
+ $crate :: __juniper_parse_field_list!(
517
516
success_callback = $success_callback,
518
517
additional_parser = { $( $additional) * } ,
519
518
meta = { $( $meta) * } ,
@@ -546,7 +545,7 @@ macro_rules! __juniper_parse_field_list {
546
545
items = [ $( { $( $items: tt) * } , ) * ] ,
547
546
rest = $( $rest: tt) *
548
547
) => {
549
- $callback!(
548
+ $crate :: $ callback!(
550
549
$( $header) *
551
550
success_callback = $success_callback,
552
551
additional_parser = {
@@ -586,7 +585,7 @@ macro_rules! __juniper_parse_instance_resolver {
586
585
$( $srctype: ty => $resolver: expr ) ,* $( , ) *
587
586
} $( $rest: tt) *
588
587
) => {
589
- __juniper_parse_field_list!(
588
+ $crate :: __juniper_parse_field_list!(
590
589
success_callback = $success_callback,
591
590
additional_parser = { $( $additional) * } ,
592
591
meta = {
@@ -633,7 +632,7 @@ macro_rules! __juniper_parse_instance_resolver {
633
632
items = [ $( { $( $items: tt) * } , ) * ] ,
634
633
rest = instance_resolvers: |$( & ) * _| { $( $srctype: ty => $resolver: expr ) ,* $( , ) * } $( $rest: tt) *
635
634
) => {
636
- __juniper_parse_field_list!(
635
+ $crate :: __juniper_parse_field_list!(
637
636
success_callback = $success_callback,
638
637
additional_parser = { $( $additional) * } ,
639
638
meta = {
0 commit comments