Nikita-str

Results 11 issues of Nikita-str

Part of #313 TODO: File an issue for these completed features done (features from 7th to 14th inclusively from the issue): * Up/Down arrows inc/dec by 1, with `Shift` by...

The main idea is move \ into \. So for each execution branch would be reserved less stack memory. Current changes focused on case of parsing seq of repeated `Token::LParen`(`(...(`)...

Issue #999 Parse `window_name` in `OVER ([window_name] [PARTITION BY ..] [ORDER BY ..] ..)`

Fix to #1149 and some more. Allow to parse `[CONSTRAINT [name]] UNIQUE [INDEX | KEY] [index_name] [index_type] () [index_option]s ...` as it say in the [specification](https://dev.mysql.com/doc/refman/8.3/en/create-table.html). Also unallow `CONSTRAINT bar...

**Check List** - [x] Tests has been run in packages where changes made if available - [x] Linter has been run for changed code - [x] Tests for the changes...

pr:community

**Check List** - [x] Tests has been run in packages where changes made if available - [x] Linter has been run for changed code - [x] Tests for the changes...

pr:community

**Check List** - [x] Tests has been run in packages where changes made if available - [x] Linter has been run for changed code - [x] Tests for the changes...

pr:community

This Pull Request closes #3874 **Notes** * I don't sure about conversion of `HashMap` into `JsObject`. Should it be converted into `JsMap` or into ordinary object `{ k1: v1, ...,...

enhancement
API

Seems like `TryFromJs` didn't convert correctly from `JsMap` into `HashMap` / `BtreeMap` This PR fix it **Example** Next code ```Rust use boa_engine::{value::TryFromJs, Context, JsResult, Source}; use std::collections::HashMap; fn main() ->...

This Pull Request closes #4089 Reduce the stack size. Mostly affected expression with nested parenthesizes. Some examples & comparison charts ```rust fn parenthesized_fn_test() { let n = ...; let js...