Vse Mozhe Buty

Results 43 comments of Vse Mozhe Buty

Still out of scope and no workaround?

I've checked on Windows 7 x64 with Node.js 08.12.0, 10.13.0, 11.1.0, 12.0.0 nightly and v8-canary + carlo 0.9.15. All variations hang. Can anybody reproduce?

What about [`NODE_OPTIONS`](https://nodejs.org/api/cli.html#cli_node_options_options) env variable? It seems it supports `--max-old-space-size`.

For the last Canary build for Windows (as of 2019-01-02), yes, the issue still exists.

Not sure why, but the lists of permissions in [`browserContext.overridePermissions(origin, permissions)`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#browsercontextoverridepermissionsorigin-permissions) and [Chrome DevTools Protocol `PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser#type-PermissionType) now differ. The latter does not include `push`. It seems this is still an...

@Jemaz It seems this function uses the global variable that is declared below in that code fragment: ```js //... const nolanMovieList = []; console.log(titles()); // ... ```

@Jemaz About formatting, you can read here: https://help.github.com/articles/creating-and-highlighting-code-blocks/ Just use `js` or `javascript` label instead of `ruby` from the example in that help chapter)

@Jemaz I suppose both using the global variable and omitting the `return` are intended to show how a not pure function operates. It is a bit dizzying from the final...

What was a bit more confusing for me: why the final `byNolan()` was not refactoring into the more generic `byDirector(director)`. But this can also be intended to make the transition...

I would rather say: "I have a rule where `abcc` is forbidden because `c` is disallowed as a lookahead for a `c` in a rule about `abc`. When it complains,...