• Bryton Lacquement's avatar
    Keep track of the name of the modified code when applying fixers · a4857b78
    Bryton Lacquement authored
    We can then execute the following query, for example, to find out the
    bits of code for which there is no information traced at runtime:
    
    (This is an example for the "division" problem)
    
    SELECT filename
    FROM modified
    WHERE fixer = "division"
    AND filename NOT IN
      (SELECT filename
       FROM division)
    a4857b78
trace.py 3.21 KB