summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-11-12 13:00:24 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-11-12 13:00:24 -0800
commit1cd9d7e40abb8112fe9f05193f9af6ec357a71eb (patch)
tree7260feb794228246b8ffe4563d1f3b012e5cc45e /include
parent191d1391c66ddca71bf9e19f5af18478e73428d7 (diff)
parent611cfee3c2ff1a06760cbe4d0d1415f65087b505 (diff)
downloadmruby-1cd9d7e40abb8112fe9f05193f9af6ec357a71eb.tar.gz
mruby-1cd9d7e40abb8112fe9f05193f9af6ec357a71eb.zip
Merge pull request #546 from skandhas/pr-add-class-variables
add Module#class_variables
Diffstat (limited to 'include')
-rw-r--r--include/mruby/variable.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/variable.h b/include/mruby/variable.h
index e805b4b2b..5126315c4 100644
--- a/include/mruby/variable.h
+++ b/include/mruby/variable.h
@@ -53,6 +53,7 @@ void mrb_gv_set(mrb_state *mrb, mrb_sym sym, mrb_value val);
mrb_value mrb_obj_instance_variables(mrb_state*, mrb_value);
mrb_value mrb_obj_iv_inspect(mrb_state*, struct RObject*);
mrb_sym mrb_class_sym(mrb_state *mrb, struct RClass *c, struct RClass *outer);
+mrb_value mrb_mod_class_variables(mrb_state*, mrb_value);
/* GC functions */
void mrb_gc_mark_gv(mrb_state*);