diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-12-10 20:54:01 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-12-13 20:47:07 +0900 |
commit | f3b1b645edfc5a8c938da74a5ed44564b9e2fc08 (patch) | |
tree | 179e4a63909d91df39894e98728baf92cc1d8765 /eval_intern.h | |
parent | 0b5268afbcf11c299e11102c366e836ae55cc39f (diff) |
Create backtrace location array directly
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2739
Diffstat (limited to 'eval_intern.h')
-rw-r--r-- | eval_intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eval_intern.h b/eval_intern.h index 1ab049d327..aa07ce30ed 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -287,6 +287,7 @@ VALUE rb_vm_cbase(void); /* vm_backtrace.c */ VALUE rb_ec_backtrace_object(const rb_execution_context_t *ec); VALUE rb_ec_backtrace_str_ary(const rb_execution_context_t *ec, long lev, long n); +VALUE rb_ec_backtrace_location_ary(const rb_execution_context_t *ec, long lev, long n); #ifndef CharNext /* defined as CharNext[AW] on Windows. */ # ifdef HAVE_MBLEN |