Home
last modified time | relevance | path

Searched refs:appendStringChar (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/npm/node_modules/jsonparse/
Djsonparse.js92 proto.appendStringChar = function (char) { function
197 else if (n >= 0x20) { this.appendStringChar(n); }
203 if(n === 0x22){ this.appendStringChar(n); this.tState = STRING1;
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;