Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created December 23, 2022 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/a9beb856d2a647f0a02c4f0a5a4ef398 to your computer and use it in GitHub Desktop.
Save Whateverable/a9beb856d2a647f0a02c4f0a5a4ef398 to your computer and use it in GitHub Desktop.
bisectable6
grammar Demo2 { token TOP { <to2> }; token to2 { \d+ }; }; my $var2 = Demo2.parse("111"); grammar Demo { token TOP { <to> }; token to { \d+ }; }; my $var = Demo.parse("111"); say $var<to>, $var2<to2>; say $var<to> eqv $var2<to2>
Some old revs are not ancestors of the new rev.
git bisect cannot work properly in this case.
Maybe you mistook old and new revs?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment