We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here one keyword ("superunique") is given, and the single instance of the keyword is returned:
Here two keywords ("superunique" and "stringtwo") are given, and the single instance of the first keyword is returned twice:
The problem lies in that there's a foreach for keywords:
SauronEye/src/SauronEye/Searcher.cs
Line 269 in 0019969
Which later for each keyword also runs a foreach for regexes:
SauronEye/src/SauronEye/RegexSearch.cs
Line 39 in 0019969
Additionally, here setting 'res' is unnecessary as it is already set in RegexSearcher.GetIndexOfRegexPattern
Line 287 in 0019969
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue @martinsohn, I need to further investigate when I have some more time.
Sorry, something went wrong.
No branches or pull requests
Here one keyword ("superunique") is given, and the single instance of the keyword is returned:
Here two keywords ("superunique" and "stringtwo") are given, and the single instance of the first keyword is returned twice:
The problem lies in that there's a foreach for keywords:
SauronEye/src/SauronEye/Searcher.cs
Line 269 in 0019969
Which later for each keyword also runs a foreach for regexes:
SauronEye/src/SauronEye/RegexSearch.cs
Line 39 in 0019969
Additionally, here setting 'res' is unnecessary as it is already set in RegexSearcher.GetIndexOfRegexPattern
SauronEye/src/SauronEye/Searcher.cs
Line 287 in 0019969
The text was updated successfully, but these errors were encountered: