Fee0

Results 8 issues of Fee0

The kaitai compiler creates a parser from the ksy grammar which allows to give a nice visual representation, e.g. the object tree in the kaitai ide. I would like to...

It would be nice to be able to display some hierarchical data like a file/folder structure. Something similar to what AG-Grid is doing here: https://www.ag-grid.com/javascript-data-grid/server-side-model-tree-data/ Data hierarchy is represented like...

feature request

Can I use gimli to patch some stuff in the eh_frame section of an executable? I saw there are two different structs for e.g. CIE's for read and write. So...

I would like to have support for the operators coming with ES2020 (https://www.w3schools.com/jS/js_2020.asp): - The Nullish Coalescing Operator (??) - The Optional Chaining Operator (?.) - Logical AND Assignment Operator...

for normal indexing, computed indexing and function calls

It seems the lifetime of an AST is entangled with the parser itself: ``` pub fn js_to_ast(js: &str) -> Program { let mut p = Parser::new(js).unwrap(); let ast = p.parse().unwrap();...

Following syntax seems to be not supported: `export * as A from "M";` Tested on source location branch

not sure if skipping ahead and then skipping back is the best solution here