diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-11-18 21:16:22 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-11-18 21:16:22 +0900 |
| commit | 7405821f5afb0b339fccad4f33c42ed845794673 (patch) | |
| tree | b8a4d78342869686deb8ed3c39462f92b7959a77 /doc/limitations.md | |
| parent | 86f9254df0face7538375db5ec94fbba0bd69a11 (diff) | |
| download | mruby-7405821f5afb0b339fccad4f33c42ed845794673.tar.gz mruby-7405821f5afb0b339fccad4f33c42ed845794673.zip | |
doc/limitaions.md: Remove infinite recursion entry.
It's fixed since 1.3.0
Diffstat (limited to 'doc/limitations.md')
| -rw-r--r-- | doc/limitations.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/limitations.md b/doc/limitations.md index bdd5e59ab..134ff6e26 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -65,22 +65,6 @@ end No exception is raised. -## Check of infinite recursion - -mruby does not check infinite recursion across C extensions. - -```ruby -def test; eval 'test'; end; test -``` - -#### Ruby [ruby 2.0.0p645 (2015-04-13 revision 50299)] - -```SystemStackError``` is raised. - -#### mruby [1.3.0 (2017-7-4)] - -Segmentation fault. - ## Fiber execution can't cross C function boundary mruby's ```Fiber``` is implemented in a similar way to Lua's co-routine. This |
