Home | History | Annotate | Download | only in cctest

Lines Matching refs:v8

1 // Copyright 2014 the V8 project authors. All rights reserved.
31 #include "src/v8.h"
33 namespace v8 {
36 class PrintExtension : public v8::Extension {
38 PrintExtension() : v8::Extension("v8/print", "native function print();") { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8::String> name);
42 static void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
45 } } // namespace v8::internal