multiplier icon indicating copy to clipboard operation
multiplier copied to clipboard

Create searchable index on string literals and integer literals

Open pgoodman opened this issue 2 years ago • 1 comments

Basically, we should be able to do the eqivalent of Binary Ninja's or IDA Pro's "strings view," but for string literals from the program. Absent making a tool that will scan all StringLiteral expressions, this will require populating a full text searchable index at index time.

We should also have a similar index on integer literals. More care might need to be taken on how we go about the integer literal index.

pgoodman avatar Apr 25 '23 17:04 pgoodman

This index could then be connected to token highlighting in the gui, so that all instances of a given integer value would be highlighted.

pgoodman avatar May 09 '23 16:05 pgoodman