Skip to content

Commit

Permalink
fix string interpolation in REPL #321
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 13, 2024
1 parent 19abe58 commit a2cf71a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
9 changes: 5 additions & 4 deletions dist/lips.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions dist/lips.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/lips.esm.min.js

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions dist/lips.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/lips.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,7 @@ class Lexer {
var found = this.next_token();
if (found) {
this._token = this.__input__.substring(this._i, this._next);
read_only(this, '__token__', this.token(true));
return this.token(meta);
}
return eof;
Expand Down

0 comments on commit a2cf71a

Please sign in to comment.