class Rouge::Lexers::RobotFramework

def self.settings_with_args

def self.settings_with_args
  @settings_with_args ||= Set.new [
    "arguments", "default tags", "documentation", "force tags",
    "metadata", "return", "tags", "timeout", "task timeout",
    "test timeout"
  ]
end

def self.settings_with_keywords

def self.settings_with_keywords
  @settings_with_keywords ||= Set.new [
    "library", "resource", "setup", "teardown", "template", "suite setup",
    "suite teardown", "task setup", "task teardown", "task template",
    "test setup", "test teardown", "test template", "variables"
  ]
end

def initialize(opts = {})

def initialize(opts = {})
  super(opts)
  @col = 0
  @next = nil
  @is_template = false
end