Home | History | Annotate | Download | only in extensions

Lines Matching refs:v8

1 // Copyright 2010 the V8 project authors. All rights reserved.
31 #include "v8.h"
33 namespace v8 {
36 class GCExtension : public v8::Extension {
38 GCExtension() : v8::Extension("v8/gc", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8::Handle<v8::Value> GC(const v8::Arguments& args);
47 } } // namespace v8::internal