Gert Hulselmans

Results 95 issues of Gert Hulselmans

Consider PEG parser for parsing AWK grammar. `posixutils-rs` has an `awk` implementation which uses pest for parsing the AWK grammar: https://github.com/rustcoreutils/posixutils-rs/blob/main/awk/grammar.pest

Update Cranelift to 0.123.2: - `is_pic` option needs to be false for jit from Cranelift 0.122.0: https://github.com/bytecodealliance/wasmtime/issues/2735 - `declare_var(type)` will now return a new variable entity and the variable does...

Use ordermap instead of hashmap for backing arrays as this allows iterating over arrays in a for loop in insertion order, like gawk.

String format specifiers do not work with cranelift backend: ```bash $ frawk -Binterp 'BEGIN { printf("%s", "test"); }' test $ frawk -Bcranelift 'BEGIN { printf("%s", "test"); }' failure in runtime...

Overriding number of fields does not clear extra fields. ```bash $ cat /tmp/countries Russia 8650 262 Asia Canada 3852 24 North America China 3692 866 Asia USA 3615 219 North...