Home | History | Annotate | Download | only in function

Lines Matching refs:abc

45     x = f(/abc/);
58 "new f(/abc/) +''",
59 "/abc/",
60 new f(/abc/) +"" );
63 "f(/abc/)+'')",
64 "/abc/",
65 f(/abc/) +'');
68 "typeof f(/abc/)",
70 typeof f(/abc/) );
73 "typeof new f(/abc/)",
75 typeof new f(/abc/) );
78 "x = new f(/abc/); x(\"hi\")",