Skip to content

Commit b85641d

Browse files
committed
Fix rewind bug
1 parent 1aaa6b1 commit b85641d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/easycoder-min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/easycoder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8280,7 +8280,7 @@ const EasyCoder_Compiler = {
82808280
return;
82818281
}
82828282
// console.log(`Compile ${token}`);
8283-
const mark = compiler.getIndex();
8283+
const mark = this.getIndex();
82848284
for (const domainName of Object.keys(this.domain)) {
82858285
// console.log(`Try domain ${domainName} for token ${token}`);
82868286
const domain = this.domain[domainName];

js/easycoder/Compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ const EasyCoder_Compiler = {
245245
return;
246246
}
247247
// console.log(`Compile ${token}`);
248-
const mark = compiler.getIndex();
248+
const mark = this.getIndex();
249249
for (const domainName of Object.keys(this.domain)) {
250250
// console.log(`Try domain ${domainName} for token ${token}`);
251251
const domain = this.domain[domainName];

0 commit comments

Comments
 (0)