Mason Protter

Results 233 comments of Mason Protter

Now that we have package extensions, and weak deps, could we revive this?

This isn't a huge deal but I thought I'd chime in: I sometimes find it helpful to be able to send code while in other REPL modes, especially since I...

Yes. As a more realistic example, I’ve been playing around lately with creating my own repl modes for DSLs and so it’s helpful to just open my special repl mode...

@tpapp Interestingly, if I use `julia-repl` to send code to the `pkg>` repl mode, the command does not get run unless I press enter again in the term buffer. Do...

Oops, thanks. The `@async` block is not necessary, but nice because it can get you into the REPL quicker if the startup takes a while.

Jeeze @c42f I'm really sorry I never acted on this way back when, I must have forgotten or missed it. Do you have any ideas as to why the CI...

@ORBAT the macroexpansion of `@traits` has a `try/catch` block in it. ```julia julia> @macroexpand1 @traits f(x) = x quote function f(a1::T1; kwargs...) where T1 #= REPL[4]:1 =# #= /home/mason/.julia/packages/WhereTraits/BCLdf/src/Syntax/Rendering.jl:211 =#...

Hey @nsajko I’ve finally got the test suite working. Could you rebase on Master? That should get all tests passing and then I can merge.

Here's what I do to make this work: ```julia mutable struct Prog N::Int @atomic count::Int end Prog(N) = Prog(N, 0) inc!(p::Prog) = @atomic p.count += 1 macro inc(p) quote local...