mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
import semmle.code.asp.AspNet
|
|
|
|
from AspComment comment, string kind
|
|
where
|
|
if comment instanceof AspServerComment
|
|
then kind = "server"
|
|
else kind = "client"
|
|
select comment, comment.getBody(), kind
|