class Rouge::Lexers::RobotFramework
Public Class Methods
new(opts = {})
click to toggle source
Calls superclass method
# File lib/rouge/lexers/robot_framework.rb, line 15 def initialize(opts = {}) super(opts) @col = 0 @next = nil @is_template = false end
settings_with_args()
click to toggle source
# File lib/rouge/lexers/robot_framework.rb, line 30 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
settings_with_keywords()
click to toggle source
# File lib/rouge/lexers/robot_framework.rb, line 22 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