class Gherkin::Formatter::Argument

Attributes

offset[R]
val[R]

Public Class Methods

new(offset, val) click to toggle source

Creates a new Argument that starts at character offset offset with value val

# File lib/gherkin/formatter/argument.rb, line 11
def initialize(offset, val)
  @offset, @val = offset, val
end