class Gherkin::TokenMatcher

def match_Comment(token)

def match_Comment(token)
  return false unless token.line.start_with?('#')
  text = token.line.get_line_text(0) #take the entire line, including leading space
  set_token_matched(token, :Comment, text, nil, 0)
  true
end