class RougeLines::Lexers::Cfscript
Public Class Methods
declarations()
click to toggle source
# File lib/rouge-lines/lexers/cfscript.rb, line 18 def self.declarations @declarations ||= %w( component property function remote public package private ) end
keywords()
click to toggle source
# File lib/rouge-lines/lexers/cfscript.rb, line 12 def self.keywords @keywords ||= %w( if else var xml default break switch do try catch throw in continue for return while required ) end
types()
click to toggle source
# File lib/rouge-lines/lexers/cfscript.rb, line 24 def self.types @types ||= %w( any array binary boolean component date guid numeric query string struct uuid void xml ) end