mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
472 B
Plaintext
18 lines
472 B
Plaintext
private import javascript as JS
|
|
private import codeql.util.test.InlineExpectationsTest
|
|
|
|
module Impl implements InlineExpectationsTestSig {
|
|
private import javascript
|
|
|
|
final private class LineCommentFinal = LineComment;
|
|
|
|
class ExpectationComment extends LineCommentFinal {
|
|
string getContents() { result = this.getText() }
|
|
|
|
/** Gets this element's location. */
|
|
Location getLocation() { result = super.getLocation() }
|
|
}
|
|
|
|
class Location = JS::Location;
|
|
}
|