doc/limitations.md
The philosophy of mruby is to be a lightweight implementation of the Ruby ISO standard. These two objectives are partially contradicting. Ruby is an expressive language with complex implementation details which are difficult to implement in a lightweight manner. To cope with this, limitations to the "Ruby Compatibility" are defined.
This document is collecting these limitations.
This document does not contain a complete list of limitations. Please help to improve it by submitting your findings.
Kernel.raise in rescue clauseKernel.raise without arguments does not raise the current exception within
a rescue clause.
begin
1 / 0
rescue
raise
end
ZeroDivisionError is raised.
RuntimeError is raised instead of ZeroDivisionError. To re-raise the exception, you have to do:
begin
1 / 0
rescue => e
raise e
end
mruby's Fiber is implemented similarly to Lua's co-routine. This
results in the consequence that you can't switch context within C functions.
Only exception is mrb_fiber_yield at return.
Array does not support instance variablesTo reduce memory consumption Array does not support instance variables.
class Liste < Array
def initialize(str = nil)
@field = str
end
end
p Liste.new "foobar"
[]
ArgumentError is raised.
defined?The defined? keyword is considered too complex to be fully
implemented. It is recommended to use const_defined? and
other reflection methods instead.
defined?(Foo)
nil
NameError is raised.
alias on global variablesAliasing a global variable works in CRuby but is not part of the ISO standard.
alias $a $__a__
nil
Syntax error
Operators on some of the primitive classes cannot be overridden, as they are optimized in the VM.
class String
def +
end
end
'a' + 'b'
ArgumentError is raised.
The re-defined + operator does not accept any arguments.
'ab'
Behavior of the operator wasn't changed.
Kernel#binding is not supported without mruby-binding gemKernel#binding method requires the mruby-binding gem (included
in the metaprog gembox). Without this gem, binding is not
available.
nil? redefinition in conditional expressionsRedefinition of nil? is ignored in conditional expressions.
a = "a"
def a.nil?
true
end
puts(a.nil? ? "truthy" : "falsy")
Ruby outputs truthy. mruby outputs falsy.
def m(a,(b,c),d); p [a,b,c,d]; end
m(1,[2,3],4) # => [1,2,3,4]
Destructured arguments (b and c in above example) cannot be accessed
from the default expression of optional arguments and keyword arguments,
since actual assignment is done after the evaluation of those default
expressions. Thus:
def f(a,(b,c),d=b)
p [a,b,c,d]
end
f(1,[2,3])
CRuby gives [1,2,3,nil]. mruby raises NoMethodError for b.
Keyword argument expansion has similar restrictions. The following example, gives [1, 1] for CRuby, mruby raises NoMethodError for b.
def g(a: 1, b: a)
p [a,b]
end
g(a:1)
To make implementation simpler, mruby does not use double dispatching in module loading (include/prepend/extend).
Those method internally called corresponding actual load methods (append_features/prepend_features/extend_object).
But they are rarely overloaded, consumes more memory, and make loading little bit slower. As a Ruby implementation for the smaller device,
we decided mruby simpler.
module M
def self.append_features(mod)
p :append
end
end
class C
include M
end
Prints :append.
Nothing printed (since include does not call append_features internally).
#hash call for small hashesFor performance reasons, mruby avoids calling the #hash method on keys when a hash table is small. This means that custom #hash methods on key objects may not be executed.
Pattern matching is only partially supported in mruby. Currently, only the rightward assignment operator (=>) with simple variable binding is implemented.
expr => var # Supported: assigns expr to var
Full pattern matching with case/in syntax and various pattern types:
case [1, 2, 3]
in [a, b, c]
puts "#{a}, #{b}, #{c}" # => "1, 2, 3"
end
case {name: "Alice", age: 30}
in {name:, age:}
puts "#{name} is #{age}" # => "Alice is 30"
end
Only rightward assignment with simple variable binding:
[1, 2, 3] => x
puts x # => [1, 2, 3]
The following are not supported:
case/in syntaxin [a, b, c]in {name:, age:}in pattern if conditionin ^variablein [*, x, *]in pattern1 | pattern2value in patternNote: mruby does provide Array#deconstruct and Hash#deconstruct_keys methods for future pattern matching compatibility.
Module refinements (refine, using) are not supported in mruby.
Encoding Classmruby does not have an Encoding class. Strings are treated as
byte sequences by default. UTF-8 aware string operations can be
enabled with the MRB_UTF8_STRING compile flag.
Integer size depends on the value boxing configuration:
| Configuration | Integer range |
|---|---|
| Word boxing, 64-bit (default) | roughly +/- 2^62 |
| Word boxing, 32-bit (default) | roughly +/- 2^30 |
| NaN boxing (64-bit only) | -2^31 to 2^31-1 |
Code relying on 64-bit integer precision may behave differently
across configurations. The mruby-bigint gem provides
arbitrary-precision integers when included.
ObjectSpace.each_object by DefaultObjectSpace is only available via the mruby-objectspace gem
(included in the stdlib gembox). Even with the gem,
ObjectSpace.each_object has limited functionality compared
to CRuby.