forked from dop251/goja
-
Notifications
You must be signed in to change notification settings - Fork 22
/
builtin_date.go
1058 lines (971 loc) · 30.5 KB
/
builtin_date.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package goja
import (
"fmt"
"math"
"sync"
"time"
)
func (r *Runtime) makeDate(args []Value, utc bool) (t time.Time, valid bool) {
switch {
case len(args) >= 2:
t = time.Date(1970, time.January, 1, 0, 0, 0, 0, time.Local)
t, valid = _dateSetYear(t, FunctionCall{Arguments: args}, 0, utc)
case len(args) == 0:
t = r.now()
valid = true
default: // one argument
if o, ok := args[0].(*Object); ok {
if d, ok := o.self.(*dateObject); ok {
t = d.time()
valid = true
}
}
if !valid {
pv := toPrimitive(args[0])
if val, ok := pv.(String); ok {
return dateParse(val.String())
}
pv = pv.ToNumber()
var n int64
if i, ok := pv.(valueInt); ok {
n = int64(i)
} else if f, ok := pv.(valueFloat); ok {
f := float64(f)
if math.IsNaN(f) || math.IsInf(f, 0) {
return
}
if math.Abs(f) > maxTime {
return
}
n = int64(f)
} else {
n = pv.ToInteger()
}
t = timeFromMsec(n)
valid = true
}
}
if valid {
msec := t.Unix()*1000 + int64(t.Nanosecond()/1e6)
if msec < 0 {
msec = -msec
}
if msec > maxTime {
valid = false
}
}
return
}
func (r *Runtime) newDateTime(args []Value, proto *Object) *Object {
t, isSet := r.makeDate(args, false)
return r.newDateObject(t, isSet, proto)
}
func (r *Runtime) builtin_newDate(args []Value, proto *Object) *Object {
return r.newDateTime(args, proto)
}
func (r *Runtime) builtin_date(FunctionCall) Value {
return asciiString(dateFormat(r.now()))
}
func (r *Runtime) date_parse(call FunctionCall) Value {
t, set := dateParse(call.Argument(0).toString().String())
if set {
return intToValue(timeToMsec(t))
}
return _NaN
}
func (r *Runtime) date_UTC(call FunctionCall) Value {
var args []Value
if len(call.Arguments) < 2 {
args = []Value{call.Argument(0), _positiveZero}
} else {
args = call.Arguments
}
t, valid := r.makeDate(args, true)
if !valid {
return _NaN
}
return intToValue(timeToMsec(t))
}
func (r *Runtime) date_now(FunctionCall) Value {
return intToValue(timeToMsec(r.now()))
}
func (r *Runtime) dateproto_toString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(dateTimeLayout))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toUTCString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.timeUTC().Format(utcDateTimeLayout))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toUTCString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toISOString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
utc := d.timeUTC()
year := utc.Year()
if year >= -9999 && year <= 9999 {
return asciiString(utc.Format(isoDateTimeLayout))
}
// extended year
return asciiString(fmt.Sprintf("%+06d-", year) + utc.Format(isoDateTimeLayout[5:]))
} else {
panic(r.newError(r.getRangeError(), "Invalid time value"))
}
}
panic(r.NewTypeError("Method Date.prototype.toISOString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toJSON(call FunctionCall) Value {
obj := call.This.ToObject(r)
tv := obj.toPrimitiveNumber()
if f, ok := tv.(valueFloat); ok {
f := float64(f)
if math.IsNaN(f) || math.IsInf(f, 0) {
return _null
}
}
if toISO, ok := obj.self.getStr("toISOString", nil).(*Object); ok {
if toISO, ok := toISO.self.assertCallable(); ok {
return toISO(FunctionCall{
This: obj,
})
}
}
panic(r.NewTypeError("toISOString is not a function"))
}
func (r *Runtime) dateproto_toPrimitive(call FunctionCall) Value {
o := r.toObject(call.This)
arg := call.Argument(0)
if asciiString("string").StrictEquals(arg) || asciiString("default").StrictEquals(arg) {
return o.ordinaryToPrimitiveString()
}
if asciiString("number").StrictEquals(arg) {
return o.ordinaryToPrimitiveNumber()
}
panic(r.NewTypeError("Invalid hint: %s", arg))
}
func (r *Runtime) dateproto_toDateString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(dateLayout))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toDateString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toTimeString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(timeLayout))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toTimeString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toLocaleString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(datetimeLayout_en_GB))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toLocaleString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toLocaleDateString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(dateLayout_en_GB))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toLocaleDateString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_toLocaleTimeString(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return asciiString(d.time().Format(timeLayout_en_GB))
} else {
return stringInvalidDate
}
}
panic(r.NewTypeError("Method Date.prototype.toLocaleTimeString is called on incompatible receiver"))
}
func (r *Runtime) dateproto_valueOf(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(d.msec)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.valueOf is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getTime(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(d.msec)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getTime is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getFullYear(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Year()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getFullYear is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCFullYear(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Year()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCFullYear is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getMonth(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Month()) - 1)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getMonth is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCMonth(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Month()) - 1)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCMonth is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getHours(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Hour()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getHours is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCHours(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Hour()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCHours is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getDate(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Day()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getDate is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCDate(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Day()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCDate is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getDay(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Weekday()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getDay is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCDay(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Weekday()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCDay is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getMinutes(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Minute()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getMinutes is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCMinutes(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Minute()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCMinutes is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getSeconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Second()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getSeconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCSeconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Second()))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCSeconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getMilliseconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.time().Nanosecond() / 1e6))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getMilliseconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getUTCMilliseconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
return intToValue(int64(d.timeUTC().Nanosecond() / 1e6))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getUTCMilliseconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_getTimezoneOffset(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
if d.isSet() {
_, offset := d.time().Zone()
return floatToValue(float64(-offset) / 60)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.getTimezoneOffset is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setTime(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
n := call.Argument(0).ToNumber()
if IsNaN(n) {
d.unset()
return _NaN
}
return d.setTimeMs(n.ToInteger())
}
panic(r.NewTypeError("Method Date.prototype.setTime is called on incompatible receiver"))
}
// _norm returns nhi, nlo such that
//
// hi * base + lo == nhi * base + nlo
// 0 <= nlo < base
func _norm(hi, lo, base int64) (nhi, nlo int64, ok bool) {
if lo < 0 {
if hi == math.MinInt64 && lo <= -base {
// underflow
ok = false
return
}
n := (-lo-1)/base + 1
hi -= n
lo += n * base
}
if lo >= base {
if hi == math.MaxInt64 {
// overflow
ok = false
return
}
n := lo / base
hi += n
lo -= n * base
}
return hi, lo, true
}
func mkTime(year, m, day, hour, min, sec, nsec int64, loc *time.Location) (t time.Time, ok bool) {
year, m, ok = _norm(year, m, 12)
if !ok {
return
}
// Normalise nsec, sec, min, hour, overflowing into day.
sec, nsec, ok = _norm(sec, nsec, 1e9)
if !ok {
return
}
min, sec, ok = _norm(min, sec, 60)
if !ok {
return
}
hour, min, ok = _norm(hour, min, 60)
if !ok {
return
}
day, hour, ok = _norm(day, hour, 24)
if !ok {
return
}
if year > math.MaxInt32 || year < math.MinInt32 ||
day > math.MaxInt32 || day < math.MinInt32 ||
m >= math.MaxInt32 || m < math.MinInt32-1 {
return time.Time{}, false
}
month := time.Month(m) + 1
return time.Date(int(year), month, int(day), int(hour), int(min), int(sec), int(nsec), loc), true
}
func _intArg(call FunctionCall, argNum int) (int64, bool) {
n := call.Argument(argNum).ToNumber()
if IsNaN(n) {
return 0, false
}
return n.ToInteger(), true
}
func _dateSetYear(t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var year int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
year, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
if year >= 0 && year <= 99 {
year += 1900
}
} else {
year = int64(t.Year())
}
return _dateSetMonth(year, t, call, argNum+1, utc)
}
func _dateSetFullYear(t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var year int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
year, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
year = int64(t.Year())
}
return _dateSetMonth(year, t, call, argNum+1, utc)
}
func _dateSetMonth(year int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var mon int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
mon, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
mon = int64(t.Month()) - 1
}
return _dateSetDay(year, mon, t, call, argNum+1, utc)
}
func _dateSetDay(year, mon int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var day int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
day, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
day = int64(t.Day())
}
return _dateSetHours(year, mon, day, t, call, argNum+1, utc)
}
func _dateSetHours(year, mon, day int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var hours int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
hours, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
hours = int64(t.Hour())
}
return _dateSetMinutes(year, mon, day, hours, t, call, argNum+1, utc)
}
func _dateSetMinutes(year, mon, day, hours int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var min int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
min, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
min = int64(t.Minute())
}
return _dateSetSeconds(year, mon, day, hours, min, t, call, argNum+1, utc)
}
func _dateSetSeconds(year, mon, day, hours, min int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var sec int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
sec, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
sec = int64(t.Second())
}
return _dateSetMilliseconds(year, mon, day, hours, min, sec, t, call, argNum+1, utc)
}
func _dateSetMilliseconds(year, mon, day, hours, min, sec int64, t time.Time, call FunctionCall, argNum int, utc bool) (time.Time, bool) {
var msec int64
if argNum == 0 || argNum > 0 && argNum < len(call.Arguments) {
var ok bool
msec, ok = _intArg(call, argNum)
if !ok {
return time.Time{}, false
}
} else {
msec = int64(t.Nanosecond() / 1e6)
}
var ok bool
sec, msec, ok = _norm(sec, msec, 1e3)
if !ok {
return time.Time{}, false
}
var loc *time.Location
if utc {
loc = time.UTC
} else {
loc = time.Local
}
r, ok := mkTime(year, mon, day, hours, min, sec, msec*1e6, loc)
if !ok {
return time.Time{}, false
}
if utc {
return r.In(time.Local), true
}
return r, true
}
func (r *Runtime) dateproto_setMilliseconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
n := call.Argument(0).ToNumber()
if IsNaN(n) {
d.unset()
return _NaN
}
msec := n.ToInteger()
sec := d.msec / 1e3
var ok bool
sec, msec, ok = _norm(sec, msec, 1e3)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(sec*1e3 + msec)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setMilliseconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCMilliseconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
n := call.Argument(0).ToNumber()
if IsNaN(n) {
d.unset()
return _NaN
}
msec := n.ToInteger()
sec := d.msec / 1e3
var ok bool
sec, msec, ok = _norm(sec, msec, 1e3)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(sec*1e3 + msec)
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCMilliseconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setSeconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.time(), call, -5, false)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setSeconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCSeconds(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.timeUTC(), call, -5, true)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCSeconds is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setMinutes(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.time(), call, -4, false)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setMinutes is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCMinutes(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.timeUTC(), call, -4, true)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCMinutes is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setHours(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.time(), call, -3, false)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setHours is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCHours(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.timeUTC(), call, -3, true)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCHours is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setDate(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.time(), limitCallArgs(call, 1), -2, false)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setDate is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCDate(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.timeUTC(), limitCallArgs(call, 1), -2, true)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCDate is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setMonth(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.time(), limitCallArgs(call, 2), -1, false)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setMonth is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCMonth(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
t, ok := _dateSetFullYear(d.timeUTC(), limitCallArgs(call, 2), -1, true)
if !ok {
d.unset()
return _NaN
}
if d.isSet() {
return d.setTimeMs(timeToMsec(t))
} else {
return _NaN
}
}
panic(r.NewTypeError("Method Date.prototype.setUTCMonth is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setFullYear(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
var t time.Time
if d.isSet() {
t = d.time()
} else {
t = time.Date(1970, time.January, 1, 0, 0, 0, 0, time.Local)
}
t, ok := _dateSetFullYear(t, limitCallArgs(call, 3), 0, false)
if !ok {
d.unset()
return _NaN
}
return d.setTimeMs(timeToMsec(t))
}
panic(r.NewTypeError("Method Date.prototype.setFullYear is called on incompatible receiver"))
}
func (r *Runtime) dateproto_setUTCFullYear(call FunctionCall) Value {
obj := r.toObject(call.This)
if d, ok := obj.self.(*dateObject); ok {
var t time.Time
if d.isSet() {
t = d.timeUTC()
} else {
t = time.Date(1970, time.January, 1, 0, 0, 0, 0, time.UTC)
}
t, ok := _dateSetFullYear(t, limitCallArgs(call, 3), 0, true)
if !ok {
d.unset()
return _NaN
}
return d.setTimeMs(timeToMsec(t))
}
panic(r.NewTypeError("Method Date.prototype.setUTCFullYear is called on incompatible receiver"))
}
var dateTemplate *objectTemplate
var dateTemplateOnce sync.Once
func getDateTemplate() *objectTemplate {
dateTemplateOnce.Do(func() {
dateTemplate = createDateTemplate()
})
return dateTemplate
}
func createDateTemplate() *objectTemplate {
t := newObjectTemplate()
t.protoFactory = func(r *Runtime) *Object {
return r.getFunctionPrototype()
}
t.putStr("name", func(r *Runtime) Value { return valueProp(asciiString("Date"), false, false, true) })
t.putStr("length", func(r *Runtime) Value { return valueProp(intToValue(7), false, false, true) })
t.putStr("prototype", func(r *Runtime) Value { return valueProp(r.getDatePrototype(), false, false, false) })
t.putStr("parse", func(r *Runtime) Value { return r.methodProp(r.date_parse, "parse", 1) })
t.putStr("UTC", func(r *Runtime) Value { return r.methodProp(r.date_UTC, "UTC", 7) })
t.putStr("now", func(r *Runtime) Value { return r.methodProp(r.date_now, "now", 0) })
return t
}
func (r *Runtime) getDate() *Object {
ret := r.global.Date
if ret == nil {
ret = &Object{runtime: r}
r.global.Date = ret
r.newTemplatedFuncObject(getDateTemplate(), ret, r.builtin_date,
r.wrapNativeConstruct(r.builtin_newDate, ret, r.getDatePrototype()))
}
return ret
}
func createDateProtoTemplate() *objectTemplate {
t := newObjectTemplate()
t.protoFactory = func(r *Runtime) *Object {
return r.global.ObjectPrototype
}
t.putStr("constructor", func(r *Runtime) Value { return valueProp(r.getDate(), true, false, true) })
t.putStr("toString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toString, "toString", 0) })
t.putStr("toDateString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toDateString, "toDateString", 0) })
t.putStr("toTimeString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toTimeString, "toTimeString", 0) })
t.putStr("toLocaleString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toLocaleString, "toLocaleString", 0) })
t.putStr("toLocaleDateString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toLocaleDateString, "toLocaleDateString", 0) })
t.putStr("toLocaleTimeString", func(r *Runtime) Value { return r.methodProp(r.dateproto_toLocaleTimeString, "toLocaleTimeString", 0) })
t.putStr("valueOf", func(r *Runtime) Value { return r.methodProp(r.dateproto_valueOf, "valueOf", 0) })
t.putStr("getTime", func(r *Runtime) Value { return r.methodProp(r.dateproto_getTime, "getTime", 0) })
t.putStr("getFullYear", func(r *Runtime) Value { return r.methodProp(r.dateproto_getFullYear, "getFullYear", 0) })
t.putStr("getUTCFullYear", func(r *Runtime) Value { return r.methodProp(r.dateproto_getUTCFullYear, "getUTCFullYear", 0) })
t.putStr("getMonth", func(r *Runtime) Value { return r.methodProp(r.dateproto_getMonth, "getMonth", 0) })
t.putStr("getUTCMonth", func(r *Runtime) Value { return r.methodProp(r.dateproto_getUTCMonth, "getUTCMonth", 0) })