Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

      • 0..n: A non negative value indicates that the argument at the given index (starting at 0)is being neutralized.
        • obj.call(arg1, arg2) --> arg1 is neutralized when argpos="0"
                                                        arg2 is neutralized when argpos="1"
                                                        Both are neutralized when argpos="0,1"

       

      Code Block
      languagexml
          <method name="call" signature="call(fqcn.Arg1Type, fqcn.Arg2Type)">
            <neutralization argpos="0" kind="..." resource="..." />
          </method>

       

       

      • -1: Target object (returned value) is being neutralized.
        • value = obj.call(arg1) -> value is neutralized when argpos="-1"

...