mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
e471d37ca5
We assume meta-programming is less used in embedded environments. We have moved following methods: * Kernel module global_variables, local_variables, singleton_class, instance_variables, instance_variables_defined?, instance_variable_get, instance_variable_set, methods, private_methods, public_methods, protected_methods, singleton_methods, define_singleton_methods * Module class class_variables, class_variables_defined?, class_variable_get, class_variable_set, remove_class_variable, included_modules, instance_methods, remove_method, method_removed, constants * Module class methods constants, nesting Note: Following meta-programming methods are kept in the core: * Module class alias_method, undef_method, ancestors, const_defined?, const_get, const_set, remove_const, method_defined?, define_method * Toplevel object define_method `mruby-metaprog` gem is linked by default (specified in default.gembox). When it is removed, it will save 40KB (stripped:8KB) on x86-64 environment last time I measured.
56 lines
1.1 KiB
Ruby
56 lines
1.1 KiB
Ruby
assert 'Module#name' do
|
|
module Outer
|
|
class Inner; end
|
|
const_set :SetInner, Class.new
|
|
end
|
|
|
|
assert_equal 'Outer', Outer.name
|
|
assert_equal 'Outer::Inner', Outer::Inner.name
|
|
assert_equal 'Outer::SetInner', Outer::SetInner.name
|
|
|
|
outer = Module.new do
|
|
const_set :SetInner, Class.new
|
|
end
|
|
Object.const_set :SetOuter, outer
|
|
|
|
assert_equal 'SetOuter', SetOuter.name
|
|
assert_equal 'SetOuter::SetInner', SetOuter::SetInner.name
|
|
|
|
mod = Module.new
|
|
cls = Class.new
|
|
|
|
assert_nil mod.name
|
|
assert_nil cls.name
|
|
end
|
|
|
|
assert 'Module#singleton_class?' do
|
|
mod = Module.new
|
|
cls = Class.new
|
|
scl = (class <<cls; self; end)
|
|
|
|
assert_false mod.singleton_class?
|
|
assert_false cls.singleton_class?
|
|
assert_true scl.singleton_class?
|
|
end
|
|
|
|
assert 'Module#module_eval' do
|
|
mod = Module.new
|
|
mod.class_exec(1,2,3) do |a,b,c|
|
|
assert_equal([1,2,3], [a,b,c])
|
|
def hi
|
|
"hi"
|
|
end
|
|
end
|
|
cls = Class.new
|
|
cls.class_exec(42) do |x|
|
|
assert_equal(42, x)
|
|
include mod
|
|
def hello
|
|
"hello"
|
|
end
|
|
end
|
|
obj = cls.new
|
|
assert_equal("hi", obj.hi)
|
|
assert_equal("hello", obj.hello)
|
|
end
|