Add region to reflect
Closed this issue · 0 comments
rktjmp commented
Given
(fn a [] :a)
(fn b [] :b)
(fn c [] :c)
(print (a) (c))
You must add the entire region to test (print (a) (b))
which can be frustrating in large files or contexts (mostly around module-wide imports).
Allow adding non-contiguous regions to reflects evaluator, so that this would be possible
+ (fn a [] :a)
(fn b [] :b)
+ (fn c [] :c)
+
+ (print (a) (c))
Bonus: add regions from other files?