-
-
Save sloppyjuicy/e7da1dda64e87f3b62e65c04a3cbe7da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import "./mod_a.js"; | |
| await 0; | |
| import "./mod_b.js"; | |
| const React = { | |
| createElement(...args) { console.log(this, ...args); return new String("ReactElement"); } | |
| }; | |
| const foo = (...args) => { console.log(this, ...args); return "FooEl"; }; | |
| console.log(<foo>a ${111} {222} $c</foo>); | |
| console.log("bar"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("in mod_a.js"); | |
| import "./mod_c.js"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("in mod_b.js"); | |
| import "./mod_c.js"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("in mod_c.js"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment