diff options
author | portix <none@none> | 2012-04-18 12:42:49 +0200 |
---|---|---|
committer | portix <none@none> | 2012-04-18 12:42:49 +0200 |
commit | fdc89e8328b2386259ac53f619f497655b87783c (patch) | |
tree | 0b4f099cd4ac51686de14465131a2c9beed6c5c6 /src/scripts.c | |
parent | e9bb365b9be5f67d20c899af4e5a084daaad9670 (diff) | |
download | dwb-fdc89e8328b2386259ac53f619f497655b87783c.zip |
Return id from connect
--HG--
branch : scripts
Diffstat (limited to 'src/scripts.c')
-rw-r--r-- | src/scripts.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/scripts.c b/src/scripts.c index 78b97170..280e1ca0 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -61,6 +61,40 @@ static JSObjectRef _signals; static JSClassRef _viewClass; static GString *_script; +#if 0 +gboolean +scripts_print_exception(JSContextRef ctx, JSValueRef exception) { + gboolean ret = false; + char *message = NULL; + if (!JSValueIsObject(ctx, exception)) + return false; + JSObjectRef o = JSValueToObject(ctx, exception, NULL); + if (o == NULL) + return false; + + double line = js_get_double_property(ctx, o, "line"); + if (line == NAN) + return false; + message = js_get_string_property(ctx, o, "message"); + if (message == NULL) + goto error_out; + fprintf(stderr, "EXCEPTION in line %d: %s\n", (int)line, message); + ret = true; +error_out: + g_free(message); + return ret; +} +void +scripts_exception(JSContextRef ctx, JSValueRef *exception, const gchar *format, ...) { + va_list arg_list; + + va_start(arg_list, format); + gchar message[JS_STRING_MAX]; + vsnprintf(message, JS_STRING_MAX, format, arg_list); + va_end(arg_list); + *exception = js_char_to_value(ctx, message); +} +#endif JSClassRef scripts_create_class(const char *name, JSStaticFunction staticFunctions[], JSStaticValue staticValues[]) { JSClassDefinition cd = kJSClassDefinitionEmpty; |