Lines Matching refs:v8
1 // Copyright 2010 the V8 project authors. All rights reserved.
30 namespace v8 {
36 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction(
37 v8::Handle<v8::String> str) {
38 return v8::FunctionTemplate::New(GCExtension::GC);
42 v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) {
44 return v8::Undefined();
51 static v8::DeclareExtension gc_extension_declaration(gc_extension);
54 } } // namespace v8::internal