/** * @kind test-postprocess */ private import python private import codeql.util.test.InlineExpectationsTest as T private import internal.InlineExpectationsTestImpl import T::TestPostProcessing import T::TestPostProcessing::Make private module Input implements T::TestPostProcessing::InputSig { string getRelativeUrl(Location location) { exists(File f, int startline, int startcolumn, int endline, int endcolumn | location.hasLocationInfo(_, startline, startcolumn, endline, endcolumn) and f = location.getFile() | result = f.getRelativePath() + ":" + startline + ":" + startcolumn + ":" + endline + ":" + endcolumn ) } }