Files
2018-08-02 17:53:23 +01:00

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