Skip to content

Commit

Permalink
+little fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
Iuriiiii committed Oct 16, 2022
1 parent 653b7a7 commit 92a198d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinyml-core",
"version": "2.0.7",
"version": "2.0.8",
"description": "TinyML-syntax parser",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ var Core;
context.pure++;
else
raws = raws.slice(0, lastNonSpaceTokenIndex);
console.log('>>>', raws, lastNonSpaceTokenIndex);
// console.log('>>>', raws, lastNonSpaceTokenIndex);
if (pushRawIfNeeded(result, raws))
raws = [];
var children = parseTokens(tokens, context);
Expand Down
2 changes: 1 addition & 1 deletion src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export namespace Core {
context.pure++;
else
raws = raws.slice(0, lastNonSpaceTokenIndex);
console.log('>>>', raws, lastNonSpaceTokenIndex);
// console.log('>>>', raws, lastNonSpaceTokenIndex);
if (pushRawIfNeeded(result, raws))
raws = [];

Expand Down

0 comments on commit 92a198d

Please sign in to comment.