issue_owner_repo listlengths 2 2 | issue_body stringlengths 0 261k ⌀ | issue_title stringlengths 1 925 | issue_comments_url stringlengths 56 81 | issue_comments_count int64 0 2.5k | issue_created_at stringlengths 20 20 | issue_updated_at stringlengths 20 20 | issue_html_url stringlengths 37 62 | issue_github_id int64 387k 2.46B | issue_number int64 1 127k |
|---|---|---|---|---|---|---|---|---|---|
[
"jerryscript-project",
"jerryscript"
] | When JerryScript is compiled with `-Ofast`, `String.startsWith` won't work correctly anymore.
This problem doesn't happen with lower optimization levels.
**I noticed some functions in `ecma-builtin-helpers.c` are using `ecma_number_t` in for loops. Is this really necessary? Since `ecma_number_t` is defined as `d... | String.startsWith fails with -Ofast | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5042/comments | 9 | 2023-02-11T20:02:31Z | 2023-02-12T19:46:14Z | https://github.com/jerryscript-project/jerryscript/issues/5042 | 1,580,995,744 | 5,042 |
[
"jerryscript-project",
"jerryscript"
] | # Version
Version: 3.0.0 ( 1a2c047 )
# Execution steps
/root/.jsvu/jerry Testcase.js
# Testcase
```
var foo = function() {
var s = "[0";
for (var i = 0; i < (128 << 10); i++) {
s += "[0-9]";
}
s += "]";
return eval(s);
}
var foo1 = foo();
print(foo1);
```
# Output
```
I... | Memory question under loop | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5041/comments | 0 | 2023-02-02T04:32:41Z | 2023-02-02T04:32:41Z | https://github.com/jerryscript-project/jerryscript/issues/5041 | 1,567,303,227 | 5,041 |
[
"jerryscript-project",
"jerryscript"
] |
# Version
Version: 3.0.0 ( 1a2c047 )
# Execution steps
/root/.jsvu/jerry Testcase.js
# Testcase
```
var foo = function(a, b = a) {
function a() {
return 2;
}
eval("assert(a() === 2)");
eval("assert(b === 1)");
};
var r0 = 1;
var r1 = 1.4793169892429541;
var CallingResult = foo... | A question about assert | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5040/comments | 0 | 2023-02-01T17:53:47Z | 2023-02-01T17:53:47Z | https://github.com/jerryscript-project/jerryscript/issues/5040 | 1,566,552,421 | 5,040 |
[
"jerryscript-project",
"jerryscript"
] | # Version
Version: 3.0.0 ( 1a2c047 )
# Execution steps
/root/.jsvu/jerry Testcase.js
# Testcase
```
var testcase = function() {
function foo() {
bar();
}
function bar() {
foo();
}
foo();
};
var CallingResult = testcase();
print(CallingResult);
```
# Output
Aborte... | A loop-call error bug | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5039/comments | 0 | 2023-02-01T17:45:23Z | 2023-02-01T17:45:23Z | https://github.com/jerryscript-project/jerryscript/issues/5039 | 1,566,541,369 | 5,039 |
[
"jerryscript-project",
"jerryscript"
] | I wondering if it is possible to get the module filename from the `module_import_meta_callback`
My aim is to implement `import.meta.url`
The first argument of the callback is `const jerry_value_t module`, but I don't know if I can get this information from here.
| [QUESTION] access module information from module_import_meta_callback | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5038/comments | 2 | 2023-01-21T13:36:42Z | 2023-01-23T06:15:47Z | https://github.com/jerryscript-project/jerryscript/issues/5038 | 1,551,803,054 | 5,038 |
[
"jerryscript-project",
"jerryscript"
] | ### Description
Hi. The code below does not have the same output as other engines (e.g., V8 in Google Chrome,SpiderMonkey in Firefox,chakra in Edge,quickjs,jerryscript).
#### JerryScript revision
3.0.0
#### Build platform
ubuntu20.04
#### Test case
`var regex=/(?:(\s)((?:\w*\1)){1,8}){2,5}/`
`regex.exec(... | Regex bug | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5037/comments | 0 | 2023-01-19T13:17:28Z | 2023-01-27T16:17:40Z | https://github.com/jerryscript-project/jerryscript/issues/5037 | 1,549,140,193 | 5,037 |
[
"jerryscript-project",
"jerryscript"
] | 1、Using ubantu20.04 server environment to run code, encountered some errors when compiling, may I ask what method can solve?
| Some errors at compile time | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5036/comments | 10 | 2023-01-16T02:41:09Z | 2023-01-17T07:11:12Z | https://github.com/jerryscript-project/jerryscript/issues/5036 | 1,534,173,831 | 5,036 |
[
"jerryscript-project",
"jerryscript"
] | I wondering how to deal with programatically created promises (`jerry_promise()`) and `jerry_run_jobs()` call or (calls !)
I try to implement a setTimeout native function that returns a promise.
script:
```
new Promise(function(resolve) {
resolve('Hello, World!');
})
.then(function(x) {
print(x)... | using jerry_promise() and jerry_run_jobs() call(s) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5035/comments | 0 | 2023-01-13T13:53:46Z | 2023-01-13T13:58:06Z | https://github.com/jerryscript-project/jerryscript/issues/5035 | 1,532,339,531 | 5,035 |
[
"jerryscript-project",
"jerryscript"
] | to reproduce:
1.) make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis install-noapt
2.) make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis script
fail:
-- Project sdkconfig file /home/runner/work/jerryscript/jerryscript/build/esp-idf/sdkconfig
CMake Error at /tmp/esp-idf/tools/cmak... | ESP_IDF_Build_Test CI job is broken | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5034/comments | 1 | 2023-01-03T15:56:11Z | 2023-01-03T15:58:27Z | https://github.com/jerryscript-project/jerryscript/issues/5034 | 1,517,592,453 | 5,034 |
[
"jerryscript-project",
"jerryscript"
] | null | can i call jerryscript from multiple threads? | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5031/comments | 1 | 2022-12-18T11:05:51Z | 2022-12-29T13:14:16Z | https://github.com/jerryscript-project/jerryscript/issues/5031 | 1,501,863,930 | 5,031 |
[
"jerryscript-project",
"jerryscript"
] | I'm simply not able to make JerryScript work with Zephyr. I have tried different processes with different outcomes:
### 1>
Tried running the command below (just like this [tutorial](https://github.com/jerryscript-project/jerryscript/tree/master/targets/os/zephyr)) in the `targets\os\zephyr`, but changing the toolc... | Can't make JerryScript Work with Zephyr | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5030/comments | 10 | 2022-10-26T17:21:15Z | 2023-01-03T15:46:10Z | https://github.com/jerryscript-project/jerryscript/issues/5030 | 1,424,420,320 | 5,030 |
[
"jerryscript-project",
"jerryscript"
] | Hello,
I'm trying to implement inheriting classes from C side, can someone tell me how to do this? any ideas will be appreciated.
For details, one SuperClassB inhirts from SuperClassA, both of them are expected to be explored to ES world from C side, and one ChildClass can be implemented from ES side then.
```
//... | [Question] How to implement class and inherits from C side? | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5029/comments | 1 | 2022-10-13T12:42:09Z | 2022-10-13T14:46:06Z | https://github.com/jerryscript-project/jerryscript/issues/5029 | 1,407,734,221 | 5,029 |
[
"jerryscript-project",
"jerryscript"
] | Hi owners of jerryscript,
I can see the JerryScript fully supports for ES5.1, but I found it also supports many features of ES6.
So, I wonder is there any list for JerryScript to present how many features does it support for ES6?
Thanks for your great work! | A question about supported ES version | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5027/comments | 3 | 2022-10-09T06:22:41Z | 2022-10-12T07:51:14Z | https://github.com/jerryscript-project/jerryscript/issues/5027 | 1,402,168,128 | 5,027 |
[
"jerryscript-project",
"jerryscript"
] | # Version
*Version: 3.0.0* ( 6fe763f )
# Execution steps
```bash
/root/.jsvu/jerry Testcase.js
```
# Test case 1
```javascript
var foo = function(it) {
var a = [...it, , ];
print(a);
print(a.length);
};
var Parameter0 = [1, 2];
foo(Parameter0);
```
## Output 1
```
1,2
2
```... | Array concatenation exception | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5026/comments | 1 | 2022-09-27T01:43:11Z | 2022-10-04T10:41:02Z | https://github.com/jerryscript-project/jerryscript/issues/5026 | 1,386,949,916 | 5,026 |
[
"jerryscript-project",
"jerryscript"
] | # Version
*Version: 3.0.0* ( 6fe763f )
# Testcase1
```javascript
var foo = function (parts) {
parts.sort(function (a, b) {
//print(a.avalue - b.value);
return a.avalue - b.value;//NaN
});
parts.forEach(function (item) {
print(item.value)
})
};
var NISL008 = [... | A question about Array.prototype.sort | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5025/comments | 1 | 2022-09-27T01:38:50Z | 2022-10-04T11:03:42Z | https://github.com/jerryscript-project/jerryscript/issues/5025 | 1,386,947,482 | 5,025 |
[
"jerryscript-project",
"jerryscript"
] | # Version
*Version: 3.0.0* ( 6fe763f )
# Test case
```javascript
var foo = function() {
var y = 200;
try {
throw {}
} catch ({
x = function(){print(y);}
}) {
let y = 300;
x();
}
};
foo();
```
# Execution steps
`/root/.jsvu/jerry Testcase.js... | Variable Scope Problem | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5024/comments | 0 | 2022-09-27T01:35:21Z | 2022-09-27T01:35:21Z | https://github.com/jerryscript-project/jerryscript/issues/5024 | 1,386,945,227 | 5,024 |
[
"jerryscript-project",
"jerryscript"
] | ## Brief Description & Steps
Failed to build on Debian with Clang 3.8. In the same environment the build succeeds with cc/gcc, but not with the version of clang used . This is the error I'm getting `error: missing field 'id' initializer [-Werror,-Wmissing-field-initializers]` on `ecma-builtin-typedarray-prototype.c:... | Build failed with clang 3.8: error: missing field 'id' initializer [-Werror,-Wmissing-field-initializers] | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5020/comments | 2 | 2022-08-18T16:05:00Z | 2022-08-18T19:19:20Z | https://github.com/jerryscript-project/jerryscript/issues/5020 | 1,343,316,133 | 5,020 |
[
"jerryscript-project",
"jerryscript"
] | how to use import statement without syntax error in v2.4.0? | Import and Export statement | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5018/comments | 7 | 2022-07-31T09:21:37Z | 2022-08-03T07:53:47Z | https://github.com/jerryscript-project/jerryscript/issues/5018 | 1,323,408,338 | 5,018 |
[
"jerryscript-project",
"jerryscript"
] | When parsing certain kinds class fields, the parser throws an error expecting a semicolon.
###### JerryScript revision
2.4.0
###### Build platform
all
###### Build steps
n/a
###### Build log
n/a
###### Test case
class A {
#p = 'something'
#privateMethod(){
}
}
Note: if "#p = 'somethin... | Private Class Fields Parsing Error | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5017/comments | 0 | 2022-07-30T17:39:22Z | 2022-07-30T17:39:22Z | https://github.com/jerryscript-project/jerryscript/issues/5017 | 1,323,243,022 | 5,017 |
[
"jerryscript-project",
"jerryscript"
] | From my reading of the spec, it sounds like keywords are not allowed as export names. However, modules can export default and the spec is not explicit on whether this is allowed.
Node/V8 allows using default in imports and exports. And, tools like sucrase, babel, terser, etc will collapse import statements using "as... | Using keyword default in imports and exports throws parser error | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5016/comments | 0 | 2022-07-30T17:33:03Z | 2022-07-30T17:33:03Z | https://github.com/jerryscript-project/jerryscript/issues/5016 | 1,323,235,965 | 5,016 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
2.4.0
###### Build platform
all
###### Build steps
n/a
###### Build log
n/a
###### Test case
Assume there is a global variable named 'process' in the current realm. Assume the process package exports default and a symbol named process as well.
When using a default import:... | import symbol conflicts with global variable name | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5015/comments | 2 | 2022-07-30T17:20:32Z | 2022-09-10T07:53:56Z | https://github.com/jerryscript-project/jerryscript/issues/5015 | 1,323,225,791 | 5,015 |
[
"jerryscript-project",
"jerryscript"
] | ### Commit
0d4969661810b9e618485c284c361e597144e9b9
(The newest Jerry release 2.4.0 is affected.)
### Build platform
Ubuntu 20.04
### Build steps
```
python tools/build.py --debug --logging=on --error-messages=on --line-info=on
```
### POC
```js
function foo() {
var a;
function* bar() ... | stack overflow at jerry-core/ecma/base/ecma-helpers-value.c | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5013/comments | 1 | 2022-07-26T06:53:43Z | 2022-08-08T15:37:00Z | https://github.com/jerryscript-project/jerryscript/issues/5013 | 1,317,783,139 | 5,013 |
[
"jerryscript-project",
"jerryscript"
] | Hi!
I am using jerryscript in my project.
I need to evaluate the memory resources required by my application in order to adjust the hardware resources.
Can jerry calculate and show the heap size needed by running a JS file?
| How to evaluate the heap and stack size needed by my project? | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5011/comments | 2 | 2022-07-14T08:49:19Z | 2022-07-25T00:54:54Z | https://github.com/jerryscript-project/jerryscript/issues/5011 | 1,304,467,791 | 5,011 |
[
"jerryscript-project",
"jerryscript"
] | ```console
jerry> new Date(2022, 5, 2).toLocaleDateString()
2022-06-01
```
on chrome:
```console
> new Date(2022, 5, 2).toLocaleDateString()
'6/2/2022'
```
should be 6-2.
| wrong output in Date.toLocaleDateString | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5009/comments | 1 | 2022-06-15T09:17:41Z | 2022-09-08T06:51:44Z | https://github.com/jerryscript-project/jerryscript/issues/5009 | 1,271,931,333 | 5,009 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d4969661810b9e618485c284c361e597144e9b9
master
###### Build platform
Ubuntu 16.04.7 LTS (Linux 4.15.0-142-generic x86_64)
###### Build steps
```sh
./tools/build.py --clean --compile-flag=-fsanitize=address --lto=off --error-message=on --profile=es.next --stack-limit=15 --debug --lo... | Stack-buffer-overflow in jerryx_print_unhandled_exception (jerryscript/jerry-ext/util/print.c) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5008/comments | 1 | 2022-05-29T18:17:00Z | 2022-08-08T06:14:38Z | https://github.com/jerryscript-project/jerryscript/issues/5008 | 1,251,957,111 | 5,008 |
[
"jerryscript-project",
"jerryscript"
] | ###### Version
Version: 3.0.0 (fea10bb7)
###### Test case
```js
var foo = function () {
let view = new Uint8Array([1,2,3]);
view[''] = 0;
print(view);
}
foo();
```
###### Execution steps
/.jsvu/jerry Testcase.js
###### Output
```
0,2,3
```
###### Expected behavior
``... | A question about Uint8Array operation | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5007/comments | 1 | 2022-05-14T08:24:23Z | 2022-09-26T14:15:00Z | https://github.com/jerryscript-project/jerryscript/issues/5007 | 1,235,913,902 | 5,007 |
[
"jerryscript-project",
"jerryscript"
] | will string be reclaimed when gc runs in jerryscript. how string will be managed when it is no longer needed. for example
```code
function PrintHello()
{
var hello = "hello"
}
function main()
{
PrintHello();
}
```
when `PrintHello` call in `main` finished, will "hello" be reclaimed if we do not hav... | gc for strings in jerryscript | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5006/comments | 1 | 2022-05-10T04:44:16Z | 2022-07-22T07:32:52Z | https://github.com/jerryscript-project/jerryscript/issues/5006 | 1,230,611,687 | 5,006 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
new { async [ yield ] ( ... yield ) { }}
```
###### Output
```text... | Assertion scope_stack_p > context_p->scope_stack_p in scanner_literal_is_created | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5005/comments | 0 | 2022-04-25T19:43:51Z | 2022-04-25T19:43:51Z | https://github.com/jerryscript-project/jerryscript/issues/5005 | 1,214,964,179 | 5,005 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
for ( let => { }in \) ;
```
###### Output
```text
ICE: Assertion 'c... | Assertion context_p->next_scanner_info_p->type == SCANNER_TYPE_BLOCK in parser_push_block_context | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5004/comments | 0 | 2022-04-25T19:40:53Z | 2022-04-25T19:40:53Z | https://github.com/jerryscript-project/jerryscript/issues/5004 | 1,214,960,678 | 5,004 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
class A { f ( ) { return ( { }, this ) } }
class B extends A { const... | Assertion !ecma_is_value_direct (x) || ecma_is_value_undefined (x) || ecma_is_value_null (x) || ecma_is_value_boolean (x) || ecma_is_value_integer_number (x) in ecma_op_strict_equality_compare | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5003/comments | 0 | 2022-04-25T19:37:42Z | 2022-04-25T19:37:42Z | https://github.com/jerryscript-project/jerryscript/issues/5003 | 1,214,957,940 | 5,003 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
class Derived { 0( ) { for ( let in \) ;} }
```
###### Output
```t... | Assertion !has_context || context_p->next_scanner_info_p->type == SCANNER_TYPE_BLOCK in parser_parse_for_statement_start | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5002/comments | 0 | 2022-04-25T19:35:06Z | 2022-04-25T19:35:06Z | https://github.com/jerryscript-project/jerryscript/issues/5002 | 1,214,955,600 | 5,002 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
function shouldBe(actual) { if (actual) throw new Error ( 0+ actual )... | Assertion ecma_object_check_class_name_is_object (obj_p) in ecma_object_get_class_name | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5001/comments | 0 | 2022-04-25T16:50:06Z | 2022-04-25T16:50:06Z | https://github.com/jerryscript-project/jerryscript/issues/5001 | 1,214,781,098 | 5,001 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
let x = [ ]; let k = 1 ; for ( ; ; ) { k = k * 2 ; x [ k ] = k }
```... | Assertion index <= ECMA_DIRECT_STRING_MAX_IMM in ecma_fast_array_convert_to_normal | https://api.github.com/repos/jerryscript-project/jerryscript/issues/5000/comments | 0 | 2022-04-25T16:47:00Z | 2022-04-25T16:47:00Z | https://github.com/jerryscript-project/jerryscript/issues/5000 | 1,214,778,073 | 5,000 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
class A { }
class B extends A { constructor(a,b,c,d){ eval("eval ('su... | Assertion ecma_is_value_undefined (value) || ecma_is_value_null (value) || ecma_is_value_boolean (value) || ecma_is_value_number (value) || ecma_is_value_string (value) || ecma_is_value_bigint (value) || ecma_is_value_symbol (value) || ecma_is_value_object (value) in ecma_check_value_type_is_spec_defined | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4999/comments | 0 | 2022-04-25T16:44:46Z | 2022-04-25T16:44:46Z | https://github.com/jerryscript-project/jerryscript/issues/4999 | 1,214,775,865 | 4,999 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
for (var {...r} = o in new Map( ));
```
###### Output
```text
ICE: ... | Assertion !!(flags & PARSER_PATTERN_HAS_REST_ELEMENT) == rest_found in parser_parse_object_initializer | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4998/comments | 0 | 2022-04-25T16:38:42Z | 2022-04-25T16:38:42Z | https://github.com/jerryscript-project/jerryscript/issues/4998 | 1,214,770,024 | 4,998 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
0d496966
###### Build platform
Linux-5.4.0-104-generic-x86_64-with-glibc2.29
###### Build steps
```
./tools/build.py --clean --debug --profile=es.next --error-messages=ON --logging=ON
```
###### Test case
```javascript
"use strict";
function testDCE(){ if (class { 0 = super 0 = } ;}
``... | Assertion context_p->token.type == LEXER_LITERAL && (context_p->token.lit_location.type == LEXER_IDENT_LITERAL || context_p->token.lit_location.type == LEXER_STRING_LITERAL) in lexer_compare_literal_to_string | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4997/comments | 0 | 2022-04-25T16:17:57Z | 2022-04-25T16:17:57Z | https://github.com/jerryscript-project/jerryscript/issues/4997 | 1,214,748,177 | 4,997 |
[
"jerryscript-project",
"jerryscript"
] | Hey!
I am using jerry script as a scripting backend in my game engine. And it works great :)
But I can't figure out how to implement script reloading. When you develop something, you need to restart and run scripts over and over again. How can i do this?
In other scripting languages, I just loaded the script a... | How I can reload script? | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4996/comments | 2 | 2022-04-11T19:16:43Z | 2022-04-17T06:56:16Z | https://github.com/jerryscript-project/jerryscript/issues/4996 | 1,200,422,822 | 4,996 |
[
"jerryscript-project",
"jerryscript"
] | ###### Version
Version: 3.0.0 (fea10bb7)
###### Execution steps
/.jsvu/jerry Testcase.js
###### Test case 1
```js
var foo = function(it) {
var a = [...it, , ];
print(a);
print(a.length);
};
var Parameter0 = [1, 2];
foo(Parameter0);
```
###### Output 1
```
1,2
2
```
##... | Array concatenation exception | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4995/comments | 1 | 2022-04-11T07:32:39Z | 2022-10-09T10:09:20Z | https://github.com/jerryscript-project/jerryscript/issues/4995 | 1,199,518,928 | 4,995 |
[
"jerryscript-project",
"jerryscript"
] | ###### Version
Version: 3.0.0 (fea10bb7)
###### Test case
```js
var foo = function (parts) {
parts.sort(function (a, b) {
return a.avalue - b.value;//NaN
});
parts.forEach(function (item) {
print(item.value)
})
};
var Parameter0 = [
{ name: 'Edward', value: 21 },... | A question about Array.prototype.sort | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4994/comments | 1 | 2022-04-09T14:16:47Z | 2022-10-09T09:55:53Z | https://github.com/jerryscript-project/jerryscript/issues/4994 | 1,198,629,540 | 4,994 |
[
"jerryscript-project",
"jerryscript"
] | Built jerry script with debugger, wrote some js class and started session. Tried to expand "catch" section at first line of class definition, and debugger failed with message:
```
ICE: Assertion 'ecma_is_value_object (value)' failed at C:\work\jerryscript-master\jerryscript-master\jerry-core\debugger\debugger.c(jerry... | Assertion when debugging a class | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4993/comments | 0 | 2022-04-04T21:30:05Z | 2022-04-04T21:30:05Z | https://github.com/jerryscript-project/jerryscript/issues/4993 | 1,192,335,714 | 4,993 |
[
"jerryscript-project",
"jerryscript"
] |
###### JerryScript revision
0d4969661810b9e618485c284c361e597144e9b9
###### Build platform
Ubuntu 20.04.4 LTS
###### Build steps
```sh
python tools/build.py --debug --logging=on --error-messages=on --line-info=on
```
###### Test case
```js
var f = function () {}
let x = {
get: functio... | Memory Leak in Number Proxy | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4990/comments | 1 | 2022-03-12T07:29:14Z | 2022-03-12T07:41:20Z | https://github.com/jerryscript-project/jerryscript/issues/4990 | 1,167,209,108 | 4,990 |
[
"jerryscript-project",
"jerryscript"
] |
###### JerryScript revision
0d4969661810b9e618485c284c361e597144e9b9
###### Build platform
Ubuntu 20.04.4 LTS
###### Build steps
```sh
python tools/build.py --debug --logging=on --error-messages=on --line-info=on
```
###### Test case
```js
var f = function () {}
let x = {
get: functio... | Memory Leak in Number Proxy | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4989/comments | 1 | 2022-03-12T07:27:28Z | 2022-03-12T07:41:02Z | https://github.com/jerryscript-project/jerryscript/issues/4989 | 1,167,208,834 | 4,989 |
[
"jerryscript-project",
"jerryscript"
] |
###### JerryScript revision
0d4969661810b9e618485c284c361e597144e9b9
###### Build platform
Ubuntu 20.04.4 LTS
###### Build steps
```sh
python tools/build.py --debug --logging=on --error-messages=on --line-info=on
```
###### Test case
```js
var f = function () {}
let x = {
get: functio... | Memory Leak in Number Proxy | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4988/comments | 0 | 2022-03-12T07:24:09Z | 2022-03-12T07:24:09Z | https://github.com/jerryscript-project/jerryscript/issues/4988 | 1,167,207,824 | 4,988 |
[
"jerryscript-project",
"jerryscript"
] | I am investigating a memory leak issue, I noticed `Allocated object data` is growing from `jmem_heap_stats (void)`
Is there a way to dump heap info to a file. (Like heap-profiler in V8 https://chromedevtools.github.io/devtools-protocol/v8/HeapProfiler/) | [Feature request] dump heap memory | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4987/comments | 0 | 2022-03-02T08:00:13Z | 2022-03-02T08:00:13Z | https://github.com/jerryscript-project/jerryscript/issues/4987 | 1,156,714,007 | 4,987 |
[
"jerryscript-project",
"jerryscript"
] | I see now just a simple string concatenation of `directory_p` and `specifier`:
https://github.com/jerryscript-project/jerryscript/blob/0d4969661810b9e618485c284c361e597144e9b9/jerry-core/api/jerry-module.c#L141-L161
Does this mean that scenarios like absolute paths cannot be handled? My proposal for this is to ad... | Proposal for module path handling | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4986/comments | 0 | 2022-03-02T02:46:38Z | 2022-03-02T02:49:38Z | https://github.com/jerryscript-project/jerryscript/issues/4986 | 1,156,255,296 | 4,986 |
[
"jerryscript-project",
"jerryscript"
] | ###### Version
Version: 3.0.0 (fea10bb7)
###### Test case
```js
var foo = function() {
var y = 200;
try {
throw {}
} catch ({
x = function(){print(y);}
}) {
let y = 300;
x();
}
};
foo();
```
###### Execution steps
/.jsvu/jerry Testcase... | Variable Scope Problem | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4985/comments | 0 | 2022-02-22T11:14:35Z | 2022-02-22T11:14:35Z | https://github.com/jerryscript-project/jerryscript/issues/4985 | 1,146,777,195 | 4,985 |
[
"jerryscript-project",
"jerryscript"
] |
```
jerry_char_t *
jerry_port_path_normalize (const jerry_char_t *path_p, /**< input path */
jerry_size_t path_size) /**< size of the path */
{
(void) path_size;
return (jerry_char_t *) realpath ((char *) path_p, NULL);
} /* jerry_port_path_normalize */
```
Currently the impl... | on unix, realpath are can failed when the path not exist | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4983/comments | 0 | 2022-02-10T05:35:20Z | 2022-02-10T05:35:20Z | https://github.com/jerryscript-project/jerryscript/issues/4983 | 1,129,477,506 | 4,983 |
[
"jerryscript-project",
"jerryscript"
] | All the place calling to strlen are
```
Name Line Text Path
jerry-debugger.c 150 size_t source_name_size = strlen ((const char *) source_name_p); E:\CI-Cor\acrop\acrop-deps\acrop-jerry\jerryscript\jerry-core\api
jerryscript.c 5091 strlen (str_p)); E:\CI-Cor\acrop\acrop-deps... | feature, strlen are rarely called in jerry-core and jerry-ext, we can remove all the usage of strlen | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4979/comments | 0 | 2022-02-09T21:14:01Z | 2022-02-09T21:14:01Z | https://github.com/jerryscript-project/jerryscript/issues/4979 | 1,129,027,521 | 4,979 |
[
"jerryscript-project",
"jerryscript"
] | According to
https://github.com/jerryscript-project/jerryscript/blob/badfdf4dba1fa0a15bd78163c1713ada5e65cd22/jerry-core/lit/lit-magic-strings.c#L44
We can use lit_magic_strings[id] - lit_magic_strings[id+1] to calcuate the length of `lit_magic_strings[id]`, without the need of strlen.
| lit_get_magic_string_utf8 can be improved without the need of strlen | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4978/comments | 0 | 2022-02-09T21:10:30Z | 2022-02-09T21:10:30Z | https://github.com/jerryscript-project/jerryscript/issues/4978 | 1,129,024,653 | 4,978 |
[
"jerryscript-project",
"jerryscript"
] | According to
https://tc39.es/proposal-temporal/docs/now.html#instant,
The Temporal.Now.instant() are improved the accuracy over Date.now from
millisecond to nanosecond, that's need tthe `jerryscript`'s port API to support nanosecond precision | temporal.now require ` nanosecond accuracy` | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4975/comments | 3 | 2022-02-09T19:09:19Z | 2022-02-09T20:45:49Z | https://github.com/jerryscript-project/jerryscript/issues/4975 | 1,128,922,572 | 4,975 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
#d00f4810b0e8eaa6a6755e2d0ecbd1713ecfca49
###### Test case
**Error Code**
```c
//periodically calling the following code every 1 second will causing JERRY_FATAL_REF_COUNT_LIMIT randomly
jerry_value_t jerry_arguments[2];
jerry_arguments[0] = jerry_number(0);
jerry_arguments[1] = jer... | jerry_call with Jerry_Array argument will causing JERRY_FATAL_REF_COUNT_LIMIT randomly | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4974/comments | 7 | 2022-02-06T05:51:09Z | 2022-02-11T10:55:28Z | https://github.com/jerryscript-project/jerryscript/issues/4974 | 1,125,112,679 | 4,974 |
[
"jerryscript-project",
"jerryscript"
] | **Commit:** 0ef509458e296056f0ccd48f4ea264134f3e5e06
**Tested on:** Ubuntu 18.04 LTS
## Build Steps
```
python ./tools/build.py --clean --debug --compile-flag=-fsanitize=address --compile-flag=-m32 --compile-flag=-g --strip=off --lto=off --logging=on --line-info=on --error-message=on --system-allocator=on --sta... | Assertion '(c & LIT_UTF8_4_BYTE_MASK) == LIT_UTF8_4_BYTE_MARKER' failed atlit-strings.c(lit_read_code_point_from_utf8) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4969/comments | 0 | 2022-01-20T13:26:28Z | 2022-01-20T13:26:28Z | https://github.com/jerryscript-project/jerryscript/issues/4969 | 1,109,300,930 | 4,969 |
[
"jerryscript-project",
"jerryscript"
] | JerryScript is a full ES5.1 compliant JavaScript engine since its first release (JerryScript 1.0 in 2016). JavaScript language is continuously evolving: the first popular version (5.1) was released in 2011 and new releases have been rolled out every year since 2015. JavaScript engines are evolving too, JerryScript fini... | Proposal: Retire the legacy ES5.1 build profile | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4963/comments | 3 | 2022-01-11T14:34:07Z | 2022-02-01T10:20:34Z | https://github.com/jerryscript-project/jerryscript/issues/4963 | 1,099,236,809 | 4,963 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'ECMA_STRING_IS_REF_EQUALS_TO_ONE (string_p)' failed at jerryscript/jerry-core/ecma/base/ecma-literal-storage.c(ecma_free_string_list):77. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4941/comments | 0 | 2022-01-04T06:22:36Z | 2022-01-14T10:02:19Z | https://github.com/jerryscript-project/jerryscript/issues/4941 | 1,093,048,389 | 4,941 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'local_tza == ecma_date_local_time_zone_adjustment (date_value)' failed at jerryscript/jerry-core/ecma/builtin-objects/ecma-builtin-date-prototype.c(ecma_builtin_date_prototype_dispatch_routine):689. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4940/comments | 0 | 2022-01-04T06:21:48Z | 2022-01-14T04:29:46Z | https://github.com/jerryscript-project/jerryscript/issues/4940 | 1,093,048,021 | 4,940 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'local_tza == ecma_date_local_time_zone_adjustment (date_value)' failed at jerryscript/jerry-core/ecma/builtin-objects/ecma-builtin-date-prototype.c(ecma_builtin_date_prototype_dispatch_set):421. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4939/comments | 0 | 2022-01-04T06:20:47Z | 2022-01-14T04:30:08Z | https://github.com/jerryscript-project/jerryscript/issues/4939 | 1,093,047,468 | 4,939 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'ecma_object_check_class_name_is_object (obj_p)' failed at jerryscript/jerry-core/ecma/operations/ecma-objects.c(ecma_object_get_class_name):3015. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4938/comments | 0 | 2022-01-04T06:20:03Z | 2022-01-14T04:30:19Z | https://github.com/jerryscript-project/jerryscript/issues/4938 | 1,093,047,047 | 4,938 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'type == ECMA_OBJECT_TYPE_GENERAL || type == ECMA_OBJECT_TYPE_PROXY' failed at jerryscript/jerry-core/ecma/operations/ecma-objects.c(ecma_object_get_class_name):3020. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4937/comments | 0 | 2022-01-04T06:19:15Z | 2022-01-14T04:30:33Z | https://github.com/jerryscript-project/jerryscript/issues/4937 | 1,093,046,641 | 4,937 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'ecma_is_value_object (value)' failed at jerryscript/jerry-core/ecma/base/ecma-helpers-value.c(ecma_get_object_from_value):838. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4936/comments | 0 | 2022-01-04T06:18:34Z | 2022-01-18T12:16:02Z | https://github.com/jerryscript-project/jerryscript/issues/4936 | 1,093,046,263 | 4,936 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'lit_is_valid_cesu8_string (string_p, string_size)' failed at jerryscript/jerry-core/ecma/base/ecma-helpers-string.c(ecma_new_ecma_string_from_utf8):371. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4935/comments | 3 | 2022-01-04T06:17:32Z | 2022-01-14T04:30:57Z | https://github.com/jerryscript-project/jerryscript/issues/4935 | 1,093,045,783 | 4,935 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'ecma_is_lexical_environment (obj_p) || !ecma_op_object_is_fast_array (obj_p)' failed at jerryscript/jerry-core/ecma/base/ecma-helpers.c(ecma_find_named_property):621. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4934/comments | 0 | 2022-01-04T06:13:59Z | 2022-01-14T09:13:03Z | https://github.com/jerryscript-project/jerryscript/issues/4934 | 1,093,043,755 | 4,934 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'ecma_is_lexical_environment (object_p)' failed at jerryscript/jerry-core/ecma/base/ecma-helpers.c(ecma_get_lex_env_type):291. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4933/comments | 1 | 2022-01-04T06:13:20Z | 2022-01-04T10:31:07Z | https://github.com/jerryscript-project/jerryscript/issues/4933 | 1,093,043,444 | 4,933 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'page_p != NULL' failed at jerryscript/jerry-core/parser/js/js-parser-mem.c(parser_list_get):274. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4932/comments | 2 | 2022-01-04T06:11:03Z | 2022-01-14T04:31:31Z | https://github.com/jerryscript-project/jerryscript/issues/4932 | 1,093,042,198 | 4,932 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'page_p != list_p->data.last_p || (index * list_p->item_size < list_p->data.last_position)' failed at jerryscript/jerry-core/parser/js/js-parser-mem.c(parser_list_get):280. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4931/comments | 1 | 2022-01-04T06:10:03Z | 2022-01-14T04:31:42Z | https://github.com/jerryscript-project/jerryscript/issues/4931 | 1,093,041,684 | 4,931 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'page_p != NULL' failed at jerryscript/jerry-core/parser/js/js-parser-mem.c(parser_list_get):279. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4930/comments | 0 | 2022-01-04T06:09:14Z | 2022-01-14T09:14:04Z | https://github.com/jerryscript-project/jerryscript/issues/4930 | 1,093,041,266 | 4,930 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context.status_flags & PARSER_SCANNING_SUCCESSFUL' failed at jerryscript/jerry-core/parser/js/js-parser.c(parser_parse_source):2348. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4929/comments | 1 | 2022-01-04T06:08:29Z | 2022-01-04T11:16:10Z | https://github.com/jerryscript-project/jerryscript/issues/4929 | 1,093,040,868 | 4,929 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'flags & PARSER_PATTERN_HAS_REST_ELEMENT' failed at jerryscript/jerry-core/parser/js/js-parser-expr.c(parser_parse_object_initializer):4119. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4928/comments | 0 | 2022-01-04T06:07:34Z | 2022-01-14T09:15:48Z | https://github.com/jerryscript-project/jerryscript/issues/4928 | 1,093,040,435 | 4,928 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'opts & PARSER_CLASS_LITERAL_CTOR_PRESENT' failed at jerryscript/jerry-core/parser/js/js-parser-expr.c(parser_parse_class_body):656. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4927/comments | 0 | 2022-01-04T06:06:49Z | 2022-01-14T09:16:23Z | https://github.com/jerryscript-project/jerryscript/issues/4927 | 1,093,040,080 | 4,927 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->token.type == LEXER_RIGHT_BRACE || context_p->token.type == LEXER_ASSIGN || context_p->token.type == LEXER_COMMA' failed at jerryscript/jerry-core/parser/js/js-parser-expr.c(parser_parse_object_initializer):4178. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4926/comments | 1 | 2022-01-04T06:06:06Z | 2022-01-04T10:39:48Z | https://github.com/jerryscript-project/jerryscript/issues/4926 | 1,093,039,724 | 4,926 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->stack_top_uint8 == LEXER_EXPRESSION_START' failed at jerryscript/jerry-core/parser/js/js-parser-expr.c(parser_parse_expression):4522. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4925/comments | 0 | 2022-01-04T06:05:06Z | 2022-01-14T04:33:16Z | https://github.com/jerryscript-project/jerryscript/issues/4925 | 1,093,039,259 | 4,925 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->stack_top_uint8 == SCAN_STACK_TRY_STATEMENT || context_p->stack_top_uint8 == SCAN_STACK_CATCH_STATEMENT' failed at jerryscript/jerry-core/parser/js/js-scanner.c(scanner_scan_statement_end):2370. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4924/comments | 0 | 2022-01-04T06:04:22Z | 2022-01-14T04:33:28Z | https://github.com/jerryscript-project/jerryscript/issues/4924 | 1,093,038,878 | 4,924 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->token.type == LEXER_LITERAL && (context_p->token.lit_location.type == LEXER_IDENT_LITERAL || context_p->token.lit_location.type == LEXER_STRING_LITERAL)' failed at jerryscript/jerry-core/parser/js/js-lexer.c(lexer_compare_literal_to_string):3696. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4923/comments | 1 | 2022-01-04T06:03:37Z | 2022-01-14T04:33:38Z | https://github.com/jerryscript-project/jerryscript/issues/4923 | 1,093,038,523 | 4,923 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->token.type != LEXER_RIGHT_PAREN' failed at jerryscript/jerry-core/parser/js/js-parser-statm.c(parser_parse_for_statement_start):1605. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4922/comments | 1 | 2022-01-04T06:02:50Z | 2022-01-14T04:33:49Z | https://github.com/jerryscript-project/jerryscript/issues/4922 | 1,093,038,110 | 4,922 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'context_p->token.type == LEXER_LITERAL' failed at jerryscript/jerry-core/parser/js/js-parser-expr.c(parser_check_duplicated_private_field):531. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4921/comments | 0 | 2022-01-04T06:02:03Z | 2022-01-18T12:22:46Z | https://github.com/jerryscript-project/jerryscript/issues/4921 | 1,093,037,753 | 4,921 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'cesu8_cursor_p == cesu8_end_p' failed at /jerryscript/jerry-core/lit/lit-strings.c(lit_convert_cesu8_string_to_utf8_string):868. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4920/comments | 0 | 2022-01-04T06:01:01Z | 2022-01-14T09:03:47Z | https://github.com/jerryscript-project/jerryscript/issues/4920 | 1,093,037,283 | 4,920 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'scope_stack_p >= context_p->scope_stack_p' failed at jerry-core/parser/js/js-parser-statm.c(parser_parse_function_statement):741. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4919/comments | 1 | 2022-01-04T06:00:08Z | 2022-01-04T10:39:15Z | https://github.com/jerryscript-project/jerryscript/issues/4919 | 1,093,036,909 | 4,919 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [a6ab5e9](https://github.com/jerryscript-project/jerryscript/commit/a6ab5e9abed70cdedf9f4e9c1dc379eb762ebf64)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
... | Assertion 'scope_stack_p > context_p->scope_stack_p' failed at jerry-core/parser/js/js-scanner-util.c(scanner_literal_is_created):3112. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4918/comments | 1 | 2022-01-04T05:59:16Z | 2022-01-04T10:39:03Z | https://github.com/jerryscript-project/jerryscript/issues/4918 | 1,093,036,586 | 4,918 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
a6ab5e9
###### Build platform
Ubuntu 20.04.3 LTS (Linux 5.11.0-43-generic x86_64)
###### Build steps
```sh
./tools/build.py --clean --compile-flag=-fsanitize=address --lto=off --error-message=on --profile=es2015-subset --stack-limit=15 --debug --logging=on --line-info=on
```
####... | Use After Free at jerry-core/parser/js/js-lexer.c:3503 in lexer_compare_identifier_to_string | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4917/comments | 2 | 2022-01-03T03:39:39Z | 2022-01-04T10:38:46Z | https://github.com/jerryscript-project/jerryscript/issues/4917 | 1,092,198,721 | 4,917 |
[
"jerryscript-project",
"jerryscript"
] | ##### JerryScript commit hash
`a6ab5e9`
##### Build platform
Ubuntu 20.04 LTS
##### Build steps
./tools/build.py --clean --compile-flag=-fsanitize=address --lto=off --error-message=on --profile=es2015-subset --stack-limit=15 --debug --logging=on --line-info=on
##### poc
```js
function test(proxyTarget) {
v... | Assertion 'context_p->next_scanner_info_p->type == SCANNER_TYPE_FUNCTION' failed at /home/ubuntu/fuzz/jerryscript/jerry-core/parser/js/js-parser.c(parser_parse_function_arguments):1618 | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4916/comments | 0 | 2022-01-02T19:10:38Z | 2022-05-21T14:30:43Z | https://github.com/jerryscript-project/jerryscript/issues/4916 | 1,092,081,853 | 4,916 |
[
"jerryscript-project",
"jerryscript"
] | I would like to store some binary data, eg. images or fonts etc. this binary data will be compiled to byte code and store in rom.
currently I tend to use string or Uint8Array, but I don't know which would be more efficiency when runing the compiled to byte code. | how to store binary data in javascript code more efficiency | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4911/comments | 4 | 2021-12-22T03:16:45Z | 2022-01-12T01:04:42Z | https://github.com/jerryscript-project/jerryscript/issues/4911 | 1,086,408,515 | 4,911 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [42523bd6](https://github.com/jerryscript-project/jerryscript/commit/42523bd6e2b114755498c9f68fd78545f9b33476)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
python ./tools/build.py --clean... | Assertion 'ecma_is_lexical_environment (object_p)' failed at ecma-helpers.c (ecma_get_lex_env_type). | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4902/comments | 3 | 2021-12-13T09:36:28Z | 2021-12-31T08:17:12Z | https://github.com/jerryscript-project/jerryscript/issues/4902 | 1,078,289,153 | 4,902 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [42523bd6](https://github.com/jerryscript-project/jerryscript/commit/42523bd6e2b114755498c9f68fd78545f9b33476)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
python ./tools/build.py --cle... | Stack-overflow in vm_loop.lto_priv.304 of vm.c | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4901/comments | 0 | 2021-12-13T09:33:54Z | 2022-01-12T02:03:50Z | https://github.com/jerryscript-project/jerryscript/issues/4901 | 1,078,286,757 | 4,901 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [42523bd6](https://github.com/jerryscript-project/jerryscript/commit/42523bd6e2b114755498c9f68fd78545f9b33476)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
python ./tools/build.py --cl... | Assertion 'ecma_is_lexical_environment (object_p)' failed at ecma-helpers.c (ecma_get_lex_env_type). | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4900/comments | 1 | 2021-12-13T08:54:30Z | 2022-01-12T02:04:14Z | https://github.com/jerryscript-project/jerryscript/issues/4900 | 1,078,245,904 | 4,900 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Some questions in the fuzz test, hope to be answered, about"AddressSanitizer: allocator is out of memory" | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4897/comments | 6 | 2021-12-09T15:35:26Z | 2021-12-09T16:05:49Z | https://github.com/jerryscript-project/jerryscript/issues/4897 | 1,075,710,248 | 4,897 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Assertion 'ECMA_PROPERTY_VALUE_PTR (property_p)->value == ECMA_VALUE_UNINITIALIZED' failed at jerry-core/vm/vm.c(vm_loop):1662. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4896/comments | 2 | 2021-12-09T15:08:21Z | 2021-12-15T11:45:10Z | https://github.com/jerryscript-project/jerryscript/issues/4896 | 1,075,680,604 | 4,896 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
./tools/build.py --clean --debug... | Assertion 'ecma_object_check_class_name_is_object (obj_p)' failed at ecma-objects.c(ecma_object_get_class_name) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4895/comments | 3 | 2021-12-09T14:58:57Z | 2022-01-12T02:09:35Z | https://github.com/jerryscript-project/jerryscript/issues/4895 | 1,075,669,945 | 4,895 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Assertion 'JERRY_CONTEXT (jmem_heap_allocated_size) == 0' failed at /home/sakura/jerryscript/jerry-core/jmem/jmem-heap.c(jmem_heap_finalize):108. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4894/comments | 1 | 2021-12-09T14:53:08Z | 2022-01-14T09:05:39Z | https://github.com/jerryscript-project/jerryscript/issues/4894 | 1,075,663,454 | 4,894 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
./tools/build.py --clean --deb... | Assertion 'JERRY_CONTEXT (jmem_heap_allocated_size) == 0' failed at jmem-heap.c(jmem_heap_finalize). | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4893/comments | 4 | 2021-12-09T14:52:15Z | 2022-01-12T02:09:17Z | https://github.com/jerryscript-project/jerryscript/issues/4893 | 1,075,662,496 | 4,893 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Assertion 'context_p->scope_stack_size == PARSER_MAXIMUM_DEPTH_OF_SCOPE_STACK' failed at jerry-core/parser/js/js-parser-expr.c(parser_parse_class):1160 | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4892/comments | 0 | 2021-12-09T14:39:45Z | 2021-12-22T13:50:47Z | https://github.com/jerryscript-project/jerryscript/issues/4892 | 1,075,648,914 | 4,892 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 4.19.128-microsoft-standard x86_64)
###### Build steps
```bash
./tools/build.py --clea... | Stack-overflow in ecma_find_named_property (ecma-helpers.c) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4891/comments | 1 | 2021-12-09T14:33:33Z | 2021-12-09T14:35:17Z | https://github.com/jerryscript-project/jerryscript/issues/4891 | 1,075,642,418 | 4,891 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
./tools/build.py --clean --deb... | Stack-overflow in ecma_lcache_lookup (ecma-lcache.c) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4890/comments | 0 | 2021-12-09T14:27:01Z | 2022-01-12T02:08:57Z | https://github.com/jerryscript-project/jerryscript/issues/4890 | 1,075,634,585 | 4,890 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Assertion 'new_typedarray_info.offset == 0' failed at jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c(ecma_builtin_typedarray_prototype_slice):1631. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4888/comments | 0 | 2021-12-09T14:18:26Z | 2021-12-09T15:54:27Z | https://github.com/jerryscript-project/jerryscript/issues/4888 | 1,075,625,398 | 4,888 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | AddressSanitizer: stack-overflow in lexer_construct_function_object | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4887/comments | 0 | 2021-12-09T14:11:29Z | 2022-01-14T10:02:51Z | https://github.com/jerryscript-project/jerryscript/issues/4887 | 1,075,618,049 | 4,887 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | Assertion 'ecma_object_check_class_name_is_object (obj_p)' failed at jerry-core/ecma/operations/ecma-objects.c(ecma_object_get_class_name):3009. | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4884/comments | 0 | 2021-12-09T14:02:03Z | 2021-12-15T09:29:30Z | https://github.com/jerryscript-project/jerryscript/issues/4884 | 1,075,608,151 | 4,884 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address \
--compile-flag=-m32 --compile-flag=-fno-omit-frame-pointer \
--compile-flag=-fno-common --compile-flag=-g \
--strip=... | AddressSanitizer: stack-overflow in ecma_builtin_json_internalize_process_property | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4883/comments | 1 | 2021-12-09T13:55:49Z | 2021-12-09T13:59:12Z | https://github.com/jerryscript-project/jerryscript/issues/4883 | 1,075,601,184 | 4,883 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
./tools/build.py --clean --deb... | Heap-buffer-overflow in ecma_utf8_string_to_number_by_radix (ecma-helpers-conversion.c) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4882/comments | 3 | 2021-12-09T13:20:38Z | 2022-01-12T02:08:24Z | https://github.com/jerryscript-project/jerryscript/issues/4882 | 1,075,566,600 | 4,882 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27)
Version: v3.0.0
###### Build platform
Ubuntu 18.04.5 LTS (Linux 5.4.0-44-generic x86_64)
###### Build steps
```bash
./tools/build.py --clean --deb... | Assertion 'ecma_is_value_boolean (base_value)' failed in ecma_op_get_value_object_base (ecma-get-put-value). | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4876/comments | 0 | 2021-12-09T09:48:50Z | 2022-01-12T02:06:45Z | https://github.com/jerryscript-project/jerryscript/issues/4876 | 1,075,367,669 | 4,876 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27) Version: v3.0.0
Commit: [8ba0d1b](https://github.com/jerryscript-project/jerryscript/commit/8ba0d1b6ee5a065a42f3b306771ad8e3c0d819bc) Version: v2.4.0
###### B... | Assertion 'ecma_object_is_typedarray (obj_p)' failed in ecma-typedarray-object(ecma_get_typedarray_id) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4875/comments | 0 | 2021-12-09T09:08:53Z | 2022-01-12T02:06:25Z | https://github.com/jerryscript-project/jerryscript/issues/4875 | 1,075,325,382 | 4,875 |
[
"jerryscript-project",
"jerryscript"
] | ## JerryScript commit hash
55acdf2048b390d0f56f12e64dbfb2559f0e70ad
## Build platform
Ubuntu 20.04 LTS
## Build steps
```
./tools/build.py --clean --debug --compile-flag=-fsanitize=address --compile-flag=-m32 --lto=off --logging=on --line-info=on --error-message=on --system-allocator=on --profile=es2015-subse... | Assertion '!is_static' failed at jerry-core/parser/js/js-parser-expr.c(parser_parse_class_body):729 | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4874/comments | 4 | 2021-12-09T08:38:09Z | 2021-12-15T09:32:12Z | https://github.com/jerryscript-project/jerryscript/issues/4874 | 1,075,298,781 | 4,874 |
[
"jerryscript-project",
"jerryscript"
] | ###### JerryScript revision
Commit: [51da1551](https://github.com/jerryscript-project/jerryscript/commit/51da15516e1436184be9914314f76d596f14cd27) Version: v3.0.0
Commit: [8ba0d1b](https://github.com/jerryscript-project/jerryscript/commit/8ba0d1b6ee5a065a42f3b306771ad8e3c0d819bc) Version: v2.4.0
###### Build... | Assertion 'ecma_is_value_object (value)' failed in ecma-helpers-value(ecma_get_object_from_value) | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4873/comments | 0 | 2021-12-09T07:43:47Z | 2022-01-12T02:06:07Z | https://github.com/jerryscript-project/jerryscript/issues/4873 | 1,075,252,043 | 4,873 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.