Trevor Sundberg
Trevor Sundberg
LDE incorrectly reads 0x48 as a single byte assembly instruction (x64) 0x48 as far as I understand is supposed to indicate qword and is part of a longer instruction. In...
See the README.md I added for notes about building and running. I'm very open to make changes or answer questions :)
I can't seem to find documentation on the specifics of the intrinsics. I know there are many uses of the intrinsics down stream so implementations may vary, however I'm looking...
For compiling under WebAssembly with the wasi-sdk / wasi-libc. Even though the platforms have many POSIX functions implemented, they do not have dlopen etc. This checks if the header exists,...
Compiling to WebAssembly with the wasi-sdk which uses wasi-libc, and has no thread support implemented yet. If there's a better way to do this let me know, as I attempted...
If you use `${workspaceFolder}` when specifying the `clangTidy.executable` path the variable is not resolved, for example `${workspaceFolder}/tools/llvm/bin/clang-tidy`. This is useful for cases when `clang-tidy` is installed locally within the work-space....
### Description [Description of the issue] When running a specific code in Scheme, the Studio application crashed. [Steps to reproduce] Run this code: ``` (set-bounds! [-10 -10 -10] [10 10...
```ts interface Something { [value: number]: any; } ``` Generates ```json "patternProperties": { "^[0-9.]+$": { ... } } ``` The regex `^[0-9.]+$` does not account for decimals or other valid...
The platform needs to expose a MarkAsModified function to the operating system. For most OSes this would do nothing, but for Emscripten this would set a flag that shows the...