Skip to content

Commit

Permalink
remove env::debugger that was breaking lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 18, 2019
1 parent 8886930 commit 0136ff4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
9 changes: 1 addition & 8 deletions dist/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* http://javascript.nwbox.com/ContentLoaded/
* http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE
*
* build: Sat, 18 May 2019 09:50:00 +0000
* build: Sat, 18 May 2019 09:50:58 +0000
*/
(function () {
'use strict';
Expand Down Expand Up @@ -3741,13 +3741,6 @@ function _typeof(obj) {
}).then(function () {});
}, "(load filename)\n\n Function fetch the file and evaluate its content as LIPS code."),
// ------------------------------------------------------------------
'debugger': doc(function () {
return new Promise(function (resolve) {
debugger;
resolve();
});
}, "(debugger)\n\n Function stops executing of LIPS code in dev tools debugger."),
// ------------------------------------------------------------------
'while': doc(new Macro('while', function (code, _ref8) {
var dynamic_scope = _ref8.dynamic_scope,
error = _ref8.error;
Expand Down
4 changes: 2 additions & 2 deletions dist/lips.min.js

Large diffs are not rendered by default.

9 changes: 0 additions & 9 deletions src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -2304,15 +2304,6 @@
Function fetch the file and evaluate its content as LIPS code.`),
// ------------------------------------------------------------------
'debugger': doc(function() {
return new Promise(resolve => {
debugger;
resolve();
});
}, `(debugger)
Function stops executing of LIPS code in dev tools debugger.`),
// ------------------------------------------------------------------
'while': doc(new Macro('while', function(code, { dynamic_scope, error }) {
var self = this;
var begin = new Pair(
Expand Down

0 comments on commit 0136ff4

Please sign in to comment.