Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAnalyze for elidable LoadModules in JS desugaring #1593
Comments
@sjrd Is there any good testkit project that will allow me to test both the scjsir compiler and the JS emitters in tools.javascript together? I'm having issues finding a test project that has access to both classpaths |
The tools are part of the Build itself. Just |
@colinrgodsey We currently do not have unit tests for the tools. You could start adding unit tests in If you feel fancy you can also write a little shim for JUnit and Jasmine so that you can run the tools unit tests in both environments... |
@gzm0 cool, just wanted to make sure i wasnt missing any components. I m probably going to see if i can make something similar to the JSASTTest, as I'm mostly going to be fiddling with the desugaring and want to verify the javascript.Trees |
note- I have a PR done, just need to clean it up before i submit it |
Branching from discussion in #1588
WIP - master...colinrgodsey:wip-loadmodule-2
Intent
Alter the behavior of JSDesugring to omit unnecessary module load calls in emitted js.
Goals
Actions