( offset )
| 964 | } |
| 965 | } |
| 966 | function sourceFromStacktrace( offset ) { |
| 967 | try { |
| 968 | throw new Error(); |
| 969 | } catch ( e ) { |
| 970 | return extractStacktrace( e, offset ); |
| 971 | } |
| 972 | } |
| 973 | |
| 974 | /** |
| 975 | * Escape text for attribute or text content. |
no test coverage detected