aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-05 21:34:24 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-05 21:34:24 +0000
commit60870c4cccbd94d15137241fed8ef699053bd529 (patch)
tree135ec18c0de6c6af48b98ff5132ac8f26eb1cc77 /NEWS
parent77f7ce87a6a3b7c065040905c82d9690ead7dee5 (diff)
downloadruby-60870c4cccbd94d15137241fed8ef699053bd529.tar.gz
* proc.c: enable optimization of Proc#call.
[Feature #11569] * NEWS: write about this optimization and incompatibilities. * test/ruby/test_backtrace.rb: catch up this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 10e5e11d73..8a4141e198 100644
--- a/NEWS
+++ b/NEWS
@@ -65,6 +65,12 @@ with all sufficient information, see the ChangeLog file.
true when the receiver is positive and negative respectively.
[Feature #11151]
+* Proc
+
+ * Proc#call (and also #[], #===, #yield) are optimized.
+ Backtrace doesn't show each methods (show block lines directly).
+ TracePoint also ignore these calls. [Feature #11569]
+
* Thread
* Thread#name, Thread#name= are added to handle thread names [Feature #11251]