예제 #1
0
 Handle<v8::Value> PHINode::New(const Arguments& args)
 {
   HandleScope scope;
   PHINode* phi = new PHINode();
   phi->Wrap(args.This());
   return args.This();
 }