Skip to content

Commit

Permalink
coffee-script to coffeescript
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Mar 7, 2018
1 parent 1880db7 commit 78a6164
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/out-expected/litcoffee-to-js.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
(function() {
// The **Scope** class regulates lexical scoping within CoffeeScript. As you
// generate code, you create a tree of scopes in the same shape as the nested
// function bodies. Each scope knows about the variables declared within it,
// and has a reference to its parent enclosing scope. In this way, we know which
// variables are new and need to be declared with `var`, and which are shared
// with external scopes.

// Import the helpers we plan to use.
var a;

a = require('./helpers');
Expand Down
8 changes: 8 additions & 0 deletions test/out-expected/md-to-js.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
(function() {
// The **Scope** class regulates lexical scoping within CoffeeScript. As you
// generate code, you create a tree of scopes in the same shape as the nested
// function bodies. Each scope knows about the variables declared within it,
// and has a reference to its parent enclosing scope. In this way, we know which
// variables are new and need to be declared with `var`, and which are shared
// with external scopes.

// Import the helpers we plan to use.
var a;

a = require('./helpers');
Expand Down

0 comments on commit 78a6164

Please sign in to comment.