yype
yype
Hi there, the POC below outputs differently on mujs than on v8/jsc/chakracore. ```javascript function a() { b = [, 1] a = function() { return b } return a() }...
Hi there, the following PoC triggers a crash in the latest commit: PoC: ``` async function a(f) { try { await f b } catch (c) { function g() {...
Hi, the following PoC triggers a crash in the latest commit. ```js var a = [] var b = {toString : () => a.length = 65535} for (var c =...
Hi, the following PoC triggers a crash in the latest commit. ```js var a = [] a.push(0.123) a.fill(0, {valueOf() { a[61932] = 0 }}) ``` Environment: ``` Commit: 8595d1fd074bbc8749da93a9abfb1cbf2e6d817a System:...
## Issue Hi, the following test case triggers an OOM on the attached harness and the OOM gets handled correctly: ``` a = new Int8Array(2483647+500000) b = {...a} ``` However,...
Hi there, this is probably not an issue but I find it somehow strange. qjs throws an error `SyntaxError: missing formal parameter` on the following testcase: ```javascript function func() {...
Hi there, I come across the following sequence of queries that will receive an error from the server `ERROR: total size of jsonb object elements exceeds the maximum of 268435455...
Hi there, I come across the following query that will crash the server. Tested on AG v2.13.1. ``` CREATE GRAPH network; SET graph_path = network; MATCH path_0 = (node_0{prop2:'LIT7'})-->(node_0:label2{prop6:TRUE}) DETACH...