2020-04-10 01:11:40 -04:00
|
|
|
#ifndef INTERNAL_PROC_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define INTERNAL_PROC_H
|
|
|
|
/**
|
2020-04-08 00:28:13 -04:00
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
2019-11-29 01:18:34 -05:00
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
2020-04-08 00:28:13 -04:00
|
|
|
* @brief Internal header for Proc.
|
2019-11-29 01:18:34 -05:00
|
|
|
*/
|
2019-12-03 22:10:06 -05:00
|
|
|
#include "ruby/ruby.h" /* for rb_block_call_func_t */
|
|
|
|
#include "ruby/st.h" /* for st_index_t */
|
|
|
|
struct rb_block; /* in vm_core.h */
|
|
|
|
struct rb_iseq_struct; /* in vm_core.h */
|
2019-11-29 01:18:34 -05:00
|
|
|
|
|
|
|
/* proc.c */
|
|
|
|
VALUE rb_proc_location(VALUE self);
|
|
|
|
st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
|
2020-03-16 10:03:22 -04:00
|
|
|
int rb_block_pair_yield_optimizable(void);
|
2019-11-29 01:18:34 -05:00
|
|
|
int rb_block_arity(void);
|
|
|
|
int rb_block_min_max_arity(int *max);
|
|
|
|
VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
|
2020-10-05 20:56:49 -04:00
|
|
|
VALUE rb_callable_receiver(VALUE);
|
2019-11-29 01:18:34 -05:00
|
|
|
|
2019-12-03 22:10:06 -05:00
|
|
|
MJIT_SYMBOL_EXPORT_BEGIN
|
|
|
|
VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
|
2020-02-21 10:32:43 -05:00
|
|
|
VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
|
2019-12-03 22:10:06 -05:00
|
|
|
VALUE rb_iseq_location(const struct rb_iseq_struct *iseq);
|
|
|
|
VALUE rb_sym_to_proc(VALUE sym);
|
|
|
|
MJIT_SYMBOL_EXPORT_END
|
|
|
|
|
2019-11-29 01:18:34 -05:00
|
|
|
#endif /* INTERNAL_PROC_H */
|