class DHS::Problems::Nested::Warnings

Public Class Methods

new(warnings, scope) click to toggle source
# File lib/dhs/problems/nested/warnings.rb, line 8
def initialize(warnings, scope)
  @raw = warnings.raw
  @messages = nest(warnings.messages, scope)
  @scope = scope
end