Skip to content

Commit

Permalink
* NEWS: update about new methods for Binding.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Aug 9, 2013
1 parent 568c5a8 commit a39e724
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Fri Aug 9 19:13:54 2013 Koichi Sasada <ko1@atdot.net>

* NEWS: update about new methods for Binding.

Fri Aug 9 18:48:09 2013 Koichi Sasada <ko1@atdot.net>

* proc.c: add Binding#local_variable_get/set/defined?
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ with all sufficient information, see the ChangeLog file.

=== Core classes updates (outstanding ones only)

* Binding
* New methods
* Binding#local_variable_get(symbol)
* Binding#local_variable_set(symbol)
* Binding#local_variable_defined?(symbol)

* GC
* added environment variable:
* RUBY_HEAP_SLOTS_GROWTH_FACTOR: growth rate of the heap.
Expand Down

3 comments on commit a39e724

@moretea
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should Binding.local_variable_set not have two params? Symbol and value?

@zzak
Copy link
Member

@zzak zzak commented on a39e724 Aug 10, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@moretea It does! This is a typo, thanks for pointing that out!

@zzak
Copy link
Member

@zzak zzak commented on a39e724 Aug 10, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@moretea Fixed by e9f7bd3

Thank you!

Please sign in to comment.