Sha256: 1071c8717f74f445a6aeb1b097a1ea9ca30c0e9b88997ed1f0b951ccd88b3e64
Contents?: true
Size: 392 Bytes
Versions: 1
Compression:
Stored size: 392 Bytes
Contents
module ToSource class Emitter # Emiter for alias node class Alias < self handle(Rubinius::AST::Alias) private delegate(:to, :from) # Perform dispatch # # @return [undefined] # # @api private # def dispatch emit('alias ') emit(to.value) space emit(from.value) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
to_source-0.2.16 | lib/to_source/emitter/alias.rb |