feat(queries): regex injection for golang (#9510)

This commit is contained in:
Matouš Dzivjak 2024-02-03 23:27:40 +00:00 committed by GitHub
parent 81ae768a4e
commit d545452819
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,2 +1,14 @@
((comment) @injection.content
(#set! injection.language "comment"))
(call_expression
(selector_expression) @_function
(#any-of? @_function "regexp.Match" "regexp.MatchReader" "regexp.MatchString" "regexp.Compile" "regexp.CompilePOSIX" "regexp.MustCompile" "regexp.MustCompilePOSIX")
(argument_list
.
[
(raw_string_literal)
(interpreted_string_literal)
] @injection.content
(#set! injection.language "regex")))