class Rouge::Lexers::Matlab

Public Class Methods

builtins() click to toggle source
# File lib/rouge/lexers/matlab.rb, line 20
def self.builtins
  load Pathname.new(__FILE__).dirname.join('matlab/builtins.rb')
  self.builtins
end
keywords() click to toggle source
# File lib/rouge/lexers/matlab.rb, line 13
def self.keywords
  @keywords = Set.new %w(
    break case catch classdef continue else elseif end for function
    global if otherwise parfor persistent return spmd switch try while
  )
end