Sha256: 33c9af7fc0f8877cb25818ee2b3ec97326cb7ccfe61277492e1e899af7ee52a5
Contents?: true
Size: 415 Bytes
Versions: 22
Compression:
Stored size: 415 Bytes
Contents
#ifndef JOHNSON_SPIDERMONKEY_CONTEXT_H #define JOHNSON_SPIDERMONKEY_CONTEXT_H #include "spidermonkey.h" #define MAX_EXCEPTION_MESSAGE_SIZE 2048L typedef struct { JSContext *js; jsval ex; // an exception value char msg[MAX_EXCEPTION_MESSAGE_SIZE]; // the 'backup' message } JohnsonContext; void init_Johnson_SpiderMonkey_Context(VALUE spidermonkey); VALUE Johnson_SpiderMonkey_JSLandProxy(); #endif
Version data entries
22 entries across 22 versions & 3 rubygems