Sha256: af59af7eea57d6c3dd43fada221a25e299f559921365883b154723a1f76c31dd

Contents?: true

Size: 1.62 KB

Versions: 6646

Compression:

Stored size: 1.62 KB

Contents

module CodeRay
  
  # = WordList
  # 
  # <b>A Hash subclass designed for mapping word lists to token types.</b>
  # 
  # A WordList is a Hash with some additional features.
  # It is intended to be used for keyword recognition.
  #
  # WordList is optimized to be used in Scanners,
  # typically to decide whether a given ident is a special token.
  #
  # For case insensitive words use WordList::CaseIgnoring.
  #
  # Example:
  #
  #  # define word arrays
  #  RESERVED_WORDS = %w[
  #    asm break case continue default do else
  #  ]
  #  
  #  PREDEFINED_TYPES = %w[
  #    int long short char void
  #  ]
  #  
  #  # make a WordList
  #  IDENT_KIND = WordList.new(:ident).
  #    add(RESERVED_WORDS, :reserved).
  #    add(PREDEFINED_TYPES, :predefined_type)
  #  
  #  ...
  #  
  #  def scan_tokens tokens, options
  #    ...
  #    
  #    elsif scan(/[A-Za-z_][A-Za-z_0-9]*/)
  #      # use it
  #      kind = IDENT_KIND[match]
  #      ...
  class WordList < Hash
    
    # Create a new WordList with +default+ as default value.
    def initialize default = false
      super default
    end
    
    # Add words to the list and associate them with +value+.
    # 
    # Returns +self+, so you can concat add calls.
    def add words, value = true
      words.each { |word| self[word] = value }
      self
    end
    
  end
  
  
  # A CaseIgnoring WordList is like a WordList, only that
  # keys are compared case-insensitively (normalizing keys using +downcase+).
  class WordList::CaseIgnoring < WordList
    
    def [] key
      super key.downcase
    end
    
    def []= key, value
      super key.downcase, value
    end
    
  end
  
end

Version data entries

6,646 entries across 6,634 versions & 72 rubygems

Version Path
affixapi-1.1.102 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
mux_ruby-3.20.0 vendor/bundle/ruby/3.2.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_id_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_id_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_id_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_id_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
ory-client-1.15.12 vendor/bundle/ruby/3.1.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_id_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_bank_ruby-0.123.3 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb
cybrid_api_organization_ruby-0.123.3 vendor/bundle/ruby/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb