MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / next

Method next

lib/web/CodeMirror/src/util/StringStream.js:21–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19 sol() {return this.pos == this.lineStart}
20 peek() {return this.string.charAt(this.pos) || undefined}
21 next() {
22 if (this.pos < this.string.length)
23 return this.string.charAt(this.pos++)
24 }
25 eat(match) {
26 let ch = this.string.charAt(this.pos)
27 let ok

Callers 2

unescapeRegexReplaceFunction · 0.95
VimFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected