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
025b8f76
Commit
025b8f76
authored
Jun 05, 2014
by
cremno
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mruby-struct: implement `mrb_is_(local|const)_id`
parent
65a7eac1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
mrbgems/mruby-struct/src/struct.c
mrbgems/mruby-struct/src/struct.c
+10
-10
No files found.
mrbgems/mruby-struct/src/struct.c
View file @
025b8f76
...
...
@@ -4,6 +4,7 @@
** See Copyright Notice in mruby.h
*/
#include <ctype.h>
#include <string.h>
#include "mruby.h"
#include "mruby/array.h"
...
...
@@ -209,19 +210,18 @@ mrb_struct_set_m(mrb_state *mrb, mrb_value obj)
return
mrb_struct_set
(
mrb
,
obj
,
val
);
}
#define is_notop_id(id) (id)
/* ((id)>tLAST_TOKEN) */
#define is_local_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_LOCAL) */
static
mrb_bool
mrb_is_local_id
(
mrb_sym
id
)
mrb_is_local_id
(
mrb_s
tate
*
mrb
,
mrb_s
ym
id
)
{
return
!!
is_local_id
(
id
);
const
char
*
name
=
mrb_sym2name_len
(
mrb
,
id
,
NULL
);
return
!
ISUPPER
(
name
[
0
]);
}
#define is_const_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_CONST) */
static
mrb_bool
mrb_is_const_id
(
mrb_sym
id
)
mrb_is_const_id
(
mrb_s
tate
*
mrb
,
mrb_s
ym
id
)
{
return
!!
is_const_id
(
id
);
const
char
*
name
=
mrb_sym2name_len
(
mrb
,
id
,
NULL
);
return
ISUPPER
(
name
[
0
]);
}
static
mrb_value
...
...
@@ -240,7 +240,7 @@ make_struct(mrb_state *mrb, mrb_value name, mrb_value members, struct RClass * k
/* old style: should we warn? */
name
=
mrb_str_to_str
(
mrb
,
name
);
id
=
mrb_obj_to_sym
(
mrb
,
name
);
if
(
!
mrb_is_const_id
(
id
))
{
if
(
!
mrb_is_const_id
(
mrb
,
id
))
{
mrb_name_error
(
mrb
,
id
,
"identifier %S needs to be constant"
,
name
);
}
if
(
mrb_const_defined_at
(
mrb
,
klass
,
id
))
{
...
...
@@ -262,7 +262,7 @@ make_struct(mrb_state *mrb, mrb_value name, mrb_value members, struct RClass * k
ai
=
mrb_gc_arena_save
(
mrb
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
mrb_sym
id
=
mrb_symbol
(
ptr_members
[
i
]);
if
(
mrb_is_local_id
(
id
)
||
mrb_is_const_id
(
id
))
{
if
(
mrb_is_local_id
(
mrb
,
id
)
||
mrb_is_const_id
(
mrb
,
id
))
{
if
(
i
<
N_REF_FUNC
)
{
mrb_define_method_id
(
mrb
,
c
,
id
,
ref_func
[
i
],
MRB_ARGS_NONE
());
}
...
...
@@ -438,7 +438,7 @@ inspect_struct(mrb_state *mrb, mrb_value s, mrb_bool recur)
}
slot
=
ptr_members
[
i
];
id
=
mrb_symbol
(
slot
);
if
(
mrb_is_local_id
(
id
)
||
mrb_is_const_id
(
id
))
{
if
(
mrb_is_local_id
(
mrb
,
id
)
||
mrb_is_const_id
(
mrb
,
id
))
{
const
char
*
name
;
mrb_int
len
;
...
...
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