aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/vm_method.c b/vm_method.c
index becce27c1c..aa5db73643 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -565,19 +565,19 @@ rb_method_boundp(VALUE klass, ID id, int ex)
{
rb_method_entry_t *me = rb_method_entry(klass, id);
- if (me != 0) {
- if ((ex & NOEX_RESPONDS) && (me->flag & NOEX_PROTECTED) ||
- (ex & ~NOEX_RESPONDS) && (me->flag & NOEX_PRIVATE)) {
- return 0;
- }
- if (!me->def) return 0;
- if (me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
- if (ex & NOEX_RESPONDS) return 2;
- return 0;
+ if (!me) return 0;
+ if (ex & ~NOEX_RESPONDS) { /* pub */
+ if (me->flag & NOEX_PRIVATE) return 0;
+ if (ex & NOEX_RESPONDS) {
+ if (me->flag & NOEX_PROTECTED) return 0;
}
- return 1;
}
- return 0;
+ if (!me->def) return 0;
+ if (me->def->type == VM_METHOD_TYPE_NOTIMPLEMENTED) {
+ if (ex & NOEX_RESPONDS) return 2;
+ return 0;
+ }
+ return 1;
}
void