diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-30 17:21:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 17:21:31 -0500 |
commit | 00597ffde1ebb05a6c60ea7e09e6578c11f92820 (patch) | |
tree | 849b6b22c07ed38a4b424c363c06435ea2de4fa9 /tests/circular2.js | |
parent | 7d278a0383ce634f4fa3dd792e9b202582a6fde1 (diff) |
Refactor libdeno ES module interface. (#1624)
Allows for future asynchronous module loading.
Add support for import.meta.url
Fixes #1496
Diffstat (limited to 'tests/circular2.js')
-rw-r--r-- | tests/circular2.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/circular2.js b/tests/circular2.js new file mode 100644 index 000000000..3d3136a0d --- /dev/null +++ b/tests/circular2.js @@ -0,0 +1,2 @@ +import "circular1.js"; +console.log("circular2"); |