Fee0
Fee0
found some code that does not parse correctly: ``` function a(t){ return 'normal' === t?.123:'fast' === t?.321:t } ``` it seems this is a ternary operator + specification of a...
Ah, I thought its actually from my RESSA code. I gave it a try to fix this: https://github.com/rusty-ecma/RESS/pull/101
awesome @FreeMasen ! What are your doubts about optional chaining? Can we get some inspiration from other projects for this? E.g. [https://github.com/swc-project/swc/blob/c4230373e4379edbadf2aa0a5381bf18b1746bb9/crates/swc_ecma_compat_es2022/src/optional_chaining_impl.rs](url) ?
uh agree this operator can be thrown into many places which makes it difficult to represent as `Expr`. Makes sense to handle it individually then. For the function call we...
Made a try to finish the optional chaining: - ressa: https://github.com/rusty-ecma/RESSA/pull/93 - resast: https://github.com/rusty-ecma/resast/pull/13 What do you think?
What I did now is estimate the repo size before letting trufflehog do the clone/scan. Every repo has a size field but its quite different from the size of the...