aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olebedev/go-duktape.v3/duk_console.h
blob: 1488a95fa616a6b0e7c54ee7c775fe9578bbc205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */