Closed ainthek closed 9 years ago
grasp -e 'put($);put($)' -r samples
I;m trying to find two calls to put method one following the other but I gent error Selector body can't be more than one statement. Any hints please ?
grasp 'exp-statement[exp=call[callee=#put]]+exp-statement[exp=call[callee=#put]]' will match the second put if there are two in a row.
grasp 'exp-statement[exp=call[callee=#put]]+exp-statement[exp=call[callee=#put]]'
put
grasp -e 'put($);put($)' -r samples
I;m trying to find two calls to put method one following the other but I gent error Selector body can't be more than one statement. Any hints please ?