# File lib/cucumber/parser/gherkin_builder.rb, line 108 def initialize(file, node) @file, @node = file, node end
# File lib/cucumber/parser/gherkin_builder.rb, line 122 def comment Ast::Comment.new(node.comments.map{ |comment| comment.value }.join("\n")) end
# File lib/cucumber/parser/gherkin_builder.rb, line 118 def location Ast::Location.new(file, node.line) end