Claire Foster

Results 128 issues of Claire Foster

While implementing #105 the issue of `map` vs `broadcast` for FSA operations came up. The FSA map already does some broadcast with scalars, and we should probably be extending it...

With julia-0.4.5, the recently added type inference tests fail due to a remaining Any which has not been optimized out. I started hacking around this and got a bit carried...

Hey @louisponet, a while back I said I'd write something about my experience using Overseer. With the discussion about trying it out for Makie (or other "serious" projects?) I thought...

Here's timestamps for my talk for this year. I've already contributed captions for this separately.

I just got the following inscrutable message on stdout while using Revise, and tracked it to `LoweredCodeUtils`: ``` ref = :(_1) typeof(ref) = Core.SlotNumber ``` Presumably this was emitted by...

I got inspired to implement #432 as suggested there... This should be a complete implementation of that proposed solution, but may still need experimentation/thought to decide whether Cartesian iteration should...

AST
breaking

There are four macrocalls to special `Kind`s which are arguably premature lowering. ``` K"core_@cmd" K"core_@int128_str" K"core_@uint128_str" K"core_@big_str" ``` In the same way that we removed `K"core_@doc` previously (see #217), these...

AST
breaking

There's been something niggling at me about the way iteration is represented in the AST. Currently we have the following parsing: ```julia julia> parsestmt(SyntaxNode, """ for x = xs body...

AST
breaking