class Transpec::AccuracyAnnotation

Public Class Methods

new(source_range) click to toggle source
Calls superclass method Transpec::Annotatable::new
# File lib/transpec/record.rb, line 141
def initialize(source_range)
  message = "The `#{source_range.source}` has been converted " \
            'but it might possibly be incorrect ' \
            'due to a lack of runtime information. ' \
            "It's recommended to review the change carefully."
  super(message, source_range)
end