summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug659577-2.js
blob: dbd4ec240792104cadf06c37e596e8000b67ea87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
gczeal(4);
evaluate("\
Date.formatFunctions = {count:0};\
Date.prototype.dateFormat = function(format) {\
    var funcName = 'format' + Date.formatFunctions.count++;\
    var code = 'Date.prototype.' + funcName + ' = function(){return ';\
    var ch = '';\
    for (var i = 0; i < format.length; ++i) {\
        ch = format.charAt(i);\
        eval(code.substring(0, code.length - 3) + ';}');\
    }\
};\
var date = new Date('1/1/2007 1:11:11');\
    var shortFormat = date.dateFormat('Y-m-d');\
");