Sha256: e47ebe3364dff2dc9a7f74808e2e8a08829a5d21f1e9ddd61817e21e5b92aec3

Contents?: true

Size: 1.5 KB

Versions: 6913

Compression:

Stored size: 1.5 KB

Contents

module CodeRay
module Encoders
  
  # = Lint Encoder
  #
  # Checks for:
  # 
  # - empty tokens
  # - incorrect nesting
  # 
  # It will raise an InvalidTokenStream exception when any of the above occurs.
  # 
  # See also: Encoders::DebugLint
  class Lint < Debug
    
    register_for :lint
    
    InvalidTokenStream         = Class.new StandardError
    EmptyToken                 = Class.new InvalidTokenStream
    UnknownTokenKind           = Class.new InvalidTokenStream
    IncorrectTokenGroupNesting = Class.new InvalidTokenStream
    
    def text_token text, kind
      raise EmptyToken,       'empty token for %p' % [kind] if text.empty?
      raise UnknownTokenKind, 'unknown token kind %p (text was %p)' % [kind, text] unless TokenKinds.has_key? kind
    end
    
    def begin_group kind
      @opened << kind
    end
    
    def end_group kind
      raise IncorrectTokenGroupNesting, 'We are inside %s, not %p (end_group)' % [@opened.reverse.map(&:inspect).join(' < '), kind] if @opened.last != kind
      @opened.pop
    end
    
    def begin_line kind
      @opened << kind
    end
    
    def end_line kind
      raise IncorrectTokenGroupNesting, 'We are inside %s, not %p (end_line)' % [@opened.reverse.map(&:inspect).join(' < '), kind] if @opened.last != kind
      @opened.pop
    end
    
    protected
    
    def setup options
      @opened = []
    end
    
    def finish options
      raise 'Some tokens still open at end of token stream: %p' % [@opened] unless @opened.empty?
    end
    
  end
  
end
end

Version data entries

6,913 entries across 6,901 versions & 70 rubygems

Version Path
mastermind_adeybee-0.1.2 vendor/bundle/ruby/2.2.0/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
mastermind_adeybee-0.1.1 vendor/bundle/ruby/2.2.0/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
geminfo-0.1.0 path/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
whos_dated_who-0.1.0 vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
whos_dated_who-0.0.1 vendor/bundle/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb
coderay-1.1.0 lib/coderay/encoders/lint.rb
coderay-1.1.0.rc5 lib/coderay/encoders/lint.rb
coderay-1.1.0.rc4 lib/coderay/encoders/lint.rb
coderay-1.1.0.rc3 lib/coderay/encoders/lint.rb