File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 11( function ( ) {
2+ // The **Scope** class regulates lexical scoping within CoffeeScript. As you
3+ // generate code, you create a tree of scopes in the same shape as the nested
4+ // function bodies. Each scope knows about the variables declared within it,
5+ // and has a reference to its parent enclosing scope. In this way, we know which
6+ // variables are new and need to be declared with `var`, and which are shared
7+ // with external scopes.
8+
9+ // Import the helpers we plan to use.
210 var a ;
311
412 a = require ( './helpers' ) ;
Original file line number Diff line number Diff line change 11( function ( ) {
2+ // The **Scope** class regulates lexical scoping within CoffeeScript. As you
3+ // generate code, you create a tree of scopes in the same shape as the nested
4+ // function bodies. Each scope knows about the variables declared within it,
5+ // and has a reference to its parent enclosing scope. In this way, we know which
6+ // variables are new and need to be declared with `var`, and which are shared
7+ // with external scopes.
8+
9+ // Import the helpers we plan to use.
210 var a ;
311
412 a = require ( './helpers' ) ;
You can’t perform that action at this time.
0 commit comments