-
### Describe the bug
The namespace generated for arrow functions of `then` handler do not generate namespaces correctly.
![image](https://user-images.githubusercontent.com/29531824/105695509-da3…
-
Written on 05/31/2016 14:35:05
URL: https://dmitripavlutin.com/when-not-to-use-arrow-functions-in-javascript/
-
This code results in broken syntax highlighting for all following code in the file:
```jsx
const foo = (x: Foo) => {
return x + x;
};
```
I have found that this workaround fixes it:
```…
-
We can refer other meta properties in arrow functions, for example:
```js
function X() {
return () => new.target
}
new X()() // X
```
Shall we also allow it for `function.sent`?
Possible…
-
**Input**
```
console.log(()=>'foo')
```
**Output**
```
console.log(_=>'foo')
```
This one should be pretty easy to implement, we just need a variable name that is not used in the same con…
-
``` javascript
var a = (@Ann a:number):string => {};
```
```
traceured.js:1:10: Unexpected token @
traceured.js:1:16: Unexpected token :
traceured.js:1:24: Semi-colon expected
traceured.js:1:24: Unex…
-
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
DataFusion has an optimized version of `concat(col1, ...)` for `StringView` added by @devan…
alamb updated
1 month ago
-
### Describe the enhancement requested
When dealing with #43495, I found that the current AVX2 specialized swiss join functions in [1] are not wired anywhere. (Please correct me if anyone sees them w…
-
It would be great to have an option not to inline a single-line function, even if the line length allows it.
This will be useful, for example, when a single-line arrow functions are not used in pla…
-
**Describe the bug**
Doesn't expire cached items prop with functions
**To Reproduce**
Pass function to `onPress` in `items`
Even though you can pass updated items - it's cache on the lib side
…