class Rouge::Lexers::Cfscript

Public Class Methods

declarations() click to toggle source
# File lib/rouge/lexers/cfscript.rb, line 19
def self.declarations
  @declarations ||= %w(
    component property function remote public package private
  )
end
keywords() click to toggle source
# File lib/rouge/lexers/cfscript.rb, line 13
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/lexers/cfscript.rb, line 25
def self.types
  @types ||= %w(
    any array binary boolean component date guid numeric query string struct uuid void xml
  )
end