Files
codeql/ql/test/TestUtilities/InlineExpectationsTestPrivate.qll
2021-06-21 19:37:41 +02:00

10 lines
222 B
Plaintext

import ruby
import codeql_ruby.ast.internal.TreeSitter
/**
* A class representing line comments in Ruby.
*/
class LineComment extends Generated::Comment {
string getContents() { result = this.getValue().suffix(1) }
}