Lines Matching full:else
107 } else {
110 } else {
135 }else if(n === 0x7d){ this.onToken(RIGHT_BRACE, "}"); // }
136 }else if(n === 0x5b){ this.onToken(LEFT_BRACKET, "["); // [
137 }else if(n === 0x5d){ this.onToken(RIGHT_BRACKET, "]"); // ]
138 }else if(n === 0x3a){ this.onToken(COLON, ":"); // :
139 }else if(n === 0x2c){ this.onToken(COMMA, ","); // ,
140 }else if(n === 0x74){ this.tState = TRUE1; // t
141 }else if(n === 0x66){ this.tState = FALSE1; // f
142 }else if(n === 0x6e){ this.tState = NULL1; // n
143 }else if(n === 0x22){ // "
147 }else if(n === 0x2d){ this.string = "-"; this.tState = NUMBER1; // -
148 }else{
151 } else if (n === 0x20 || n === 0x09 || n === 0x0a || n === 0x0d) {
153 } else {
157 }else if (this.tState === STRING1){ // After open quote
169 …} else if (this.bytes_remaining === 0 && n >= 128) { // else if no remainder bytes carried over, p…
182 } else {
186 } else if (n === 0x22) {
194 else if (n === 0x5c) {
197 else if (n >= 0x20) { this.appendStringChar(n); }
198 else {
201 }else if (this.tState === STRING2){ // After backslash
204 }else if(n === 0x5c){ this.appendStringChar(BACK_SLASH); this.tState = STRING1;
205 }else if(n === 0x2f){ this.appendStringChar(FORWARD_SLASH); this.tState = STRING1;
206 }else if(n === 0x62){ this.appendStringChar(BACKSPACE); this.tState = STRING1;
207 }else if(n === 0x66){ this.appendStringChar(FORM_FEED); this.tState = STRING1;
208 }else if(n === 0x6e){ this.appendStringChar(NEWLINE); this.tState = STRING1;
209 }else if(n === 0x72){ this.appendStringChar(CARRIAGE_RETURN); this.tState = STRING1;
210 }else if(n === 0x74){ this.appendStringChar(TAB); this.tState = STRING1;
211 }else if(n === 0x75){ this.unicode = ""; this.tState = STRING3;
212 }else{
215 …}else if (this.tState === STRING3 || this.tState === STRING4 || this.tState === STRING5 || this.tS…
226 …} else if (this.highSurrogate === undefined && intVal >= 0xD800 && intVal < (0xDBFF + 1)) { //<552…
228 } else {
237 } else {
240 } else if (this.tState === NUMBER1 || this.tState === NUMBER3) {
273 } else {
282 }else if (this.tState === TRUE1){ // r
284 else { return this.charError(buffer, i); }
285 }else if (this.tState === TRUE2){ // u
287 else { return this.charError(buffer, i); }
288 }else if (this.tState === TRUE3){ // e
290 else { return this.charError(buffer, i); }
291 }else if (this.tState === FALSE1){ // a
293 else { return this.charError(buffer, i); }
294 }else if (this.tState === FALSE2){ // l
296 else { return this.charError(buffer, i); }
297 }else if (this.tState === FALSE3){ // s
299 else { return this.charError(buffer, i); }
300 }else if (this.tState === FALSE4){ // e
302 else { return this.charError(buffer, i); }
303 }else if (this.tState === NULL1){ // u
305 else { return this.charError(buffer, i); }
306 }else if (this.tState === NULL2){ // l
308 else { return this.charError(buffer, i); }
309 }else if (this.tState === NULL3){ // l
311 else { return this.charError(buffer, i); }
349 }else if(token === LEFT_BRACE){
353 } else {
359 }else if(token === LEFT_BRACKET){
363 } else {
369 }else if(token === RIGHT_BRACE){
372 } else {
375 }else if(token === RIGHT_BRACKET){
378 } else {
381 }else{
384 }else if(this.state === KEY){
388 } else if (token === RIGHT_BRACE) {
390 } else {
393 }else if(this.state === COLON){
395 else { return this.parseError(token, value); }
396 }else if(this.state === COMMA){
399 else if (this.mode === OBJECT) { this.state = KEY; }
401 …} else if (token === RIGHT_BRACKET && this.mode === ARRAY || token === RIGHT_BRACE && this.mode ==…
403 } else {
406 }else{