Chunpeng Huo
Chunpeng Huo
A related issue around duplicated proto. ```js // FIXME: // async() (not a async function) has different code path. // Following should fail with duplicated proto. async ({__proto__: a, __proto__:...
```js for (async of => {}; i < 10; i++); // Valid code for (\u0061sync of list); // Escaped async is valid ```
Personally I hate ecma adding another syntax feature. This feature sounds it can be left to the JavaScript engine designer to figure out how to efficiently deal with the plain...
For focus trapping, I was using [Micromodal](https://github.com/ghosh/Micromodal) in my [aurelia-dialog-lite](https://github.com/aurelia-contrib/aurelia-dialog-lite). There are also https://github.com/theKashey/focus-lock and https://github.com/focus-trap/focus-trap. Their download counts are huge on npmjs.com.
When we tried gulp v5 with au2, we found out v5 has lots of issue with existing plugins. We cannot upgrade it yet.
Did you try it with gulp-typescript? It didn't work last time we tried.
With "with.bind" (another template controller), the view factory works differently. I can get rid of the error, but unfortunately cannot yet get reordering working. Need to study on au's view...
This is the same issue as repeating on template element. https://buttonwoodcx.github.io/doc-bcx-aurelia-dnd/reorderable-repeat/limitations With "with.bind" (a template controller), aurelia uses a template to render, which delays the rendering. The reorderable-repeat logic only...
I assume `xxx` is observing a computed property? I agree default behaviour should aim for maximum compatibility and least surprise, not aim for performance. Then allow users to override it...
I don't quite understand. Why should not contain `\r`? I don't think parser can remove parts from source, at least not from raw. For the comparison, did you turn on...