@@ -259,11 +259,11 @@ macro_rules! __parse_ensure {
259
259
} ;
260
260
261
261
( epath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $( $dup: tt) * ) :: << $( $rest: tt) * ) => {
262
- $crate:: __parse_ensure!( generic ( epath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * )
262
+ $crate:: __parse_ensure!( generic ( epath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * ) // FIXME
263
263
} ;
264
264
265
265
( epath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $( $dup: tt) * ) :: <- $( $rest: tt) * ) => {
266
- $crate:: __parse_ensure!( generic ( epath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * )
266
+ $crate:: __parse_ensure!( generic ( epath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * ) // FIXME
267
267
} ;
268
268
269
269
( epath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $ident: tt $( $dup: tt) * ) :: $i: ident $( $rest: tt) * ) => {
@@ -309,11 +309,11 @@ macro_rules! __parse_ensure {
309
309
} ;
310
310
311
311
( atom $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $dot: tt $ident: tt $colons: tt $( $dup: tt) * ) . $i: ident :: << $( $rest: tt) * ) => {
312
- $crate:: __parse_ensure!( generic ( atom $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $dot $ident $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * )
312
+ $crate:: __parse_ensure!( generic ( atom $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $dot $ident $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * ) // FIXME
313
313
} ;
314
314
315
315
( atom $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $dot: tt $ident: tt $colons: tt $( $dup: tt) * ) . $i: ident :: <- $( $rest: tt) * ) => {
316
- $crate:: __parse_ensure!( generic ( atom $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $dot $ident $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * )
316
+ $crate:: __parse_ensure!( generic ( atom $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $dot $ident $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * ) // FIXME
317
317
} ;
318
318
319
319
( atom $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $dot: tt $field: tt $( $dup: tt) * ) . $i: ident $( $rest: tt) * ) => {
@@ -445,23 +445,23 @@ macro_rules! __parse_ensure {
445
445
} ;
446
446
447
447
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } $dup: tt << $( $rest: tt) * ) => {
448
- $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * )
448
+ $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * ) // FIXME
449
449
} ;
450
450
451
451
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } $dup: tt <- $( $rest: tt) * ) => {
452
- $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * )
452
+ $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * ) // FIXME
453
453
} ;
454
454
455
455
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $langle: tt $( $dup: tt) * ) :: < $( $rest: tt) * ) => {
456
456
$crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons $langle) $( $parse) * } ( $( $rest) * ) $( $rest) * )
457
457
} ;
458
458
459
459
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $( $dup: tt) * ) :: << $( $rest: tt) * ) => {
460
- $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * )
460
+ $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( < $( $rest) * ) < $( $rest) * ) // FIXME
461
461
} ;
462
462
463
463
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $( $dup: tt) * ) :: <- $( $rest: tt) * ) => {
464
- $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * )
464
+ $crate:: __parse_ensure!( generic ( tpath $stack) $bail ( $( $fuel) * ) { ( $( $buf) * $colons <) $( $parse) * } ( - $( $rest) * ) - $( $rest) * ) // FIXME
465
465
} ;
466
466
467
467
( tpath $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $colons: tt $ident: tt $( $dup: tt) * ) :: $i: ident $( $rest: tt) * ) => {
@@ -531,7 +531,7 @@ macro_rules! __parse_ensure {
531
531
} ;
532
532
533
533
( generic ( $pop: ident $stack: tt) $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } $dup: tt >> $( $rest: tt) * ) => {
534
- $crate:: __parse_ensure!( $pop $stack $bail ( $( $fuel) * ) { ( $( $buf) * >) $( $parse) * } ( > $( $rest) * ) > $( $rest) * )
534
+ $crate:: __parse_ensure!( $pop $stack $bail ( $( $fuel) * ) { ( $( $buf) * >) $( $parse) * } ( > $( $rest) * ) > $( $rest) * ) // FIXME
535
535
} ;
536
536
537
537
( generic $stack: tt $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } ( $neg: tt $lit: literal $( $dup: tt) * ) - $( $rest: tt) * ) => {
@@ -567,7 +567,7 @@ macro_rules! __parse_ensure {
567
567
} ;
568
568
569
569
( arglist ( $pop: ident $stack: tt) $bail: tt ( ~$( $fuel: tt) * ) { ( $( $buf: tt) * ) $( $parse: tt) * } $dup: tt >> $( $rest: tt) * ) => {
570
- $crate:: __parse_ensure!( $pop $stack $bail ( $( $fuel) * ) { ( $( $buf) * >) $( $parse) * } ( > $( $rest) * ) > $( $rest) * )
570
+ $crate:: __parse_ensure!( $pop $stack $bail ( $( $fuel) * ) { ( $( $buf) * >) $( $parse) * } ( > $( $rest) * ) > $( $rest) * ) // FIXME
571
571
} ;
572
572
573
573
// patterns
0 commit comments