forked from cerc-io/plugeth
5258785c81
* 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
15 lines
398 B
C
Executable File
15 lines
398 B
C
Executable File
#if !defined(DUK_CONSOLE_H_INCLUDED)
|
|
#define DUK_CONSOLE_H_INCLUDED
|
|
|
|
#include "duktape.h"
|
|
|
|
/* Use a proxy wrapper to make undefined methods (console.foo()) no-ops. */
|
|
#define DUK_CONSOLE_PROXY_WRAPPER (1 << 0)
|
|
|
|
/* Flush output after every call. */
|
|
#define DUK_CONSOLE_FLUSH (1 << 1)
|
|
|
|
extern void duk_console_init(duk_context *ctx, duk_uint_t flags);
|
|
|
|
#endif /* DUK_CONSOLE_H_INCLUDED */
|