Sha256: cb44712cd9bb01ac5f45b20c4b16746fcd1a476082e342d2be4a023c6220f534
Contents?: true
Size: 995 Bytes
Versions: 2
Compression:
Stored size: 995 Bytes
Contents
require 'brakeman/processors/lib/processor_helper' require 'brakeman/util' class Brakeman::BasicProcessor < Brakeman::SexpProcessor include Brakeman::ProcessorHelper include Brakeman::Util def initialize tracker super() @tracker = tracker @current_template = @current_module = @current_class = @current_method = nil end def process_default exp process_all exp end def process_safe_call exp if self.respond_to? :process_call process_call exp else process_default exp end end def process_safe_attrasgn exp if self.respond_to? :process_attrasgn process_attrasgn exp else process_default exp end end def process_if exp condition = exp.condition process condition if true? condition process exp.then_clause elsif false? condition process exp.else_clause else [exp.then_clause, exp.else_clause].compact.map do |e| process e end end exp end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
brakeman-3.3.0 | lib/brakeman/processors/lib/basic_processor.rb |
brakeman-min-3.3.0 | lib/brakeman/processors/lib/basic_processor.rb |