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
commit0018a71184edbc4b46bbfd2b3a56e4a5a585d4f3 (patch)
tree135ec18c0de6c6af48b98ff5132ac8f26eb1cc77 /NEWS
parent9b77261a123ddd48b960a397f80b40b99d9f62b2 (diff)
downloadruby-0018a71184edbc4b46bbfd2b3a56e4a5a585d4f3.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]