class CodeRay::TokensProxy

def method_missing method, *args, &blk

delegates to tokens otherwise.
Tries to call encode;
def method_missing method, *args, &blk
  encode method.to_sym, *args
rescue PluginHost::PluginNotFound
  tokens.send(method, *args, &blk)
end