Handle<Value> DocumentCopyingContextDriver::New(const Arguments& args)
{
    HandleScope scope;
    
    DocumentCopyingContextDriver* copyingContext = new DocumentCopyingContextDriver();
    copyingContext->Wrap(args.This());
    
    return args.This();
}
METHOD_RETURN_TYPE DocumentCopyingContextDriver::New(const ARGS_TYPE& args)
{
	CREATE_ISOLATE_CONTEXT;
	CREATE_ESCAPABLE_SCOPE;

    DocumentCopyingContextDriver* copyingContext = new DocumentCopyingContextDriver();
    copyingContext->Wrap(args.This());
    
	SET_FUNCTION_RETURN_VALUE(args.This());
}