@ggflutter/sumo
Advanced tools
Comparing version 2.5.75003796 to 2.5.75003797
{ | ||
"author": "Luigi Allocca", | ||
"name": "@ggflutter/sumo", | ||
"version": "2.5.75003796", | ||
"version": "2.5.75003797", | ||
"description": "A mutation testing tool for Ethereum smart contracts", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -42,3 +42,3 @@ const Mutation = require('../../mutation'); | ||
if (start >= functionStart && end <= functionEnd && node.variables[0] && | ||
if (start >= functionStart && end <= functionEnd && node.variables[0] && node.variables[0].typeName && node.variables[0].typeName.name && | ||
(node.variables[0].typeName.name === 'uint256' || node.variables[0].typeName.name === 'uint')) { | ||
@@ -45,0 +45,0 @@ const original = source.slice(start, end); |
352208