@ggflutter/sumo
Advanced tools
Comparing version 2.5.749998 to 2.5.749999
{ | ||
"author": "Luigi Allocca", | ||
"name": "@ggflutter/sumo", | ||
"version": "2.5.749998", | ||
"version": "2.5.749999", | ||
"description": "A mutation testing tool for Ethereum smart contracts", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -12,3 +12,3 @@ const Mutation = require('../../../mutation'); | ||
visit({ | ||
CallExpression: (node) => { | ||
FunctionCall: (node) => { | ||
// Check if the call is to an external contract | ||
@@ -15,0 +15,0 @@ if (node.callee.type === 'MemberExpression' && ['call', 'delegatecall', 'staticcall'].includes(node.callee.property.name)) { |
354181