# File lib/puppet/property.rb, line 157
157:   def safe_insync?(is)
158:     # If there is no @should value, consider the property to be in sync.
159:     return true unless @should
160: 
161:     # Otherwise delegate to the (possibly derived) insync? method.
162:     insync?(is)
163:   end