From 5258785c81959109138ebeca613f12c277188abc Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Thu, 21 Dec 2017 13:56:11 +0200 Subject: cmd, core, eth/tracers: support fancier js tracing (#15516) * cmd, core, eth/tracers: support fancier js tracing * eth, internal/web3ext: rework trace API, concurrency, chain tracing * eth/tracers: add three more JavaScript tracers * eth/tracers, vendor: swap ottovm to duktape for tracing * core, eth, internal: finalize call tracer and needed extras * eth, tests: prestate tracer, call test suite, rewinding * vendor: fix windows builds for tracer js engine * vendor: temporary duktape fix * eth/tracers: fix up 4byte and evmdis tracer * vendor: pull in latest duktape with my upstream fixes * eth: fix some review comments * eth: rename rewind to reexec to make it more obvious * core/vm: terminate tracing using defers --- vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h (limited to 'vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h') diff --git a/vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h b/vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h new file mode 100755 index 000000000..fe0407368 --- /dev/null +++ b/vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h @@ -0,0 +1,10 @@ +#if !defined(DUK_PRINT_ALERT_H_INCLUDED) +#define DUK_PRINT_ALERT_H_INCLUDED + +#include "duktape.h" + +/* No flags at the moment. */ + +extern void duk_print_alert_init(duk_context *ctx, duk_uint_t flags); + +#endif /* DUK_PRINT_ALERT_H_INCLUDED */ -- cgit