class ChefDK::Policyfile::AttributeMergeChecker::Leaf

A Leaf is used to mark an individual attribute that has already been provided, along with its value and by who

@api private

Attributes

provided_by[R]
val[R]

Public Class Methods

new(provided_by, val) click to toggle source
# File lib/chef-dk/policyfile/attribute_merge_checker.rb, line 43
def initialize(provided_by, val)
  @provided_by = provided_by
  @val = val
end