Skip to content

Commit

Permalink
Scope Hoisting
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed May 21, 2017
1 parent aeb9683 commit 9b2a9fa
Show file tree
Hide file tree
Showing 52 changed files with 1,510 additions and 2 deletions.
463 changes: 463 additions & 0 deletions examples/scope-hoisting/README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions examples/scope-hoisting/build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("../build-common");
6 changes: 6 additions & 0 deletions examples/scope-hoisting/example.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { a, x, y } from "a";
import * as b from "b";

import("./lazy").then(function(lazy) {
console.log(a, b.a(), x, y, lazy.c, lazy.d.a, lazy.x, lazy.y);
});
Binary file added examples/scope-hoisting/graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions examples/scope-hoisting/graph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/scope-hoisting/graph2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions examples/scope-hoisting/graph2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/scope-hoisting/graph3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9b2a9fa

Please sign in to comment.