( offset )
| 1242 | } |
| 1243 | } |
| 1244 | function sourceFromStacktrace( offset ) { |
| 1245 | try { |
| 1246 | throw new Error(); |
| 1247 | } catch ( e ) { |
| 1248 | return extractStacktrace( e, offset ); |
| 1249 | } |
| 1250 | } |
| 1251 | |
| 1252 | function escapeInnerText( s ) { |
| 1253 | if ( !s ) { |
no test coverage detected