-
Notifications
You must be signed in to change notification settings - Fork 583
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
Move Object assign, is and mixin to polyfill directory #1022
Conversation
Move these method out of runtime.js See google#1007
@johnjbarton Depends on #1021 |
@johnjbarton @arv Is there any reason the runtime can't exist as a collection of ES6 modules with explicit inter-dependency? Then perhaps a build task for producing a stand alone compiled version. |
We think so. But it's also a bit funky: the user's code has secret imports Try one, let's find out. On Wed, May 14, 2014 at 4:08 PM, Matthew Robb [email protected]:
|
I'm saying that for now, at first, just make a decision that isn't given to the user as an option. That way at the very least you can reasonably see the dependency graph in the source files. Then add a make task for building out to a single runtime including transcompiling from modules |
To try to interpret what you are proposing: convert the runtime files to Is that your suggestion? On Wed, May 14, 2014 at 4:19 PM, Matthew Robb [email protected]:
|
Basically, if I am understanding your summary, yes. Phase 1: Break out dependencies into modules EDIT: EDIT (again): |
Phase 0: verify that we can create a bin/traceur.js from On Wed, May 14, 2014 at 4:31 PM, Matthew Robb [email protected]:
|
@matthewrobb please open an issue or find one existing for modular runtime (I guess there may be a couple) and put your suggestion there. This PR will not be tracked soon.... |
Move these method out of runtime.js
See #1007