To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 8a / 8a9427066e2d6e798584d5fb43dde42f7e5a0ae0.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (238 Bytes)

1
module CodeRay
2
module Encoders
3
  
4
  # = Null Encoder
5
  #
6
  # Does nothing and returns an empty string.
7
  class Null < Encoder
8
    
9
    register_for :null
10
    
11
    def text_token text, kind
12
      # do nothing
13
    end
14
    
15
  end
16
  
17
end
18
end