jscript: Added Object.toString for host objects implementation.
[wine] / dlls / jscript / function.c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "jscript.h"
20 #include "engine.h"
21
22 #include "wine/debug.h"
23
24 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
25
26 typedef struct {
27     DispatchEx dispex;
28     builtin_invoke_t value_proc;
29     const WCHAR *name;
30     DWORD flags;
31     source_elements_t *source;
32     parameter_t *parameters;
33     scope_chain_t *scope_chain;
34     parser_ctx_t *parser;
35     const WCHAR *src_str;
36     DWORD src_len;
37     DWORD length;
38 } FunctionInstance;
39
40 static inline FunctionInstance *function_from_vdisp(vdisp_t *vdisp)
41 {
42     return (FunctionInstance*)vdisp->u.jsdisp;
43 }
44
45 static inline FunctionInstance *function_this(vdisp_t *jsthis)
46 {
47     return is_vclass(jsthis, JSCLASS_FUNCTION) ? function_from_vdisp(jsthis) : NULL;
48 }
49
50 static const WCHAR prototypeW[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
51
52 static const WCHAR lengthW[] = {'l','e','n','g','t','h',0};
53 static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
54 static const WCHAR applyW[] = {'a','p','p','l','y',0};
55 static const WCHAR callW[] = {'c','a','l','l',0};
56
57 static IDispatch *get_this(DISPPARAMS *dp)
58 {
59     DWORD i;
60
61     for(i=0; i < dp->cNamedArgs; i++) {
62         if(dp->rgdispidNamedArgs[i] == DISPID_THIS) {
63             if(V_VT(dp->rgvarg+i) == VT_DISPATCH)
64                 return V_DISPATCH(dp->rgvarg+i);
65
66             WARN("This is not VT_DISPATCH\n");
67             return NULL;
68         }
69     }
70
71     TRACE("no this passed\n");
72     return NULL;
73 }
74
75 static HRESULT init_parameters(DispatchEx *var_disp, FunctionInstance *function, DISPPARAMS *dp,
76         jsexcept_t *ei, IServiceProvider *caller)
77 {
78     parameter_t *param;
79     VARIANT var_empty;
80     DWORD cargs, i=0;
81     HRESULT hres;
82
83     V_VT(&var_empty) = VT_EMPTY;
84     cargs = arg_cnt(dp);
85
86     for(param = function->parameters; param; param = param->next) {
87         hres = jsdisp_propput_name(var_disp, param->identifier,
88                 i < cargs ? get_arg(dp,i) : &var_empty, ei, caller);
89         if(FAILED(hres))
90             return hres;
91
92         i++;
93     }
94
95     return S_OK;
96 }
97
98 static HRESULT Arguments_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
99         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
100 {
101     FIXME("\n");
102     return E_NOTIMPL;
103 }
104
105 static const builtin_info_t Arguments_info = {
106     JSCLASS_ARGUMENTS,
107     {NULL, Arguments_value, 0},
108     0, NULL,
109     NULL,
110     NULL
111 };
112
113 static HRESULT create_arguments(script_ctx_t *ctx, IDispatch *calee, DISPPARAMS *dp,
114         jsexcept_t *ei, IServiceProvider *caller, DispatchEx **ret)
115 {
116     DispatchEx *args;
117     VARIANT var;
118     DWORD i;
119     HRESULT hres;
120
121     static const WCHAR caleeW[] = {'c','a','l','l','e','e',0};
122
123     args = heap_alloc_zero(sizeof(DispatchEx));
124     if(!args)
125         return E_OUTOFMEMORY;
126
127     hres = init_dispex_from_constr(args, ctx, &Arguments_info, ctx->object_constr);
128     if(FAILED(hres)) {
129         heap_free(args);
130         return hres;
131     }
132
133     for(i=0; i < arg_cnt(dp); i++) {
134         hres = jsdisp_propput_idx(args, i, get_arg(dp,i), ei, caller);
135         if(FAILED(hres))
136             break;
137     }
138
139     if(SUCCEEDED(hres)) {
140         V_VT(&var) = VT_I4;
141         V_I4(&var) = arg_cnt(dp);
142         hres = jsdisp_propput_name(args, lengthW, &var, ei, caller);
143
144         if(SUCCEEDED(hres)) {
145             V_VT(&var) = VT_DISPATCH;
146             V_DISPATCH(&var) = calee;
147             hres = jsdisp_propput_name(args, caleeW, &var, ei, caller);
148         }
149     }
150
151     if(FAILED(hres)) {
152         jsdisp_release(args);
153         return hres;
154     }
155
156     *ret = args;
157     return S_OK;
158 }
159
160 static HRESULT create_var_disp(script_ctx_t *ctx, FunctionInstance *function, DISPPARAMS *dp, jsexcept_t *ei,
161                                IServiceProvider *caller, DispatchEx **ret)
162 {
163     DispatchEx *var_disp, *arg_disp;
164     HRESULT hres;
165
166     static const WCHAR argumentsW[] = {'a','r','g','u','m','e','n','t','s',0};
167
168     hres = create_dispex(ctx, NULL, NULL, &var_disp);
169     if(FAILED(hres))
170         return hres;
171
172     hres = create_arguments(ctx, (IDispatch*)_IDispatchEx_(&function->dispex),
173             dp, ei, caller, &arg_disp);
174     if(SUCCEEDED(hres)) {
175         VARIANT var;
176
177         V_VT(&var) = VT_DISPATCH;
178         V_DISPATCH(&var) = (IDispatch*)_IDispatchEx_(arg_disp);
179         hres = jsdisp_propput_name(var_disp, argumentsW, &var, ei, caller);
180         jsdisp_release(arg_disp);
181     }
182
183     if(SUCCEEDED(hres))
184         hres = init_parameters(var_disp, function, dp, ei, caller);
185     if(FAILED(hres)) {
186         jsdisp_release(var_disp);
187         return hres;
188     }
189
190     *ret = var_disp;
191     return S_OK;
192 }
193
194 static HRESULT invoke_source(script_ctx_t *ctx, FunctionInstance *function, IDispatch *this_obj, DISPPARAMS *dp,
195         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
196 {
197     DispatchEx *var_disp;
198     exec_ctx_t *exec_ctx;
199     scope_chain_t *scope;
200     HRESULT hres;
201
202     if(!function->source) {
203         FIXME("no source\n");
204         return E_FAIL;
205     }
206
207     hres = create_var_disp(ctx, function, dp, ei, caller, &var_disp);
208     if(FAILED(hres))
209         return hres;
210
211     hres = scope_push(function->scope_chain, var_disp, &scope);
212     if(SUCCEEDED(hres)) {
213         hres = create_exec_ctx(this_obj, var_disp, scope, &exec_ctx);
214         scope_release(scope);
215     }
216     if(FAILED(hres))
217         return hres;
218
219     hres = exec_source(exec_ctx, function->parser, function->source, ei, retv);
220     exec_release(exec_ctx);
221
222     return hres;
223 }
224
225 static HRESULT invoke_function(script_ctx_t *ctx, FunctionInstance *function, DISPPARAMS *dp,
226         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
227 {
228     IDispatch *this_obj;
229
230     if(!(this_obj = get_this(dp)))
231         this_obj = (IDispatch*)_IDispatchEx_(ctx->script_disp);
232
233     return invoke_source(ctx, function, this_obj, dp, retv, ei, caller);
234 }
235
236 static HRESULT invoke_constructor(script_ctx_t *ctx, FunctionInstance *function, DISPPARAMS *dp,
237         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
238 {
239     DispatchEx *this_obj;
240     HRESULT hres;
241
242     hres = create_object(ctx, &function->dispex, &this_obj);
243     if(FAILED(hres))
244         return hres;
245
246     hres = invoke_source(ctx, function, (IDispatch*)_IDispatchEx_(this_obj), dp, retv, ei, caller);
247     if(FAILED(hres)) {
248         jsdisp_release(this_obj);
249         return hres;
250     }
251
252     V_VT(retv) = VT_DISPATCH;
253     V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(this_obj);
254     return S_OK;
255 }
256
257 static HRESULT invoke_value_proc(script_ctx_t *ctx, FunctionInstance *function, WORD flags, DISPPARAMS *dp,
258         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
259 {
260     DispatchEx *this_obj = NULL;
261     IDispatch *this_disp;
262     vdisp_t vthis;
263     HRESULT hres;
264
265     this_disp = get_this(dp);
266     if(this_disp)
267         this_obj = iface_to_jsdisp((IUnknown*)this_disp);
268
269     set_jsdisp(&vthis, this_obj ? this_obj : ctx->script_disp);
270     hres = function->value_proc(ctx, &vthis, flags, dp, retv, ei, caller);
271     vdisp_release(&vthis);
272
273     if(this_obj)
274         jsdisp_release(this_obj);
275     return hres;
276 }
277
278 static HRESULT call_function(script_ctx_t *ctx, FunctionInstance *function, IDispatch *this_obj, DISPPARAMS *args,
279         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
280 {
281     HRESULT hres;
282
283     if(function->value_proc) {
284         vdisp_t vthis;
285
286         if(this_obj)
287             set_disp(&vthis, this_obj);
288         else
289             set_jsdisp(&vthis, ctx->script_disp);
290
291         hres = function->value_proc(ctx, &vthis, DISPATCH_METHOD, args, retv, ei, caller);
292         vdisp_release(&vthis);
293     }else {
294         hres = invoke_source(ctx, function, this_obj ? this_obj : (IDispatch*)_IDispatchEx_(ctx->script_disp),
295                 args, retv, ei, caller);
296     }
297
298     return hres;
299 }
300
301 static HRESULT function_to_string(FunctionInstance *function, BSTR *ret)
302 {
303     BSTR str;
304
305     static const WCHAR native_prefixW[] = {'\n','f','u','n','c','t','i','o','n',' '};
306     static const WCHAR native_suffixW[] =
307         {'(',')',' ','{','\n',' ',' ',' ',' ','[','n','a','t','i','v','e',' ','c','o','d','e',']','\n','}','\n'};
308
309     if(function->value_proc) {
310         DWORD name_len;
311
312         name_len = strlenW(function->name);
313         str = SysAllocStringLen(NULL, sizeof(native_prefixW) + name_len*sizeof(WCHAR) + sizeof(native_suffixW));
314         if(!str)
315             return E_OUTOFMEMORY;
316
317         memcpy(str, native_prefixW, sizeof(native_prefixW));
318         memcpy(str + sizeof(native_prefixW)/sizeof(WCHAR), function->name, name_len*sizeof(WCHAR));
319         memcpy(str + sizeof(native_prefixW)/sizeof(WCHAR) + name_len, native_suffixW, sizeof(native_suffixW));
320     }else {
321         str = SysAllocStringLen(function->src_str, function->src_len);
322         if(!str)
323             return E_OUTOFMEMORY;
324     }
325
326     *ret = str;
327     return S_OK;
328 }
329
330 static HRESULT Function_length(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
331         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
332 {
333     FunctionInstance *This = function_from_vdisp(jsthis);
334
335     TRACE("%p %d\n", This, This->length);
336
337     switch(flags) {
338     case DISPATCH_PROPERTYGET:
339         V_VT(retv) = VT_I4;
340         V_I4(retv) = This->length;
341         break;
342     default:
343         FIXME("unimplemented flags %x\n", flags);
344         return E_NOTIMPL;
345     }
346
347     return S_OK;
348 }
349
350 static HRESULT Function_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
351         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
352 {
353     FunctionInstance *function;
354     BSTR str;
355     HRESULT hres;
356
357     TRACE("\n");
358
359     if(!(function = function_this(jsthis)))
360         return throw_type_error(ctx, ei, IDS_NOT_FUNC, NULL);
361
362     hres = function_to_string(function, &str);
363     if(FAILED(hres))
364         return hres;
365
366     if(retv) {
367         V_VT(retv) = VT_BSTR;
368         V_BSTR(retv) = str;
369     }else {
370         SysFreeString(str);
371     }
372     return S_OK;
373 }
374
375 static HRESULT array_to_args(script_ctx_t *ctx, DispatchEx *arg_array, jsexcept_t *ei, IServiceProvider *caller,
376         DISPPARAMS *args)
377 {
378     VARIANT var, *argv;
379     DWORD length, i;
380     HRESULT hres;
381
382     hres = jsdisp_propget_name(arg_array, lengthW, &var, ei, NULL/*FIXME*/);
383     if(FAILED(hres))
384         return hres;
385
386     hres = to_uint32(ctx, &var, ei, &length);
387     VariantClear(&var);
388     if(FAILED(hres))
389         return hres;
390
391     argv = heap_alloc(length * sizeof(VARIANT));
392     if(!argv)
393         return E_OUTOFMEMORY;
394
395     for(i=0; i<length; i++) {
396         hres = jsdisp_propget_idx(arg_array, i, argv+i, ei, caller);
397         if(FAILED(hres)) {
398             while(i--)
399                 VariantClear(argv+i);
400             heap_free(argv);
401             return hres;
402         }
403     }
404
405     args->cArgs = length;
406     args->rgvarg = argv;
407     return S_OK;
408 }
409
410 static HRESULT Function_apply(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
411         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
412 {
413     FunctionInstance *function;
414     DISPPARAMS args = {NULL,NULL,0,0};
415     DWORD argc, i;
416     IDispatch *this_obj = NULL;
417     HRESULT hres = S_OK;
418
419     TRACE("\n");
420
421     if(!(function = function_from_vdisp(jsthis))) {
422         FIXME("dispex is not a function\n");
423         return E_FAIL;
424     }
425
426     argc = arg_cnt(dp);
427
428     if(argc) {
429         hres = to_object(ctx, get_arg(dp,0), &this_obj);
430         if(FAILED(hres))
431             return hres;
432     }
433
434     if(argc >= 2) {
435         DispatchEx *arg_array = NULL;
436
437         if(V_VT(get_arg(dp,1)) == VT_DISPATCH) {
438             arg_array = iface_to_jsdisp((IUnknown*)V_DISPATCH(get_arg(dp,1)));
439             if(arg_array && (
440                 !is_class(arg_array, JSCLASS_ARRAY) && !is_class(arg_array, JSCLASS_ARGUMENTS) )) {
441                 jsdisp_release(arg_array);
442                 arg_array = NULL;
443             }
444         }
445
446         if(arg_array) {
447             hres = array_to_args(ctx, arg_array, ei, caller, &args);
448             jsdisp_release(arg_array);
449         }else {
450             FIXME("throw TypeError\n");
451             hres = E_FAIL;
452         }
453     }
454
455     hres = call_function(ctx, function, this_obj, &args, retv, ei, caller);
456
457     if(this_obj)
458         IDispatch_Release(this_obj);
459     for(i=0; i<args.cArgs; i++)
460         VariantClear(args.rgvarg+i);
461     heap_free(args.rgvarg);
462     return hres;
463 }
464
465 static HRESULT Function_call(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
466         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
467 {
468     FunctionInstance *function;
469     DISPPARAMS args = {NULL,NULL,0,0};
470     IDispatch *this_obj = NULL;
471     DWORD argc;
472     HRESULT hres;
473
474     TRACE("\n");
475
476     if(!(function = function_from_vdisp(jsthis))) {
477         FIXME("dispex is not a function\n");
478         return E_FAIL;
479     }
480
481     argc = arg_cnt(dp);
482     if(argc) {
483         hres = to_object(ctx, get_arg(dp,0), &this_obj);
484         if(FAILED(hres))
485             return hres;
486         args.cArgs = argc-1;
487     }
488
489     if(args.cArgs)
490         args.rgvarg = dp->rgvarg + dp->cArgs - args.cArgs-1;
491
492     hres = call_function(ctx, function, this_obj, &args, retv, ei, caller);
493
494     if(this_obj)
495         IDispatch_Release(this_obj);
496     return hres;
497 }
498
499 HRESULT Function_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
500         VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
501 {
502     FunctionInstance *function;
503
504     TRACE("\n");
505
506     if(!is_vclass(jsthis, JSCLASS_FUNCTION)) {
507         ERR("dispex is not a function\n");
508         return E_FAIL;
509     }
510
511     function = (FunctionInstance*)jsthis->u.jsdisp;
512
513     switch(flags) {
514     case DISPATCH_METHOD:
515         if(function->value_proc)
516             return invoke_value_proc(ctx, function, flags, dp, retv, ei, caller);
517
518         return invoke_function(ctx, function, dp, retv, ei, caller);
519
520     case DISPATCH_PROPERTYGET: {
521         HRESULT hres;
522         BSTR str;
523
524         hres = function_to_string(function, &str);
525         if(FAILED(hres))
526             return hres;
527
528         V_VT(retv) = VT_BSTR;
529         V_BSTR(retv) = str;
530         break;
531     }
532
533     case DISPATCH_CONSTRUCT:
534         if(function->value_proc)
535             return invoke_value_proc(ctx, function, flags, dp, retv, ei, caller);
536
537         return invoke_constructor(ctx, function, dp, retv, ei, caller);
538
539     default:
540         FIXME("not implemented flags %x\n", flags);
541         return E_NOTIMPL;
542     }
543
544     return S_OK;
545 }
546
547 static void Function_destructor(DispatchEx *dispex)
548 {
549     FunctionInstance *This = (FunctionInstance*)dispex;
550
551     if(This->parser)
552         parser_release(This->parser);
553     if(This->scope_chain)
554         scope_release(This->scope_chain);
555     heap_free(This);
556 }
557
558 static const builtin_prop_t Function_props[] = {
559     {applyW,                 Function_apply,                 PROPF_METHOD|2},
560     {callW,                  Function_call,                  PROPF_METHOD|1},
561     {lengthW,                Function_length,                0},
562     {toStringW,              Function_toString,              PROPF_METHOD}
563 };
564
565 static const builtin_info_t Function_info = {
566     JSCLASS_FUNCTION,
567     {NULL, Function_value, 0},
568     sizeof(Function_props)/sizeof(*Function_props),
569     Function_props,
570     Function_destructor,
571     NULL
572 };
573
574 static HRESULT FunctionConstr_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
575         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
576 {
577     FIXME("\n");
578     return E_NOTIMPL;
579 }
580
581 static HRESULT FunctionProt_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
582         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
583 {
584     FIXME("\n");
585     return E_NOTIMPL;
586 }
587
588 static HRESULT create_function(script_ctx_t *ctx, const builtin_info_t *builtin_info, DWORD flags,
589         BOOL funcprot, DispatchEx *prototype, FunctionInstance **ret)
590 {
591     FunctionInstance *function;
592     HRESULT hres;
593
594     function = heap_alloc_zero(sizeof(FunctionInstance));
595     if(!function)
596         return E_OUTOFMEMORY;
597
598     if(funcprot)
599         hres = init_dispex(&function->dispex, ctx, &Function_info, prototype);
600     else if(builtin_info)
601         hres = init_dispex_from_constr(&function->dispex, ctx, builtin_info, ctx->function_constr);
602     else
603         hres = init_dispex_from_constr(&function->dispex, ctx, &Function_info, ctx->function_constr);
604     if(FAILED(hres))
605         return hres;
606
607     function->flags = flags;
608     function->length = flags & PROPF_ARGMASK;
609
610     *ret = function;
611     return S_OK;
612 }
613
614 static HRESULT set_prototype(script_ctx_t *ctx, DispatchEx *dispex, DispatchEx *prototype)
615 {
616     jsexcept_t jsexcept;
617     VARIANT var;
618
619     V_VT(&var) = VT_DISPATCH;
620     V_DISPATCH(&var) = (IDispatch*)_IDispatchEx_(prototype);
621     memset(&jsexcept, 0, sizeof(jsexcept));
622
623     return jsdisp_propput_name(dispex, prototypeW, &var, &jsexcept, NULL/*FIXME*/);
624 }
625
626 HRESULT create_builtin_function(script_ctx_t *ctx, builtin_invoke_t value_proc, const WCHAR *name,
627         const builtin_info_t *builtin_info, DWORD flags, DispatchEx *prototype, DispatchEx **ret)
628 {
629     FunctionInstance *function;
630     HRESULT hres;
631
632     hres = create_function(ctx, builtin_info, flags, FALSE, NULL, &function);
633     if(FAILED(hres))
634         return hres;
635
636     hres = set_prototype(ctx, &function->dispex, prototype);
637     if(FAILED(hres)) {
638         jsdisp_release(&function->dispex);
639         return hres;
640     }
641
642     function->value_proc = value_proc;
643     function->name = name;
644
645     *ret = &function->dispex;
646     return S_OK;
647 }
648
649 HRESULT create_source_function(parser_ctx_t *ctx, parameter_t *parameters, source_elements_t *source,
650         scope_chain_t *scope_chain, const WCHAR *src_str, DWORD src_len, DispatchEx **ret)
651 {
652     FunctionInstance *function;
653     DispatchEx *prototype;
654     parameter_t *iter;
655     DWORD length = 0;
656     HRESULT hres;
657
658     hres = create_object(ctx->script, NULL, &prototype);
659     if(FAILED(hres))
660         return hres;
661
662     hres = create_function(ctx->script, NULL, PROPF_CONSTR, FALSE, NULL, &function);
663     if(SUCCEEDED(hres)) {
664         hres = set_prototype(ctx->script, &function->dispex, prototype);
665         if(FAILED(hres))
666             jsdisp_release(&function->dispex);
667     }
668     jsdisp_release(prototype);
669     if(FAILED(hres))
670         return hres;
671
672     function->source = source;
673     function->parameters = parameters;
674
675     if(scope_chain) {
676         scope_addref(scope_chain);
677         function->scope_chain = scope_chain;
678     }
679
680     parser_addref(ctx);
681     function->parser = ctx;
682
683     for(iter = parameters; iter; iter = iter->next)
684         length++;
685     function->length = length;
686
687     function->src_str = src_str;
688     function->src_len = src_len;
689
690     *ret = &function->dispex;
691     return S_OK;
692 }
693
694 HRESULT init_function_constr(script_ctx_t *ctx, DispatchEx *object_prototype)
695 {
696     FunctionInstance *prot, *constr;
697     HRESULT hres;
698
699     static const WCHAR FunctionW[] = {'F','u','n','c','t','i','o','n',0};
700
701     hres = create_function(ctx, NULL, PROPF_CONSTR, TRUE, object_prototype, &prot);
702     if(FAILED(hres))
703         return hres;
704
705     prot->value_proc = FunctionProt_value;
706     prot->name = prototypeW;
707
708     hres = create_function(ctx, NULL, PROPF_CONSTR, TRUE, &prot->dispex, &constr);
709     if(SUCCEEDED(hres)) {
710         constr->value_proc = FunctionConstr_value;
711         constr->name = FunctionW;
712         hres = set_prototype(ctx, &constr->dispex, &prot->dispex);
713         if(FAILED(hres))
714             jsdisp_release(&constr->dispex);
715     }
716     jsdisp_release(&prot->dispex);
717     if(FAILED(hres))
718         return hres;
719
720     ctx->function_constr = &constr->dispex;
721     return S_OK;
722 }