You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scribble currently emits the code for old(bar) before the code for #try foo. This can sometimes be a problem, when the fuzzer is having trouble getting past some part of bar, and needs the annotation for foo to figure things out.
Instead we should make sure to emit the code for all #try and #require annotations first, to make sure they first help the fuzzer explore the space, before it hits the actual annotation code.
The text was updated successfully, but these errors were encountered:
Given this sample:
scribble currently emits the code for
old(bar)
before the code for#try foo
. This can sometimes be a problem, when the fuzzer is having trouble getting past some part ofbar
, and needs the annotation forfoo
to figure things out.Instead we should make sure to emit the code for all
#try
and#require
annotations first, to make sure they first help the fuzzer explore the space, before it hits the actual annotation code.The text was updated successfully, but these errors were encountered: