class Seafoam::Commands::BGVDebugParser

A subclass of BGVParser which prints when pool entries are added.

Public Class Methods

new(out, *args) click to toggle source
Calls superclass method Seafoam::BGV::BGVParser::new
# File lib/seafoam/commands.rb, line 538
def initialize(out, *args)
  super(*args)
  @out = out
end

Public Instance Methods

set_pool_entry(id, object) click to toggle source
Calls superclass method Seafoam::BGV::BGVParser#set_pool_entry
# File lib/seafoam/commands.rb, line 543
def set_pool_entry(id, object)
  @out.puts "pool #{id} = #{object}"
  super
end