Joseph Pecoraro

Results 10 issues of Joseph Pecoraro

## Syntax: New NumericLiteral syntax with a `n` suffix. Only decimal numbers with a suffix are valid. LegacyOctal or leading zeros are not valid. ```js 123n ``` Grammar changes are...

## Syntax: New NumericLiteral syntax that allows for an `_` separator in numbers. ```js let fee = 123_00; // $123 (12300 cents, apparently) let fee = 12_300; // $12,300 (woah,...

### Describe the bug `vertical_whitespace_between_cases` does not play nicely with `#if` guards, unexpectedly inserts an extra newline inside the guard. ### Environment ```yml disabled_rules: - switch_case_alignment opt_in_rules: - vertical_whitespace_between_cases ```...

bug

The history search state is not reset with ^C. So if you use ^C to cancel out of a command and repeat the previous substring search you end up with...

need more info

`console.takeHeapSnapshot` is available in some browsers, so it should be standardized. Edge had it originally and describe it in their [documentation here](https://msdn.microsoft.com/en-us/library/jj819176.aspx) and [over here](https://msdn.microsoft.com/en-us/library/windows/apps/jj819176(v=vs.120).aspx#JSConsoleCommands) for debugging JavaScript Memory in...

**Adds:** `cl_smartspawn` - `0` disabled (default) - `1` enabled **Description:** When dead, `+attack` will spawn and immediately `-attack` to prevent weapon firing when spawning. **Rationale:** A best practice is to...

On OS X, Option+Key no longer works. 1. Show console 2. Type "this" without option produces white text "this" 3. Type "this" holding option produces garbage Expected Typing "this" holding...

macos-only

unezQuake sends `say_team` messages with "#inlay#" which is incompatible with the limited `filter` system of ezQuake. Ignore these messages like we ignore Qizmo messages.

I have a typical starter pack (3 bulbs). I have a few Scenes in the Hue App that are "2 bulbs one 1 off" and even "1 bulb on and...

https://en.cppreference.com/w/cpp/language/integer_literal * Allow for `z` for `size_t` with C++23 / C++2b. * Allow for the `u` to be either before or after the `l`, `ll`, or `z`. * Allow for...