Files
codeql/csharp/ql/test/TestUtilities/InlineExpectationsTestPrivate.qll
Erik Krogh Kristensen ff73dbc35c delete redundant imports
2022-04-22 12:55:28 +02:00

10 lines
310 B
Plaintext

import csharp
/**
* A class representing line comments in C# used by the InlineExpectations core code
*/
class ExpectationComment extends SinglelineComment {
/** Gets the contents of the given comment, _without_ the preceding comment marker (`//`). */
string getContents() { result = this.getText() }
}