-
Before:
```go
if x := 1; true {
} else if y := x; true { // apply refactor.extract.variable to x
}
```
After:
```go
x1 := x // error: undefined x
if x := 1; true {
} else if y :…
-
### Version
4.5.7
### Context
Rx Version of OAuth2AuthHandler Handler fails to send correct scopes. This happens because during initialization of the OAuth2AuthHandler object new instance is …
-
Hey, I have an issue with this plugin, specifically when using animations/keyframes, and also Tailwinds animations.
With the following code (copied from Tailwind to reproduce issue):
```css
@keyf…
-
The `libwxbase3.0-dev` is installed:
`libwxbase3.0-dev/jammy,now 3.0.5.1+dfsg-4 amd64 [installed]`
But I'm having the following issues when trying to compile the tool on Ubuntu 22.04:
```
$ cmake …
-
### Summary of Problem
A few uses of a scoped enum with an offset fail to compile, when I
think they should work.
### Steps to Reproduce
**Source Code:**
[ edit 7/19/2024 cassella -- only…
-
Currently all vars in a scope are created in one block. e.g.:
```js
// Input
const x = 1, y = 2;
export default [
() => x,
() => y
];
```
```js
// Output
export default ( (x, y) => …
-
Input:
```js
export default let fn;
{
const a = 1;
{
const b = 2;
{
const c = 3;
fn = function f() { return [a, b, c]; };
}
}
}
```
Serialized output cu…
-
### Pitch
When replying to a toot, the default option would be to verbatim copy the `to:` and `cc:` fields.
### Motivation
There's a problem that results in broken threads: user A mak…
-
### Pitch
Different ActivityPub implementations use `to`/`cc` addressing with different semantics. Reintroducing `mastodon:scope` would allow us to know what is explicitly intended to be a DM, fol…
-
We have the next set up:
``` ruby
class Video < ApplicationRecord
has_many :posters, -> { where(:kind => 0) },
:as => :assetable, :class_name => "AssetImage", :dependent => :destroy
has_m…