mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
10 lines
310 B
Plaintext
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() }
|
|
}
|