Sha256: d24968ff41bc000a89e1c08189f59a39cf55a0909252eff9148eedc6c4d92c0a

Contents?: true

Size: 680 Bytes

Versions: 74

Compression:

Stored size: 680 Bytes

Contents

#ifndef _RR_V8_WEAKREF_
#define _RR_V8_WEAKREF_ 

#include <v8.h>
#include "ruby.h"
#include "rr.h"

struct v8_weakref  {
  v8_weakref(VALUE object);
  VALUE get();
  void set(VALUE object);
  void retain();
  void release();

  VALUE object_id;
  bool v8_active;
  bool rb_active;
  v8::Persistent<v8::External> external;
};

void  v8_weakref_dispose(v8::Persistent<v8::Value> value, void* weakref);
VALUE v8_weakref_finalize(VALUE self, VALUE object_id);
VALUE v8_weakref_objectspace();
VALUE v8_weakref_nil(VALUE nil, VALUE exception);
VALUE v8_weakref_id2ref(VALUE id);

// extern "C" VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE);

#endif

Version data entries

74 entries across 74 versions & 5 rubygems

Version Path
therubyracer-0.9.6 ext/v8/v8_weakref.h
therubyracer-0.9.5 ext/v8/v8_weakref.h
therubyracer-0.9.4 ext/v8/v8_weakref.h
therubyracer-0.9.3 ext/v8/v8_weakref.h
therubyracer-0.9.3beta1 ext/v8/v8_weakref.h
therubyracer-0.9.2 ext/v8/v8_weakref.h
therubyracer-0.9.2beta1 ext/v8/v8_weakref.h
therubyracer-0.9.1 ext/v8/v8_weakref.h
therubyracer-0.9.1beta1 ext/v8/v8_weakref.h
therubyracer-0.9.0 ext/v8/v8_weakref.h
therubyracer-0.9.0beta7 ext/v8/v8_weakref.h
therubyracer-0.9.0beta6 ext/v8/v8_weakref.h
therubyracer-0.9.0beta5 ext/v8/v8_weakref.h
therubyracer-0.9.0beta4 ext/v8/v8_weakref.h