Home | History | Annotate | Download | only in script_formatter_worker

Lines Matching refs:WHILE

113         while (this._peek() !== endToken) {
147 case FormatterWorker.JavaScriptTokens.WHILE:
187 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
223 } while (this._peek() === FormatterWorker.JavaScriptTokens.COMMA);
316 while (this._peek() !== FormatterWorker.JavaScriptTokens.CASE && this._peek() !== FormatterWorker.JavaScriptTokens.DEFAULT && this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
335 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE)
383 this._expect(FormatterWorker.JavaScriptTokens.WHILE);
393 this._expect(FormatterWorker.JavaScriptTokens.WHILE);
437 while (this._peek() === FormatterWorker.JavaScriptTokens.COMMA) {
475 while (FormatterWorker.JavaScriptTokens.OR <= token && token <= FormatterWorker.JavaScriptTokens.IN) {
511 while (true) {
556 while (true) {
624 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACK) {
651 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
705 while (!done) {
720 while (!done) {
776 while (this._lineNumber < token.line) {
861 while ((position = comment.value.indexOf("\n", position + 1)) !== -1)
965 FormatterWorker.JavaScriptTokens.WHILE = FormatterWorker.JavaScriptTokensByValue["while"] = 73;