txus/to_source

View on GitHub
lib/to_source/emitter/nth_ref.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ToSource
  class Emitter
    class NthRef < self

      handle(Rubinius::AST::NthRef)

    private

      def dispatch
        emit("$#{node.which}")
      end
    end
  end
end