Results 111 issues of 阿豪

POC: ```js var a =[]; a[0]=a; var b = a.join(','); ```

```rs Files::new("/", EXAMPLES_DIR) .path_filter(|n, _| { println!("{:?}", n); let s = n.to_str().unwrap(); if s == "lib.rs" || s == "" { true } else { false } }) .show_files_listing(), ```...

C-improvement
good-first-issue
A-files

The current release platform only supports Mac and Linux, please support Windows. ``` targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin"] ```

Using llvm-15 as an alternative option runs successfully. https://github.com/immunant/c2rust/issues/1042 ``` apt install llvm-15 clang-15 libclang-15-dev -y LLVM_CONFIG_PATH=llvm-config-15 LIBCLANG_PATH=/usr/lib/llvm-15/lib/libclang.so cargo install c2rust ``` ## Error log [log,txt](https://github.com/immunant/c2rust/files/13538435/log.txt)

building

``` c2rust --version C2Rust 0.18.0 (2023-12-03) ``` ## C ```c #include int main() { const char *volatile str = NULL; int c = (unsigned char)*str++; return 0; } ``` ##...

bug

Currently, libc functions are individually imported in each file. If there is a need to replace a particular function, modifications are required in all files using it. Consolidating all libc...

## Description Referencing the site [website](https://beautifulwebtype.com/fira-code/glyphs/?i=1), adding glyphName, glyph, htmlCode, cssCode to the glyph inspector for easy copying. Due to no response on https://github.com/opentypejs/opentype.js/pull/586, I separately submitted this PR. For...

You can quickly find the desired glyph within a font by searching or filtering through its glyph names. ```js [...font.glyphs].filter(i=>i.name.includes('close')).map(i=>i.index) ```

This Pull Request reuses deno's console implementation with the following changes: 1. Global function __boa_no_color controls whether the output contains color information. 2. Global function __boa_print is used for outputting...

builtins
waiting-on-author

**Describe the bug** Function name cannot be reassigned in it's scope. **To Reproduce** ``` boa ./main.js Uncaught TypeError: cannot mutate an immutable binding 'fn' ``` ```js "use strict"; function fn()...

bug