Method: Alda::REPL::TempScore#get_binding
- Defined in:
- lib/alda-rb/repl.rb
#get_binding ⇒ Object
:call-seq:
get_binding() -> Binding
Returns a Binding for the instance eval local environment of this score. Different callings of this method will return different bindings, and they do not share local variables. This method is called in Alda::REPL::new.
$ alda-irb
> p get_binding.receiver == self
true
154 155 156 |
# File 'lib/alda-rb/repl.rb', line 154 def get_binding binding end |