Skip to content

Commit 1aaa6b1

Browse files
committed
Fix rewind bug
1 parent 6ecc867 commit 1aaa6b1

File tree

3 files changed

+16
-32
lines changed

3 files changed

+16
-32
lines changed

dist/easycoder-min.js

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/easycoder.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8202,14 +8202,6 @@ const EasyCoder_Compiler = {
82028202
};
82038203
},
82048204

8205-
mark: function() {
8206-
this.savedMark = this.index;
8207-
},
8208-
8209-
rewind: function() {
8210-
this.index = this.savedMark;
8211-
},
8212-
82138205
rewindTo: function(index) {
82148206
this.index = index;
82158207
},

js/easycoder/Compile.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,6 @@ const EasyCoder_Compiler = {
167167
};
168168
},
169169

170-
mark: function() {
171-
this.savedMark = this.index;
172-
},
173-
174-
rewind: function() {
175-
this.index = this.savedMark;
176-
},
177-
178170
rewindTo: function(index) {
179171
this.index = index;
180172
},

0 commit comments

Comments
 (0)