(node, action)
| 1244 | } |
| 1245 | |
| 1246 | function asanifyTransform(node, action) { |
| 1247 | makeCallExpression(node.property, '_asan_js_check_index', [{ ...node.object }, { ...node.property }, makeIdentifier(action)]); |
| 1248 | } |
| 1249 | // Add ASan check to direct HEAP* loads/stores. |
| 1250 | // That lets ASan cover JS too. |
| 1251 | function asanify(ast) { |
no test coverage detected