-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feat/function call fixes #56
Conversation
The patch is too big for me to review and understand, but I can confirm that it fixes my test-case.
|
@prescod The reassigning of functions failed for a few pretty obscure reasons. I'll try and explain a little.
To make them skulpt functions I had to move them down in the load order so |
This fixes bugs as advertised. but changing We could of course change our module and ship, provided other third party modules we use like numpy, pygame.events, or sense_hat don't have hidden direct calls. But an unknown amount of third party module breakage would be a major impediment to getting this upstream, and with something this big I think we need it upstream if we're going to be able to accept future PRs to builtins, etc. And I don't think it's time for Skulpt 2.0. So at first glance I believe the solution would be to give Butterfly effects at every turn this far down. 🦋 |
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 believe we'll need to preserve the Sk.builtins
API.
@eah13 Eek you're right ... this sucks. Back to the drawing board. |
…ons real skulpt functions" This reverts commit 7ae494f.
Holy crap @eah13 this was a special one. 😄 but the end solution is a lot better. I wonder why we never thought of this. The changes to calling javascript functions from skulpt are a bit suspect still I will try and write some unittests around this. |
5b05bed
to
45171c7
Compare
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.
One small typo I think in fabs
(which shouldn't be in the builtins, but hey it's Skulpt).
You mentioned wanting to add tests as well? I think that would be good, especially ones that give kwargs
for builtins a workout. Maybe also some Sk.builtin
API tests to head off any third party module breakage.
src/constants.js
Outdated
Sk.builtin.sum.co_name = new Sk.builtin.str("sum"); | ||
Sk.builtin.zip.co_name = new Sk.builtin.str("zip"); | ||
Sk.builtin.abs.co_name = new Sk.builtin.str("abs"); | ||
Sk.builtin.abs.co_name = new Sk.builtin.str("fabs"); |
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.
Should this be .fabs
?
Maybe this could be refactored into an array of names and a for each? Might make it more maintainable if builtindict.js
could run off of that array as well.
@eah13 do you have an idea of how often it's used in trinkets? I'm pretty sure we can get this removed upstream. We could throw an Exception saying this function is deprecated and moved to the |
this does two things:
**kwargs
for javascript functions like thisThis fixes datetime.py and reassigning
abs
@prescod