Lach

Results 223 comments of Lach

Typescript can be used with babel: https://babeljs.io/docs/en/next/babel-plugin-transform-typescript.html

Also, typings can be written in separate .ts.d files, but this is harder to maintain (Need to change both js and .ts.d for i.e adding/renaming/removing method/field)

May be better way is to optimize physics?)

I reduced scope of this PR, because currently i stuck at some bits of multiple transports support, feel free to merge this as partially finished work, i will commit more...

There is new prerelease available on `gcmodule` branch and here: https://github.com/CertainLach/jrsonnet/releases/tag/v0.5.0-gcmodule-test It can't be uploaded to crates.io now, because it depends on git dependencies (forks of serde-json and gcmodule), i...

Static linked instructions is not included in README.md, as this is platform-dependent thing in Rust For x86 linux - this is just `cargo build --release --target=x86_64-unknown-linux-musl`, for windows this is...

Running `cargo build` inside of workspace will build all projects in workspace, and there is `bindings/jsonnet` subproject, which is implementation of `libjsonnet.so` Dynamic libraries (.so) can't be build statically with...

В #510 некорректный подсчёт размеров `let size = if ::is_simple() { Some(0 $(+aligned_size(sp_std::mem::size_of::()))+) } else { None };` Вместо этого кода нужно добавить метод `size_words(&self)` в AbiRead, который возвращает сколько...

Example from top post can be done in latest nightly via `min_specialization`, `negative_impls`, `auto_traits` and `never_type`: ```rust auto trait NotNever {} impl !NotNever for ! {} trait MyFrom { fn...