mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
16 lines
493 B
Plaintext
16 lines
493 B
Plaintext
private import rust as R
|
|
private import R
|
|
private import codeql.util.test.InlineExpectationsTest
|
|
|
|
module Impl implements InlineExpectationsTestSig {
|
|
/**
|
|
* A class representing line comments in C# used by the InlineExpectations core code
|
|
*/
|
|
class ExpectationComment extends R::Comment {
|
|
/** Gets the contents of the given comment, _without_ the preceding comment marker (`//`). */
|
|
string getContents() { result = this.getCommentText() }
|
|
}
|
|
|
|
class Location = R::Location;
|
|
}
|