Lines Matching refs:history
86 var lastChar = state.history ? state.history[0] : '';
161 state.history = state.history.substr(1);
165 state.history = state.history.substr(1);
167 } else if (character === '/' && isRegexp(state.history)) {
182 state.history = character + state.history;
197 this.history = ''
281 function isRegexp(history) { argument
284 history = history.replace(/^\s*/, '');
287 if (history[0] === ')') return false;
289 if (history[0] === '}') return true;
291 if (isPunctuator(history[0])) return true;
293 …if (/^\w+\b/.test(history) && isKeyword(/^\w+\b/.exec(history)[0].split('').reverse().join(''))) r…