dal-ast-js 0.0.4-dev → 0.0.5-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -107,7 +107,6 @@ class DalLexer {
107
107
  do {
108
108
  const character = this.source[this.currPos];
109
109
  if (character == "\n") {
110
- console.log("SCANNED NEW LINE");
111
110
  return;
112
111
  }
113
112
  } while (++this.currPos < this.source.length);
package/dist/index.esm.js CHANGED
@@ -105,7 +105,6 @@ class DalLexer {
105
105
  do {
106
106
  const character = this.source[this.currPos];
107
107
  if (character == "\n") {
108
- console.log("SCANNED NEW LINE");
109
108
  return;
110
109
  }
111
110
  } while (++this.currPos < this.source.length);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dal-ast-js",
3
- "version": "0.0.4-dev",
3
+ "version": "0.0.5-dev",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
package/src/Lexer.js CHANGED
@@ -92,7 +92,6 @@ export class DalLexer {
92
92
  do {
93
93
  const character = this.source[this.currPos];
94
94
  if (character == "\n") {
95
- console.log("SCANNED NEW LINE");
96
95
  return;
97
96
  }
98
97
  } while (++this.currPos < this.source.length);