// -*- mode: c++ -*- #ifndef RR_NULL_H #define RR_NULL_H namespace rr { class Null : public Ref { public: Null(v8::Isolate* isolate, v8::Local undefined) : Ref(isolate, undefined) {} static inline void Init() { ClassBuilder("Null", Primitive::Class). store(&Class); } }; } #endif /* RR_NULL_H */