Sha256: 6e0be75ab01db30b95854da8d0a1748987d5f001ad6a6ed1df4e4643cff4aff6
Contents?: true
Size: 297 Bytes
Versions: 13
Compression:
Stored size: 297 Bytes
Contents
# encoding: utf-8 module CodeAnalyzer::CheckingVisitor # Base class for checking visitor. class Base def initialize(options={}) @checkers = options[:checkers] end def after_check; end def warnings @warnings ||= @checkers.map(&:warnings).flatten end end end
Version data entries
13 entries across 13 versions & 1 rubygems