-
Updated
Apr 27, 2022 - TypeScript
interpreter
Here are 4,355 public repositories matching this topic...
-
Updated
Apr 1, 2022 - C++
-
Updated
Mar 3, 2022
-
Updated
Apr 6, 2022 - C
-
Updated
Apr 26, 2022 - Red
Running a simple script like:
#!/bin/bash
echo a
through shfmt -mn
yields:
echo a
The shebang is stripped out (like a comment) which isn't ideal.
Thanks for the otherwise great library!
-
Updated
Sep 18, 2021 - C
-
Updated
Apr 26, 2022 - TypeScript
-
Updated
Mar 10, 2021 - Go
-
Updated
Mar 14, 2022 - C
We can currently convert most of Rust's basic types to JsValue
, but since the i128
type was a late addition to Rust, we don't offer that conversion. You can implement it by checking how this is done for i64
:
https://github.com/boa-dev/boa/blob/e2630faf82a27e958d0ca6c9b1c81554bcc07ff3/boa_engine/src/value/mod.rs#L1003-L1008
-
Updated
Jul 26, 2021 - Go
Current, if we try to run a more recent Java class in an old JVM, we get the following error message:
Error: LinkageError occurred while loading main class some.Class
java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version; class=some/Class, offset=6
However, it is not so easily to detect that the class was compiled with a version above the supported by the JVM.Hotspot
-
Updated
Apr 28, 2022 - C
I have an idea for a new feature for jQuery Terminal
I think that to be correct the LICENSE file should include copyright notes from all projects that are included. And a copy of all licenses is inside that file.
All libraries from at the beginning of the jquery.terminal-src.js file should be looked up and
-
Updated
Apr 16, 2022 - Vim script
Scenario:
I have a project, with build tools of cmake, when I try to run it with cling. It prompts some headers are not included.
So I was wondering if there is a way to make use of the cmake script to load the build environment into cling and run directly?
Appreciate the great work!
-
Updated
Apr 28, 2022 - C
Current behavior:
root [0] TFile f("root://eospublic.cern.ch//eos/root-eos/benchmark/Run2012B_SingleMu.root")
Error in <TFile::TFile>: file /eos/root-eos/benchmark/Run2012B_SingleMu.root does not exist
(TFile &) Name: /eos/root-eos/benchmark/Run2012B_SingleMu.root Title:
Desirable behavior:
root [0] TFile f("root://eospublic.cern.ch//eos/root-eos/benchmark/Run2012B_Single
-
Updated
Apr 7, 2022 - C
-
Updated
Mar 24, 2022 - Go
Add a .clang-format
This is a config file for clang-format
, a tool that is already used by many editors and adopted by many projects to format the code and ensure that the style is consistent.
It could even be used as a git hook or in the CI/CD workflow to ensure that new patches respect the coding style.
A config can derive from other preexisting configs (like Google's, LLVM's or Mozilla's) so it's not a big eff
-
Updated
Feb 20, 2021 - Go
Improve this page
Add a description, image, and links to the interpreter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the interpreter topic, visit your repo's landing page and select "manage topics."
Feature
The name of
array.array
iterator has to bearray_iterator
butarrayiterator
in RustPython.Python Documentation
https://github.com/python/cpython/blob/3.8/Modules/arraymodule.c#L2993