Commit d1691268 authored by Ralph Desir(Mav7)'s avatar Ralph Desir(Mav7)

updated YARD docs on mruby.h

parent 2df9786f
...@@ -21,7 +21,7 @@ MRuby::Build.new do |conf| ...@@ -21,7 +21,7 @@ MRuby::Build.new do |conf|
# include the default GEMs # include the default GEMs
conf.gembox 'default' conf.gembox 'default'
conf.gem '/home/thamav/tests/mrbgem_test'
# C compiler settings # C compiler settings
# conf.cc do |cc| # conf.cc do |cc|
# cc.command = ENV['CC'] || 'gcc' # cc.command = ENV['CC'] || 'gcc'
...@@ -82,7 +82,7 @@ MRuby::Build.new do |conf| ...@@ -82,7 +82,7 @@ MRuby::Build.new do |conf|
# bintest # bintest
# conf.enable_bintest # conf.enable_bintest
end end
=begin
MRuby::Build.new('host-debug') do |conf| MRuby::Build.new('host-debug') do |conf|
# load specific toolchain settings # load specific toolchain settings
...@@ -117,7 +117,7 @@ MRuby::Build.new('test') do |conf| ...@@ -117,7 +117,7 @@ MRuby::Build.new('test') do |conf|
conf.gembox 'default' conf.gembox 'default'
end end
=end
# Define cross build settings # Define cross build settings
# MRuby::CrossBuild.new('32bit') do |conf| # MRuby::CrossBuild.new('32bit') do |conf|
# toolchain :gcc # toolchain :gcc
......
...@@ -496,6 +496,21 @@ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*); ...@@ -496,6 +496,21 @@ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*);
/** /**
* Initialize a new object instace of c class. * Initialize a new object instace of c class.
* *
* // Example:
* #include <stdio.h>
* #include <mruby.h>
*
* void
* mrb_example_gem_init(mrb_state* mrb) {
* struct RClass *example_class;
*
* mrb_value *argv[1];
* mrb_value obj;
*
* example_class = mrb_define_class(mrb, "ExampleClass", mrb->object_class);* argv[0] = example_class;
* obj = mrb_obj_new(mrb, mrb->object_class, 1, argv); // => ExampleClass
* mrb_funcall(mrb, obj, "puts", 1, example_class);
* }
* @param mrb The current mruby state. * @param mrb The current mruby state.
* @param c Reference to the class of the new object. * @param c Reference to the class of the new object.
* @param argc Number of arguments in argv * @param argc Number of arguments in argv
...@@ -504,7 +519,31 @@ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*); ...@@ -504,7 +519,31 @@ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*);
*/ */
MRB_API mrb_value mrb_obj_new(mrb_state *mrb, struct RClass *c, mrb_int argc, const mrb_value *argv); MRB_API mrb_value mrb_obj_new(mrb_state *mrb, struct RClass *c, mrb_int argc, const mrb_value *argv);
/** @see mrb_obj_new */ /**
* Initialize a new object instace of c class.
*
* // Example:
* #include <stdio.h>
* #include <mruby.h>
*
* void
* mrb_example_gem_init(mrb_state* mrb) {
* struct RClass *example_class;
*
* mrb_value *argv[1];
* mrb_value obj;
* mrb_value obj_inst;
*
* example_class = mrb_define_class(mrb, "ExampleClass", mrb->object_class);*
* argv[0] = example_class;
* obj = mrb_obj_new(mrb, mrb->object_class, 1, argv);
* obj_inst = mrb_class_new_instance(mrb, 0, argv, example_class); // => #<ExampleClass:0x89734f8>
* mrb_funcall(mrb, obj, "puts", 1, obj_inst);
* }
* @param mrb The current mruby state.
* @param argc Number of arguments in argv
* @param c Reference to the class of the new object.
*/
MRB_INLINE mrb_value mrb_class_new_instance(mrb_state *mrb, mrb_int argc, const mrb_value *argv, struct RClass *c) MRB_INLINE mrb_value mrb_class_new_instance(mrb_state *mrb, mrb_int argc, const mrb_value *argv, struct RClass *c)
{ {
return mrb_obj_new(mrb,c,argc,argv); return mrb_obj_new(mrb,c,argc,argv);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment