mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
15 lines
258 B
C++
15 lines
258 B
C++
//mode -*- c++ -*-
|
|
#ifndef NAME_H
|
|
#define NAME_H
|
|
|
|
namespace rr {
|
|
class Name : public Ref<v8::Name> {
|
|
public:
|
|
static void Init();
|
|
static VALUE GetIdentityHash(VALUE self);
|
|
|
|
Name(VALUE self) : Ref<v8::Name>(self) {}
|
|
};
|
|
}
|
|
|
|
#endif /* NAME_H */
|