#include "gin/interceptor.h"
#include <stdint.h>
#include <map>
namespace gin {
v8::Local<v8::Value> NamedPropertyInterceptor::GetNamedProperty(
v8::Isolate* isolate,
const std::string& property) {
return v8::Local<v8::Value>();
}
bool NamedPropertyInterceptor::SetNamedProperty(v8::Isolate* isolate,
const std::string& property,
v8::Local<v8::Value> value) {
return false;
}
std::vector<std::string> NamedPropertyInterceptor::EnumerateNamedProperties(
v8::Isolate* isolate) {
return std::vector<std::string>();
}
}