class Cucumber::Formatter::LegacyApi::Adapter::Indent

def examples_table(*); end

def examples_table(*); end

def examples_table_row(*); end

def examples_table_row(*); end

def initialize(node)

def initialize(node)
  @widths = []
  node.describe_to(self)
end

def max

def max
  @widths.max
end

def of(node)

def of(node)
  # The length of the instantiated steps in --expand mode are currently
  # not included in the calculation of max => make sure to return >= 1
  [1, max - node.name.length - node.keyword.length].max
end

def record_width_of(node)

def record_width_of(node)
  @widths << node.keyword.length + node.name.length + 1
end