mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
import semmle.javascript.JSDoc
|
|
|
|
query predicate test_JSDoc(JSDoc jsdoc, string res0, Comment res1) {
|
|
res0 = jsdoc.getDescription() and res1 = jsdoc.getComment()
|
|
}
|