Commit Graph

152 Commits

Author SHA1 Message Date
df4aa8eb0a js-on-sx: real Date construction + getters via Howard-Hinnant civil arithmetic
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 27s
2026-05-10 08:33:22 +00:00
5bb65d8315 js-on-sx: Date.prototype.toISOString proper YMDhms format + Type/RangeError gates
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 26s
2026-05-10 07:39:40 +00:00
fb8bb9f105 js-on-sx: JSON.stringify replacer (fn+array), space, toJSON
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 43s
2026-05-10 07:04:14 +00:00
769559bae7 js-on-sx: JSON.parse raises SyntaxError, rejects trailing content + control chars
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 43s
2026-05-10 06:32:11 +00:00
d7cc6d1b39 js-on-sx: split(undefined) returns whole string, funcexpr implicit return is undefined
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 26s
2026-05-10 04:56:02 +00:00
df5e36aa5e js-on-sx: number/boolean method dispatch falls back to Number/Boolean.prototype
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 40s
2026-05-10 04:18:20 +00:00
8a06c2d72b js-on-sx: String.prototype.* ToString-coerces non-string this; .call/.apply skip global-coerce for built-ins
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 22s
2026-05-10 03:45:25 +00:00
058dcd5600 js-on-sx: ** / Math.pow spec edges (NaN exp, abs(base)=1+inf), Number.valueOf ignores args
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 42s
2026-05-10 03:01:02 +00:00
1a34cc4456 js-on-sx: Number.prototype.toString(radix) avoids rational div-by-zero
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 43s
2026-05-10 02:23:38 +00:00
ad897122d7 js-on-sx: array elision, list-instanceof-Array, array toString identity
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 41s
2026-05-10 01:27:33 +00:00
ce067e32a4 js-on-sx: getOwnPropertyDescriptor skips internal __proto__/__js_order__
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 28s
2026-05-10 00:13:08 +00:00
25b30788b4 js-on-sx: object literal spread {...src}
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 31s
2026-05-09 23:42:13 +00:00
f15a8d8fef js-on-sx: Object.getOwnPropertyNames throws on null, adds length for str/arr
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 39s
2026-05-09 23:12:43 +00:00
b4f7f814be js-on-sx: Object.values/entries throw on null/undefined, walk strings
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 42s
2026-05-09 22:42:24 +00:00
dedb82565b js-on-sx: Object.keys throws on null/undefined, walks indices on string/array
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 20s
2026-05-09 22:12:05 +00:00
7d575cb1fe js-on-sx: Object.assign ToObjects target, throws on null, walks string sources
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 41s
2026-05-09 21:42:15 +00:00
793eccfce2 js-on-sx: Number.prototype methods unwrap Number wrappers, TypeError on non-Number
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 25s
2026-05-09 21:09:56 +00:00
ada7a147e5 js-on-sx: Array.prototype methods carry spec lengths + names
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 25s
2026-05-09 20:41:10 +00:00
65f3b6fcc0 js-on-sx: Number/String.prototype methods carry spec lengths + names
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 42s
2026-05-09 20:12:41 +00:00
f256132eb3 js-on-sx: Boolean.prototype.toString/valueOf throw TypeError on non-Boolean
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 19:41:24 +00:00
d4be87166b js-on-sx: reduce/reduceRight callback receives (acc, cur, idx, array)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 27s
2026-05-09 19:13:12 +00:00
0655b942a5 js-on-sx: Array.prototype find/findIndex/some/every honour thisArg + (v,i,arr)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 22s
2026-05-09 18:42:20 +00:00
1fef6ec94d js-on-sx: Array.prototype forEach/map/filter honour thisArg + pass (v,i,arr)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 39s
2026-05-09 18:08:33 +00:00
87bf3711c4 js-on-sx: Map/Set.prototype.forEach honour thisArg + pass (v,k,coll)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 40s
2026-05-09 17:33:29 +00:00
8ae7187c55 js-on-sx: for-in walks proto chain with shadowing, stops at native prototypes
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 41s
2026-05-09 17:01:31 +00:00
7fc37abe02 js-on-sx: bind returns dict-with-__callable__ for property mutation + length
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 47s
2026-05-09 14:47:54 +00:00
802544fdc6 js-on-sx: call/apply box primitive thisArg per non-strict ToObject
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 48s
2026-05-09 14:13:57 +00:00
699b30ed1b js-on-sx: Function.prototype.bind throws TypeError on non-callable target
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 45s
2026-05-09 13:41:25 +00:00
16e21ef6fa js-on-sx: Function.prototype.{call,apply,bind,toString} expose spec length/name
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 47s
2026-05-09 13:09:11 +00:00
cd014cdb29 js-on-sx: Function.prototype call/apply/bind/toString delegate to real impl
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 12:36:48 +00:00
adc4cb89c6 js-on-sx: fn proto chain walks through functions; fn.prototype = X persists
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 23s
2026-05-09 12:07:34 +00:00
4481f5f98b js-on-sx: call/apply substitute global for null/undefined this (non-strict)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 28s
2026-05-09 11:33:23 +00:00
b59f08a1b8 js-on-sx: expose more built-ins on js-global (Function, Errors, Promise, etc.)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 43s
2026-05-09 10:58:38 +00:00
d145532afe js-on-sx: instanceof accepts function operands (fn instanceof Function/Object)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 44s
2026-05-09 09:44:48 +00:00
86f7a351fb js-on-sx: relational ops ToPrimitive operands + NaN-safe le/ge
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 42s
2026-05-09 09:13:06 +00:00
e4c92a19d4 js-on-sx: Error/TypeError/etc return instance when called without new
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 45s
2026-05-09 08:35:11 +00:00
5632830118 js-on-sx: js-loose-eq honours NaN inequality across numeric/string paths
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 22s
2026-05-09 07:33:03 +00:00
cb272317bc js-on-sx: js-to-number returns NaN for functions, coerces lists
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 06:29:06 +00:00
013ce15357 js-on-sx: js-add ToPrimitive's Date and plain Objects via valueOf/toString
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 24s
2026-05-09 05:56:01 +00:00
76d6528c51 js-on-sx: js-add unwraps wrapper objects before string-concat decision
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 20s
2026-05-09 05:25:06 +00:00
41dbac55b8 js-on-sx: rational handling in typeof/to-string/strict-eq/loose-eq
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 24s
2026-05-09 04:53:11 +00:00
9bf4bd6180 js-on-sx: js-to-number coerces SX rationals via exact->inexact
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 34s
2026-05-09 04:19:51 +00:00
141795449a js-on-sx: parseFloat/parseInt return NaN for digitless prefix
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 26s
2026-05-09 03:42:47 +00:00
a6793fa656 js-on-sx: parseFloat recognises Infinity prefix
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 03:13:21 +00:00
b57f40db63 js-on-sx: getOwnPropertyDescriptor handles arrays + strings
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 01:32:39 +00:00
c8ab505c32 js-on-sx: fix RegExp test/exec calling nil when platform impl missing
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 42s
2026-05-09 01:01:39 +00:00
7c63fd8a7f js-on-sx: RegExp constructor wraps existing regex stub
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 21s
2026-05-09 00:24:45 +00:00
c45a2b34a0 js-on-sx: js-is-space? covers full ES WhiteSpace + LineTerminator set
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 49s
2026-05-08 23:52:44 +00:00
20997d3360 js-on-sx: NativeError prototype chain + [object Error/Date/Map/Set] brands
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 49s
2026-05-08 23:08:01 +00:00
a1030dce5d js-on-sx: object literal __proto__ + try/catch error wrapping
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 36s
2026-05-08 22:13:17 +00:00