-
Updated
Aug 9, 2021 - C++
javascript-engine
Here are 63 public repositories matching this topic...
-
Updated
Dec 3, 2021 - C
-
Updated
Dec 1, 2021 - JavaScript
In strict mode arguments
and eval
are mostly treated as keywords. For example they cannot be assigned to. But they should be allowed as return values from a strict function.
The following code examples currently fail, but should work:
let eval = 1;
function a(){
"use strict";
return eval;
}
a() // returns 1
function a(){
"use st
-
Updated
Apr 6, 2021 - C
The README recommends adding ~/.jsvu
to the $PATH
. If you look at its contents, however:
▲ ~/ ls ~/.jsvu
. .. engines status.json v8
you'll see that I get the v8
binary (good!), but also I'm exposing status.json
and engines
to my $PATH
▲ ~/ engines
zsh: permission denied: engines
▲ ~/ status.json
zsh: permission deni
-
Updated
Oct 30, 2021 - C
-
Updated
Oct 14, 2021 - Go
-
Updated
Oct 12, 2021 - C++
right now, we have a bunch of warnings in Clippy. We could fix them gradually. And set up Clippy in Ci at last.
Replace copy_dir
copy_dir
is quite outdated and tends to introduce a duplicate dependency on walkdir
.
We can either ship a compressed version of the code, which is then uncompressed instead of copying the source directory.
Or switch to a different dependency like fs-extra
.
See libquickjs-sys/build.rs
.
-
Updated
Dec 2, 2021 - C#
-
Updated
Sep 14, 2021 - Pascal
-
Updated
Dec 3, 2021 - C++
-
Updated
Nov 22, 2021 - C#
-
Updated
Sep 17, 2021 - Python
-
Updated
Aug 14, 2019 - C
-
Updated
Jul 20, 2021 - Python
-
Updated
Dec 3, 2021 - C
-
Updated
Nov 18, 2021 - Kotlin
-
Updated
May 28, 2020 - Rust
-
Updated
May 24, 2021 - C#
-
Updated
Jun 28, 2018 - Java
-
Updated
Jun 28, 2020 - C#
-
Updated
Aug 7, 2021 - C
-
Updated
Nov 26, 2021 - C
-
Updated
Nov 21, 2021 - C++
Improve this page
Add a description, image, and links to the javascript-engine topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the javascript-engine topic, visit your repo's landing page and select "manage topics."
Expected
str = empty string
Actual
failed and returns JsErrorNullArgument
I think this should be possible