Files
codeql/unified/ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll
Asger F a9617f18a1 Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-06-30 15:48:15 +02:00

13 lines
389 B
Plaintext

private import unified as U
private import U
private import codeql.util.test.InlineExpectationsTest
module Impl implements InlineExpectationsTestSig {
class ExpectationComment extends U::Comment {
/** Gets the text inside this comment, without the surrounding comment delimiters. */
string getContents() { result = this.getCommentText() }
}
class Location = U::Location;
}