mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
398 B
14 lines
398 B
#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 */
|
|
|