Sha256: 0bf6bed818a63037c7980caaab8518a162b3e4ac62ca1440bff5f0c4aeb2725f

Contents?: true

Size: 490 Bytes

Versions: 23

Compression:

Stored size: 490 Bytes

Contents

#ifndef JOHNSON_SPIDERMONKEY_JS_LAND_PROXY_H
#define JOHNSON_SPIDERMONKEY_JS_LAND_PROXY_H

#include "spidermonkey.h"
#include "runtime.h"

bool js_value_is_proxy(JohnsonRuntime* runtime, jsval maybe_proxy);
VALUE unwrap_js_land_proxy(JohnsonRuntime* runtime, jsval proxy);
JSBool make_js_land_proxy(JohnsonRuntime* runtime, VALUE value, jsval* retval);

#include "node.h"
typedef struct {
  VALUE klass, rklass;
  VALUE recv;
  ID id, oid;
  int safe_level;
  NODE *body;
} METHOD;

#endif

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
johnson-1.1.1 ext/spidermonkey/js_land_proxy.h
johnson-1.1.2 ext/spidermonkey/js_land_proxy.h
johnson-1.1.0 ext/spidermonkey/js_land_proxy.h