Nikita-str
Nikita-str
@Keavon * `Unit conversions in the input boxes`: Maybe make unit input as another dropdown list element? `| ← value → | unit |` And in case when it can...
I do the split, but now I'm unsure that it was good idea, because MySql [specification](https://dev.mysql.com/doc/refman/8.3/en/create-table.html) say that there no `[index_name]` in `PRIMARY KEY` variant but actually compiler take `CREATE...
Also during last changes I add some [functions](https://github.com/sqlparser-rs/sqlparser-rs/pull/1164/commits/ff5b136d77e5b287349fe65b54f1b9f8bdea5a0a#diff-ea0460af06320c3ef6a3778d344251fd254ddd6f04169e29ddda9b77dba4d010R1040-R1068) like `display_constraint_name` but for `Option`. For example instead next ```rust if let Some(exclude) = &self.opt_exclude { write!(f, " {exclude}")?; } if let...
In short, on local machine `stack_overflow` in `parse_deeply_nested_parens_hits_recursion_limits` test fixed. It panics in debug build only after `const DEFAULT_REMAINING_DEPTH: usize = 125;`.
@alamb first of all, should I do something with `parse_deeply_nested_parens_hits_recursion_limits` test? Because locally it's failed with `stack overflow` even in main branch. All others test result is `ok`.
@alamb do you suggest to change `const DEFAULT_REMAINING_DEPTH: usize = 50;` in `src\parser\mod.rs` to `40` for example? Maybe it's better to wrap this test code into new thread with bigger...
> Maybe we can do it in a separate PR -- any chance you are willing to do so? Ok, I will do it, ~~at least by wrapping in new...
There no bug, you use [newline skipping](https://doc.rust-lang.org/reference/tokens.html#:~:text=Line%2Dbreaks%20are,characters%20are%20ignored.): >When an unescaped U+005C character (\) occurs immediately before a line break, then the line break character(s), and all immediately following (U+0020), \t...
Is it ok to add in [Cursor](https://github.com/boa-dev/boa/blob/main/core/parser/src/parser/cursor/mod.rs#L25) a fields that will collect `source_text: Vec` when callable is parsing (if nested callable is parsing then it just will take slice of...
Hmm, do I understand you correctly: collect ALL the source code, and use it whenever we need some part of initial code (e.g. name of functions, string literals, and function...