jackschu
jackschu
## Bug Description If node closes a http2stream with `NGHTTP2_INTERNAL_ERROR`, the `await dispatch` in httpNetworkFetch() in fetch/index.js will never resolve ## Reproducible By The tricky part about reproducing is understandably...
## Checklist - [x] I have searched both open and closed issues and cannot find a duplicate. - [x] I can [reproduce the problem](https://github.com/ananthakumaran/tide/wiki/Explanations-about-the-Issue-Reporting-Checklist#use-the-latest-version-of-the-relevant-packages) with the latest version of the...
```javascript 1 .2 ``` was resulting in ``` program [0, 0] - [2, 0] ERROR [0, 0] - [1, 1] number [0, 0] - [0, 1] expression_statement [1, 1] -...
## Problem Today the following piece of code is valid but it is parsed incorrectly: ```javascript class C { name/*comment*/() { } } ``` [Here's a link to the TypeScript...
The following piece of code is valid but it is parsed incorrectly: ```typescript ``` Here's a link to the TypeScript Playground showing that the snippet above is valid JavaScript or...
The following piece of code is valid but it is parsed incorrectly: ```javascript export default function() {} ``` [Here's a link](https://www.typescriptlang.org/play/?#code/KYDwDg9gTgLgBAE2AMwIYFcA29noHYDGMAlhHgBQCUcA3gL5A) to the TypeScript Playground showing that the snippet above...
The following piece of code is valid but it is parsed incorrectly: ```javascript function foo() { return /**/ 1; } ``` Here's a link to the TypeScript Playground showing that...
The following piece of code is valid but it is parsed incorrectly: ```javascript foo`\x` ``` Here's a [link to the TypeScript Playground](https://www.typescriptlang.org/play/?filetype=js#code/MYewdgzgLgBAZiEMC8MAUBDATgcwgShQD4ZRIQAbAUwDoKQdNcCBuAKARAAMAdADy5A) showing that the snippet above is valid JavaScript...
Closes #334 ## Background understanding (FYI i'm using `'` as a backtick in in-line code blocks for convenience, whenever i use single-quote, i mean backtick) Tagged templates have operator precedence...
## Problem ### Observed The following parses incorrectly ```js ()=>{} (1) ``` Without this changeset, the grammar treats this as an arrow function that is being invoked. ``` (program [0,...