mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +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
|