Alexander
Alexander
and, we have no ```get_child_node()``` function, we have ```myhtml_node_child()``` function
I think there's a bug with MyHTML_TREE_PARSE_FLAGS_SKIP_WHITESPACE_TOKEN flag
Hi @277hz If your patch is ready I can review it on Monday.
Hi @277hz Thanks for the work you've done. The patch above is the final version?
@277hz I looked at your patch, and before doing anything with spread, we need to implement [iterators and generators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators). This is what I am busy with now. After that, I'll...
@277hz Thank you for your big work! Before starting a joint review of your patch, I suggest [implementing generators](https://github.com/nginx/njs/issues/402) (no asynchrony). Spread is uses with [iterators and generators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators). After that...
@sly-roar @drsm @xbb123 @xeioex [Patch](https://gist.github.com/08dbde3d79f330b082fe1f3049212920).
@drsm Unfortunately, in the current architecture, we cannot solve closures problem: ```JS function x(a = 1, b = 1, c = () => a + b) { console.log(a, b); let...
@xbb123 Thank you for the performance test. Could you tell us how you test it and, please, show the test code?
Hi @tojamrok Yes, the size of the Encoding module scares me all the time. The problem here is that we need to search the table in two way: 1. Get...