MCPcopy Create free account
hub / github.com/4ian/GDevelop / skipUntil

Method skipUntil

GDevelop.js/scripts/generate-dts.mjs:141–145  ·  view source on GitHub ↗

@param {string} thisCharacter

(thisCharacter, skipOverIt = true)

Source from the content-addressed store, hash-verified

139 }
140 /** @param {string} thisCharacter */
141 static skipUntil(thisCharacter, skipOverIt = true) {
142 while (this.currentCharacter !== thisCharacter && !this.isDone)
143 this.parserPosition++;
144 if (skipOverIt) this.parserPosition++;
145 }
146 /** @param {string} thisCharacter */
147 static readUntil(thisCharacter, skipOverIt = true) {
148 let token = '';

Callers 2

skipWhitespacesMethod · 0.95
readTypeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected