(str)
| 6931 | var parseTreeOutput = '', converted, pos = 0, chr, index, result; |
| 6932 | |
| 6933 | function error(str) { |
| 6934 | var e = new Error(); |
| 6935 | throw { |
| 6936 | msg : str + (e.stack ? ' - ' + e.stack : ''), |
| 6937 | pos : pos, |
| 6938 | chr : typeof chr === 'undefined' ? '(end)' : chr, |
| 6939 | state : parseTreeOutput, |
| 6940 | text : code.slice(pos - 10, pos + 10), |
| 6941 | code : this.code |
| 6942 | }; |
| 6943 | } |
| 6944 | |
| 6945 | function execute(code) { |
| 6946 | var result; |
no outgoing calls
no test coverage detected
searching dependent graphs…