Brett Vickers

Results 39 comments of Brett Vickers

Does the `namespace-uri` feature not work in this case? For example: ```go fmt.Printf("%+v\n", doc.FindElements("//b[namespace-uri()='foo']")) fmt.Printf("%+v\n", doc.FindElements("//b[namespace-uri()='bar']")) ```

Below is a slightly modified version of your example: ```xml ``` The namespace prefix `x` is defined as `foo` at the `root` element's scope. It is then redefined in the...

This pull-request has full support for '|' in filters and selectors. I am not ready to merge it, however, because it needs some serious optimization.

It works, but it generates way more garbage than I am comfortable with. I've been debating whether the additional garbage is worth the relatively limited set of new features this...

Thanks for doing this! (And sorry for the late response.) I am definitely going to check this out.

It appears the compiled version of the 65c02 test (the `6502_functional_test.bin` file) expects the Rockwell and WDC 65c02 instructions to be implemented. Unfortunately, I did not implement these. Shouldn't be...

@chromi This simulator implements the TSB and TRB instructions, but it's missing the BBR and BBS instructions, which were the ones causing the test in question to fail.

Thanks for the response. I'm not surprised that adding an incremental or generational garbage collector is a lot of work. Another question. How does ref-counting reduce the need to traverse...

@fatcerberus I see. But any objects that haven't been garbage collected (by refcounting) by the time mark-and-sweep happens will need to be considered by the mark-and-sweep algorithm, correct? In other...

>Regarding your use case, is it feasible to disable DUK_USE_VOLUNTARY_GC and request manual GC in suitable locations (say when entering menus, etc)? This depends quite heavily on the application at...