summaryrefslogtreecommitdiffhomepage
path: root/doc/limitations.md
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-07-04 15:46:38 +0900
committerGitHub <[email protected]>2017-07-04 15:46:38 +0900
commitc6bd8ceab7244ef913dda99e678e1b97b8fe1a7a (patch)
tree4f7c3eaa6d6f00f2a2671128a00823576918e67d /doc/limitations.md
parente9cdc880082afd037342a81b3aa31a1924f98734 (diff)
parent277391e1b292d369ed47999c7ac1c45f3e0be699 (diff)
downloadmruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.tar.gz
mruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.zip
Merge pull request #3726 from mruby/stable
mruby-1.3.0
Diffstat (limited to 'doc/limitations.md')
-rw-r--r--doc/limitations.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/limitations.md b/doc/limitations.md
index c15b3ba81..db8db9a5c 100644
--- a/doc/limitations.md
+++ b/doc/limitations.md
@@ -38,7 +38,7 @@ puts [1,2,3]
3
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```
[1, 2, 3]
@@ -61,7 +61,7 @@ end
```ZeroDivisionError``` is raised.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
No exception is raised.
@@ -77,7 +77,7 @@ def test; eval 'test'; end; test
```SystemStackError``` is raised.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
Segmentation fault.
@@ -105,7 +105,7 @@ p Liste.new "foobar"
``` [] ```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```ArgumentError``` is raised.
@@ -135,7 +135,7 @@ false
true
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```
true
@@ -158,7 +158,7 @@ defined?(Foo)
nil
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```NameError``` is raised.
@@ -175,7 +175,7 @@ alias $a $__a__
``` nil ```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
Syntax error
@@ -197,7 +197,7 @@ end
```ArgumentError``` is raised.
The re-defined ```+``` operator does not accept any arguments.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
``` 'ab' ```
Behavior of the operator wasn't changed.