match method
Returns true when the other ScriptOp matches this one. ScriptPushDataMatcher will match with a push data of a particular size.
Implementation
@override
bool match(ScriptOp other)
=> (other is ScriptPushDataMatcher && other.size == size)
|| (other is ScriptPushData && other._data.length == size);