class ROXMLDiff

Attributes

key[R]
matcher[R]
obj_val[R]
operation[R]
template_val[R]

Public Class Methods

new(operation, key, obj_val, template_val, matcher = nil) click to toggle source
# File lib/roundtrip_xml/extractor.rb, line 202
def initialize(operation, key, obj_val, template_val, matcher = nil)
  @operation = operation
  @key = key.to_sym
  @obj_val = obj_val
  @template_val = template_val
  @matcher = matcher
end