class Cucumber::CucumberExpressions::TheEndOfLineCannotBeEscaped

def initialize(expression)

def initialize(expression)
  index = expression.codepoints.length - 1
  super(build_message(
            index,
            expression,
            point_at(index),
            'The end of line can not be escaped',
            "You can use '\\\\' to escape the the '\\'"
        ))
end