Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
3046cc7b
Commit
3046cc7b
authored
Jan 08, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:mruby/mruby
parents
c150f115
2040347d
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
79 additions
and
64 deletions
+79
-64
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
+5
-9
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
+3
-5
mrbgems/mruby-hash-ext/src/hash-ext.c
mrbgems/mruby-hash-ext/src/hash-ext.c
+0
-3
mrbgems/mruby-numeric-ext/src/numeric_ext.c
mrbgems/mruby-numeric-ext/src/numeric_ext.c
+0
-1
mrbgems/mruby-random/src/mt19937ar.c
mrbgems/mruby-random/src/mt19937ar.c
+0
-1
mrbgems/mruby-string-ext/src/string.c
mrbgems/mruby-string-ext/src/string.c
+2
-2
mrbgems/mruby-string-utf8/src/string.c
mrbgems/mruby-string-utf8/src/string.c
+34
-0
mrbgems/mruby-string-utf8/test/string.rb
mrbgems/mruby-string-utf8/test/string.rb
+16
-0
mrbgems/mruby-struct/src/struct.c
mrbgems/mruby-struct/src/struct.c
+0
-1
mrblib/init_mrblib.c
mrblib/init_mrblib.c
+0
-3
src/array.c
src/array.c
+0
-1
src/backtrace.c
src/backtrace.c
+1
-1
src/class.c
src/class.c
+2
-2
src/dump.c
src/dump.c
+1
-2
src/error.c
src/error.c
+0
-2
src/etc.c
src/etc.c
+0
-2
src/gc.c
src/gc.c
+0
-1
src/object.c
src/object.c
+0
-2
src/state.c
src/state.c
+0
-1
src/string.c
src/string.c
+0
-10
src/symbol.c
src/symbol.c
+0
-1
src/variable.c
src/variable.c
+1
-3
src/vm.c
src/vm.c
+0
-2
tasks/mrbgem_spec.rake
tasks/mrbgem_spec.rake
+13
-5
tasks/mrbgems_test.rake
tasks/mrbgems_test.rake
+1
-1
test/init_mrbtest.c
test/init_mrbtest.c
+0
-3
No files found.
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
View file @
3046cc7b
...
@@ -8,21 +8,17 @@
...
@@ -8,21 +8,17 @@
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include "mruby.h"
#include <mruby.h>
#include "mruby/array.h"
#include "mruby/array.h"
#include <mruby/proc.h>
#include "mruby/proc.h"
#include <mruby/data.h>
#include "mruby/compile.h"
#include <mruby/compile.h>
#include "mruby/string.h"
#ifdef ENABLE_READLINE
#ifdef ENABLE_READLINE
#include <limits.h>
#include <limits.h>
#include <readline/readline.h>
#include <readline/readline.h>
#include <readline/history.h>
#include <readline/history.h>
#endif
#include <mruby/string.h>
#ifdef ENABLE_READLINE
static
const
char
*
history_file_name
=
".mirb_history"
;
static
const
char
*
history_file_name
=
".mirb_history"
;
char
history_path
[
PATH_MAX
];
char
history_path
[
PATH_MAX
];
#endif
#endif
...
...
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
View file @
3046cc7b
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/proc.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/string.h"
#include "mruby/compile.h"
#include "mruby/compile.h"
#include "mruby/dump.h"
#include "mruby/dump.h"
#include "mruby/variable.h"
#include "mruby/variable.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef ENABLE_STDIO
#ifndef ENABLE_STDIO
static
void
static
void
...
...
mrbgems/mruby-hash-ext/src/hash-ext.c
View file @
3046cc7b
...
@@ -6,11 +6,8 @@
...
@@ -6,11 +6,8 @@
#include "mruby.h"
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/hash.h"
#include "mruby/hash.h"
#include "mruby/khash.h"
#include "mruby/khash.h"
#include "mruby/string.h"
#include "mruby/variable.h"
/*
/*
* call-seq:
* call-seq:
...
...
mrbgems/mruby-numeric-ext/src/numeric_ext.c
View file @
3046cc7b
#include <limits.h>
#include <limits.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/numeric.h"
static
mrb_value
static
mrb_value
mrb_int_chr
(
mrb_state
*
mrb
,
mrb_value
x
)
mrb_int_chr
(
mrb_state
*
mrb
,
mrb_value
x
)
...
...
mrbgems/mruby-random/src/mt19937ar.c
View file @
3046cc7b
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <stdio.h>
#include "mt19937ar.h"
#include "mt19937ar.h"
/* Period parameters */
/* Period parameters */
...
...
mrbgems/mruby-string-ext/src/string.c
View file @
3046cc7b
#include "mruby.h"
#include "mruby/string.h"
#include <ctype.h>
#include <ctype.h>
#include <string.h>
#include <string.h>
#include "mruby.h"
#include "mruby/string.h"
static
mrb_value
static
mrb_value
mrb_str_getbyte
(
mrb_state
*
mrb
,
mrb_value
str
)
mrb_str_getbyte
(
mrb_state
*
mrb
,
mrb_value
str
)
...
...
mrbgems/mruby-string-utf8/src/string.c
View file @
3046cc7b
...
@@ -247,6 +247,38 @@ mrb_str_aref_m(mrb_state *mrb, mrb_value str)
...
@@ -247,6 +247,38 @@ mrb_str_aref_m(mrb_state *mrb, mrb_value str)
return
mrb_str_aref
(
mrb
,
str
,
a1
);
return
mrb_str_aref
(
mrb
,
str
,
a1
);
}
}
static
mrb_value
mrb_str_reverse_bang
(
mrb_state
*
mrb
,
mrb_value
str
)
{
int
utf8_len
=
mrb_utf8_strlen
(
str
);
if
(
utf8_len
>
1
)
{
int
len
=
RSTRING_LEN
(
str
);
char
*
buf
=
(
char
*
)
mrb_malloc
(
mrb
,
len
);
unsigned
char
*
p
=
(
unsigned
char
*
)
buf
;
unsigned
char
*
e
=
(
unsigned
char
*
)
buf
+
len
;
unsigned
char
*
r
=
(
unsigned
char
*
)
RSTRING_END
(
str
);
memcpy
(
buf
,
RSTRING_PTR
(
str
),
len
);
mrb_str_modify
(
mrb
,
mrb_str_ptr
(
str
));
while
(
p
<
e
)
{
int
clen
=
utf8len
(
p
);
r
-=
clen
;
memcpy
(
r
,
p
,
clen
);
p
+=
clen
;
}
mrb_free
(
mrb
,
buf
);
}
return
str
;
}
static
mrb_value
mrb_str_reverse
(
mrb_state
*
mrb
,
mrb_value
str
)
{
return
mrb_str_reverse_bang
(
mrb
,
mrb_str_dup
(
mrb
,
str
));
}
void
void
mrb_mruby_string_utf8_gem_init
(
mrb_state
*
mrb
)
mrb_mruby_string_utf8_gem_init
(
mrb_state
*
mrb
)
{
{
...
@@ -255,6 +287,8 @@ mrb_mruby_string_utf8_gem_init(mrb_state* mrb)
...
@@ -255,6 +287,8 @@ mrb_mruby_string_utf8_gem_init(mrb_state* mrb)
mrb_define_method
(
mrb
,
s
,
"size"
,
mrb_str_size
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
s
,
"size"
,
mrb_str_size
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
s
,
"[]"
,
mrb_str_aref_m
,
MRB_ARGS_ANY
());
mrb_define_method
(
mrb
,
s
,
"[]"
,
mrb_str_aref_m
,
MRB_ARGS_ANY
());
mrb_define_method
(
mrb
,
s
,
"slice"
,
mrb_str_aref_m
,
MRB_ARGS_ANY
());
mrb_define_method
(
mrb
,
s
,
"slice"
,
mrb_str_aref_m
,
MRB_ARGS_ANY
());
mrb_define_method
(
mrb
,
s
,
"reverse"
,
mrb_str_reverse
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
s
,
"reverse!"
,
mrb_str_reverse_bang
,
MRB_ARGS_NONE
());
}
}
void
void
...
...
mrbgems/mruby-string-utf8/test/string.rb
View file @
3046cc7b
...
@@ -9,3 +9,19 @@ assert('String#[]') do
...
@@ -9,3 +9,19 @@ assert('String#[]') do
assert_equal
"んに"
,
"こんにちわ世界"
[
1
,
2
]
assert_equal
"んに"
,
"こんにちわ世界"
[
1
,
2
]
assert_equal
"世"
,
"こんにちわ世界"
[
"世"
]
assert_equal
"世"
,
"こんにちわ世界"
[
"世"
]
end
end
assert
(
'String#reverse'
,
'15.2.10.5.29'
)
do
a
=
'こんにちわ世界!'
a
.
reverse
assert_equal
'こんにちわ世界!'
,
a
assert_equal
'!界世わちにんこ'
,
'こんにちわ世界!'
.
reverse
end
assert
(
'String#reverse!'
,
'15.2.10.5.30'
)
do
a
=
'こんにちわ世界!'
a
.
reverse!
assert_equal
'!界世わちにんこ'
,
a
assert_equal
'!界世わちにんこ'
,
'こんにちわ世界!'
.
reverse!
end
mrbgems/mruby-struct/src/struct.c
View file @
3046cc7b
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/string.h"
#include "mruby/string.h"
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/data.h"
#include "mruby/variable.h"
#include "mruby/variable.h"
#define RSTRUCT_ARY(st) mrb_ary_ptr(st)
#define RSTRUCT_ARY(st) mrb_ary_ptr(st)
...
...
mrblib/init_mrblib.c
View file @
3046cc7b
#include "mruby.h"
#include "mruby.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/dump.h"
#include "mruby/string.h"
#include "mruby/proc.h"
extern
const
uint8_t
mrblib_irep
[];
extern
const
uint8_t
mrblib_irep
[];
...
...
src/array.c
View file @
3046cc7b
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <limits.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/class.h"
...
...
src/backtrace.c
View file @
3046cc7b
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <stdarg.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/variable.h"
#include "mruby/variable.h"
#include "mruby/proc.h"
#include "mruby/proc.h"
...
@@ -11,7 +12,6 @@
...
@@ -11,7 +12,6 @@
#include "mruby/string.h"
#include "mruby/string.h"
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/debug.h"
#include "mruby/debug.h"
#include <stdarg.h>
typedef
void
(
*
output_stream_func
)(
mrb_state
*
,
void
*
,
int
,
const
char
*
,
...);
typedef
void
(
*
output_stream_func
)(
mrb_state
*
,
void
*
,
int
,
const
char
*
,
...);
...
...
src/class.c
View file @
3046cc7b
...
@@ -4,9 +4,9 @@
...
@@ -4,9 +4,9 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include "mruby.h"
#include <stdarg.h>
#include <ctype.h>
#include <ctype.h>
#include <stdarg.h>
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/numeric.h"
#include "mruby/numeric.h"
...
...
src/dump.c
View file @
3046cc7b
...
@@ -4,10 +4,9 @@
...
@@ -4,10 +4,9 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <ctype.h>
#include <string.h>
#include <string.h>
#include "mruby/dump.h"
#include "mruby/dump.h"
#include <ctype.h>
#include "mruby/string.h"
#include "mruby/string.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/numeric.h"
#include "mruby/numeric.h"
...
...
src/error.c
View file @
3046cc7b
...
@@ -7,10 +7,8 @@
...
@@ -7,10 +7,8 @@
#include <errno.h>
#include <errno.h>
#include <stdarg.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/proc.h"
#include "mruby/proc.h"
#include "mruby/string.h"
#include "mruby/string.h"
...
...
src/etc.c
View file @
3046cc7b
...
@@ -6,8 +6,6 @@
...
@@ -6,8 +6,6 @@
#include "mruby.h"
#include "mruby.h"
#include "mruby/string.h"
#include "mruby/string.h"
#include "error.h"
#include "mruby/numeric.h"
#include "mruby/data.h"
#include "mruby/data.h"
#include "mruby/class.h"
#include "mruby/class.h"
...
...
src/gc.c
View file @
3046cc7b
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <limits.h>
#include <string.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
#include "mruby.h"
#include "mruby.h"
...
...
src/object.c
View file @
3046cc7b
...
@@ -5,11 +5,9 @@
...
@@ -5,11 +5,9 @@
*/
*/
#include "mruby.h"
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/numeric.h"
#include "mruby/numeric.h"
#include "mruby/string.h"
#include "mruby/string.h"
#include "error.h"
mrb_bool
mrb_bool
mrb_obj_eq
(
mrb_state
*
mrb
,
mrb_value
v1
,
mrb_value
v2
)
mrb_obj_eq
(
mrb_state
*
mrb
,
mrb_value
v1
,
mrb_value
v2
)
...
...
src/state.c
View file @
3046cc7b
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/class.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/variable.h"
#include "mruby/variable.h"
#include "mruby/debug.h"
#include "mruby/debug.h"
...
...
src/string.c
View file @
3046cc7b
...
@@ -107,16 +107,6 @@ mrb_str_resize(mrb_state *mrb, mrb_value str, mrb_int len)
...
@@ -107,16 +107,6 @@ mrb_str_resize(mrb_state *mrb, mrb_value str, mrb_int len)
return
str
;
return
str
;
}
}
static
inline
void
str_mod_check
(
mrb_state
*
mrb
,
mrb_value
str
,
char
*
p
,
mrb_int
len
)
{
struct
RString
*
s
=
mrb_str_ptr
(
str
);
if
(
s
->
ptr
!=
p
||
s
->
len
!=
len
)
{
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"string modified"
);
}
}
#define mrb_obj_alloc_string(mrb) ((struct RString*)mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class))
#define mrb_obj_alloc_string(mrb) ((struct RString*)mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class))
/* char offset to byte offset */
/* char offset to byte offset */
...
...
src/symbol.c
View file @
3046cc7b
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
*/
*/
#include <ctype.h>
#include <ctype.h>
#include <limits.h>
#include <string.h>
#include <string.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/khash.h"
#include "mruby/khash.h"
...
...
src/variable.c
View file @
3046cc7b
...
@@ -4,14 +4,12 @@
...
@@ -4,14 +4,12 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <ctype.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/array.h"
#include "mruby/array.h"
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/proc.h"
#include "mruby/proc.h"
#include "mruby/string.h"
#include "mruby/string.h"
#include "mruby/variable.h"
#include "error.h"
#include <ctype.h>
typedef
int
(
iv_foreach_func
)(
mrb_state
*
,
mrb_sym
,
mrb_value
,
void
*
);
typedef
int
(
iv_foreach_func
)(
mrb_state
*
,
mrb_sym
,
mrb_value
,
void
*
);
...
...
src/vm.c
View file @
3046cc7b
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
** See Copyright Notice in mruby.h
** See Copyright Notice in mruby.h
*/
*/
#include <string.h>
#include <setjmp.h>
#include <setjmp.h>
#include <stddef.h>
#include <stddef.h>
#include <stdarg.h>
#include <stdarg.h>
...
@@ -13,7 +12,6 @@
...
@@ -13,7 +12,6 @@
#include "mruby/class.h"
#include "mruby/class.h"
#include "mruby/hash.h"
#include "mruby/hash.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/numeric.h"
#include "mruby/proc.h"
#include "mruby/proc.h"
#include "mruby/range.h"
#include "mruby/range.h"
#include "mruby/string.h"
#include "mruby/string.h"
...
...
tasks/mrbgem_spec.rake
View file @
3046cc7b
...
@@ -149,7 +149,7 @@ module MRuby
...
@@ -149,7 +149,7 @@ module MRuby
end
end
end
# generate_gem_init
end
# generate_gem_init
def
print_gem_
init_header
(
f
)
def
print_gem_
comment
(
f
)
f
.
puts
%Q[/*]
f
.
puts
%Q[/*]
f
.
puts
%Q[ * This file is loading the irep]
f
.
puts
%Q[ * This file is loading the irep]
f
.
puts
%Q[ * Ruby GEM code.]
f
.
puts
%Q[ * Ruby GEM code.]
...
@@ -158,15 +158,23 @@ module MRuby
...
@@ -158,15 +158,23 @@ module MRuby
f
.
puts
%Q[ * This file was generated!]
f
.
puts
%Q[ * This file was generated!]
f
.
puts
%Q[ * All manual changes will get lost.]
f
.
puts
%Q[ * All manual changes will get lost.]
f
.
puts
%Q[ */]
f
.
puts
%Q[ */]
end
def
print_gem_init_header
(
f
)
print_gem_comment
(
f
)
f
.
puts
%Q[#include <stdlib.h>]
unless
rbfiles
.
empty?
f
.
puts
%Q[#include "mruby.h"]
f
.
puts
%Q[#include "mruby/irep.h"]
unless
rbfiles
.
empty?
end
def
print_gem_test_header
(
f
)
print_gem_comment
(
f
)
f
.
puts
%Q[#include <stdlib.h>]
f
.
puts
%Q[#include <stdlib.h>]
f
.
puts
%Q[#include "mruby.h"]
f
.
puts
%Q[#include "mruby.h"]
f
.
puts
%Q[#include "mruby/array.h"]
f
.
puts
%Q[#include "mruby/irep.h"]
f
.
puts
%Q[#include "mruby/irep.h"]
f
.
puts
%Q[#include "mruby/dump.h"]
f
.
puts
%Q[#include "mruby/string.h"]
f
.
puts
%Q[#include "mruby/string.h"]
f
.
puts
%Q[#include "mruby/proc.h"]
f
.
puts
%Q[#include "mruby/variable.h"]
f
.
puts
%Q[#include "mruby/variable.h"]
f
.
puts
%Q[#include "mruby/array.h"]
f
.
puts
%Q[#include "mruby/hash.h"]
end
end
def
version_ok?
(
req_versions
)
def
version_ok?
(
req_versions
)
...
...
tasks/mrbgems_test.rake
View file @
3046cc7b
...
@@ -5,7 +5,7 @@ MRuby.each_target do
...
@@ -5,7 +5,7 @@ MRuby.each_target do
file
test_rbobj
=>
g
.
test_rbireps
file
test_rbobj
=>
g
.
test_rbireps
file
g
.
test_rbireps
=>
[
g
.
test_rbfiles
].
flatten
+
[
g
.
build
.
mrbcfile
]
do
|
t
|
file
g
.
test_rbireps
=>
[
g
.
test_rbfiles
].
flatten
+
[
g
.
build
.
mrbcfile
]
do
|
t
|
open
(
t
.
name
,
'w'
)
do
|
f
|
open
(
t
.
name
,
'w'
)
do
|
f
|
g
.
print_gem_
ini
t_header
(
f
)
g
.
print_gem_
tes
t_header
(
f
)
test_preload
=
[
g
.
dir
,
MRUBY_ROOT
].
map
{
|
dir
|
test_preload
=
[
g
.
dir
,
MRUBY_ROOT
].
map
{
|
dir
|
File
.
expand_path
(
g
.
test_preload
,
dir
)
File
.
expand_path
(
g
.
test_preload
,
dir
)
}.
find
{
|
file
|
File
.
exist?
(
file
)
}
}.
find
{
|
file
|
File
.
exist?
(
file
)
}
...
...
test/init_mrbtest.c
View file @
3046cc7b
#include <stdlib.h>
#include <stdlib.h>
#include "mruby.h"
#include "mruby.h"
#include "mruby/irep.h"
#include "mruby/irep.h"
#include "mruby/dump.h"
#include "mruby/string.h"
#include "mruby/proc.h"
extern
const
uint8_t
mrbtest_irep
[];
extern
const
uint8_t
mrbtest_irep
[];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment