Files
codeql/ruby/ql/test/library-tests/frameworks/action_mailer/mailer.rb
Owen Mansel-Chan 6001c735ff Ruby: Inline expectation should have space after $
This was a regex-find-replace from `# \$(?! )` (using a negative lookahead) to `# $ `.
2026-03-04 12:45:06 +00:00

6 lines
95 B
Ruby

class MyMailer < ActionMailer::Base
def foo
sink params[:foo] # $ hasTaintFlow
end
end