From feabcfe29e64d74cd57e6350e7f115f114b79707 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 22 Mar 2023 15:26:29 +0900 Subject: [PATCH] doc/limitations.md: remove an entry regarding `binding` Since it's no longer a limitation. --- doc/limitations.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/doc/limitations.md b/doc/limitations.md index f6430b279..9ac765b4b 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -210,21 +210,6 @@ $ ruby -e 'puts Proc.new {}.binding' # ``` -#### mruby [3.0.0 (2021-03-05)] - -``` -$ ./bin/mruby -e 'puts Proc.new {}.binding' -trace (most recent call last): - [0] -e:1 --e:1: undefined method 'binding' (NoMethodError) -``` - -#### mruby [3.1.0 (2022-05-12)] - -`binding` has been supported since 3.1.0. - -See also [mrbgems/mruby-binding](https://github.com/mruby/mruby/tree/master/mrbgems/mruby-binding) and [mrbgems/mruby-binding-core](https://github.com/mruby/mruby/tree/master/mrbgems/mruby-binding-core). - ## `nil?` redefinition in conditional expressions Redefinition of `nil?` is ignored in conditional expressions.