-
It'd be nice to have a capability to transpile grammars into source code in-memory, without touching storage, via API.
I have even created a PR about that (#2774), but it has been rejected because …
-
Part of #67
It's vanilla javascript at the moment, so it can be hard to spot potential runtime errors while making changes.
Convert it to typescript. Don't convert dispatchLambda, let's just leave …
-
From https://blog.sapegin.me/til/javascript/transpiling-esm-in-node-modules/
Add to `prepare` script `&& node .config/scripts/esmtocjs.js`
```js
// https://blog.sapegin.me/til/javascript/transp…
-
We briefly discussed fast transpilation tools in https://github.com/isaacs/tshy/issues/31, and with `isolatedDeclarations` I think it is worth revisiting. I know this option and its surrounding featur…
-
This code:
```c
int result = 0;
if (result > 0x7fff)
result -= 0x10000L;
```
got transpiled into this rust code on x64 linux:
```rust
let mut result: libc::c_int = 0i32;
…
-
My config works fine in Chrome, but in PhantomJS, as soon as I try to import an ES6 class in my spec files, karma spits out a not-so-helpful `Attempting to configurable [sic] attribute of unconfigurab…
-
Currently, TS transpilation process converts TS source files into CommonJS modules compatible with older NodeJS versions. The problem is that such structure doesn't support bundler's (e.g. WebPack, Ro…
-
I spotted this issue while trying to replace babel-register w/ esbuild-register in the Yarn codebase.
**x.js**
```ts
import {y} from './y';
export function x() {
y();
}
```
**y.js**
…
-
### What is the problem this feature would solve?
Comments like this one are currently stripped out:
![image](https://user-images.githubusercontent.com/175350/226378708-93e62730-4c7f-4c8b-978c-3fcdd…
-
https://mypyc.readthedocs.io/en/latest/introduction.html#introduction
Requires type hinting