mrubyを超漢字で動作させる
Revisão | 84b70886cd9827593810264bf1f068044d5c6986 (tree) |
---|---|
Hora | 2015-10-21 00:16:46 |
Autor | Seba Gamboa <me@sagm...> |
Commiter | Seba Gamboa |
Add block to document mrb_value type
@@ -98,6 +98,22 @@ enum mrb_vtype { | ||
98 | 98 | |
99 | 99 | #include "mruby/object.h" |
100 | 100 | |
101 | +#ifdef MRB_DOCUMENTATION_BLOCK | |
102 | + | |
103 | +/** | |
104 | + * @abstract | |
105 | + * MRuby value boxing. | |
106 | + * | |
107 | + * Actual implementation depends on configured boxing type. | |
108 | + * | |
109 | + * @see mruby/boxing_no.h Default boxing representation | |
110 | + * @see mruby/boxing_word.h Word representation | |
111 | + * @see mruby/boxing_nan.h Boxed double representation | |
112 | + */ | |
113 | +typedef void mrb_value; | |
114 | + | |
115 | +#endif | |
116 | + | |
101 | 117 | #if defined(MRB_NAN_BOXING) |
102 | 118 | #include "boxing_nan.h" |
103 | 119 | #elif defined(MRB_WORD_BOXING) |