-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance Color #71
Enhance Color #71
Changes from 9 commits
6d5a40e
8260371
b15db13
fbe9aa6
6fcb520
c2b22a2
7a074f6
334436e
95c69e5
1dd95c4
dab1c48
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ pub fn instantiate_expression_table<R: 'static + RenderContext>() -> HashMap<usi | |
{% endif %} | ||
|
||
TypesCoproduct::{{ expression_spec.pascalized_return_type }}( | ||
{{ expression_spec.output_statement }} | ||
{{ expression_spec.output_statement }}.into() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe this is problematic. I set up repro here: I started with your branch, rebased off of You should be able to reproduce by pulling the branch
This is on the range expression |
||
) | ||
})); | ||
{% endfor %} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure this code path is being hit. When I try
fill={hlc((ticks + i * 360.0 * 3)%, 50%, 50%)}
in the Fireworks example, I get an error:My best guess from a quick look is that we might be short-circuiting this on line 211 of this file: https://github.com/pax-lang/pax/pull/71/files#diff-3bfd18387cf178bec2da888bfa3aadadd3de4522ed242e2b303877b0a3dcb855R211 , but the issue might be something else entirely.