aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/node.h')
-rw-r--r--include/ruby/node.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ruby/node.h b/include/ruby/node.h
index b72a3e9f3c..5272b0e685 100644
--- a/include/ruby/node.h
+++ b/include/ruby/node.h
@@ -475,6 +475,11 @@ typedef struct RNode {
#define NOEX_WITH(n, s) ((s << 8) | n)
#define NOEX_WITH_SAFE(n) NOEX_WITH(n, rb_safe_level())
+#define CALL_PUBLIC 0
+#define CALL_FCALL 1
+#define CALL_VCALL 2
+#define CALL_SUPER 3
+
VALUE rb_parser_new(void);
VALUE rb_parser_end_seen_p(VALUE);
VALUE rb_parser_encoding(VALUE);