Unboxed tuples #186
No reviewers
Labels
No Label
blocked: dependency
blocked: info-needed
bug
duplicate
enhancement
fixed in HEAD
help wanted
hs:arrows
hs:brackets
hs:classes
hs:comments
hs:do-notation
hs:guards
hs:lists
hs:operators
hs:patterns
hs:records
hs:types
invalid
language extension support
layouting
needs confirmation
priority: high
priority: low
question
revisit before next release
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: hexagoxel/brittany#186
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "unboxed-tuples"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
I noticed that indenting snipptes like
will produce output like
which is invalid. I decided to put spaces around delimiters in
(#...#)
unconditionally to avoid having to check whether names have hashes. This style also seems more prevalent from my non-representative sample.I also enabled running literate tests in parallel on my machine and though it could be useful for others. Please let me know what you thing about using all available cores to run the tests.
I think doing this unconditionally is pretty common style anyway, so I think this is a good change
Thanks! I agree that it makes sense to consistently use spaces for unboxed tuples.
I have pushed another commit with minor cleanups. Should be ready to merge.
Regarding the parallel testing, I am a bit confused about the failing test. The failure indicates a performance issue (and might be due to heavy load on travis) but then it is for a testsuite that you did not even touch. Plus it is only new-build that is failing, so I wonder if new-build is just somehow picking up the flag or running entire suits in parallel or something. Maybe I have to force serial test execution via
-j1
for new-build on travis? If all that does not work I might prefer to revert that bit, but let's see first.