Iván Velencoso
Iván Velencoso
> Comes from here https://github.com/benjamn/ast-types/issues/80 This is a work in progress but already seems to be a valid way to greatly improve the performance of the traversal. It's very close...
Derived from the discussion on #80 it seemed clear to me that even if optimising the `PathVisitor` is something to look forward to, some use cases do not even need...
block expressions inside instance methods should generated code with `this` bound to the original `self` for the instance. ``` class Foo: _field = 'field' def getIt(): return { x |...
Array addition still uses the standard runtime helper (`RuntimeServices.AddArrays`), it should target our `Boo.Array.op_Addition` runtime helper. see arrays/array-28.boo
slicing gets transformed to the `slice` runtime, when working with multi dimensional arrays we need allow slicing on the result of the `slice` operation see arrays/array-25.boo
Nested generators are processed but the transformed result is not present in the generated code. see generators/yield-10.boo
closures target Boo's compiler generated closure class when recursing (see boojs/recursive-closure.boo)
Just wanted to spread the word that it's possible to get audio input working by using VoodooHDA instead of AppleALC. What I did was install these extensions: - [VoodooHDA](https://sourceforge.net/projects/voodoohda/) -...
To be able to use the final values obtained by the solarized color scheme in user customizations, the local variables fg_xxx, bg_xxx and fmt_xxx are exported in a new global...