class Clomp::Callable

Public Class Methods

[](track, options, _self) click to toggle source
# File lib/clomp/callable.rb, line 4
def [](track, options, _self)
  if track.track_from
    #FIXME: stop executing! we will call it from our context
    track.track_from.new(track_builders: [track], options: options, exec: false)
  else
    _self
  end
end