/** Provides predicates for recognizing commented-out code. */import semmle.javascript.Comments/** Gets a line in comment `c` that looks like commented-out code. */private string getALineOfCommentedOutCode(Comment c) {result = c.getLine(_) and// line ends with ';', '{', or '}', optionally followed by a comma,(result.regexpMatch(".*[;{}],?\\s*") and// but it doesn't look like a JSDoc-like annotationnot result.regexpMatch(".*@\\w+\\s*\\{.*\\}\\s*") and// and it does not contain three consecutive words (which is uncommon in code)not result.regexpMatch("[^'\\\"]*\\w\\s++\\w++\\s++\\w[^'\\\"]*")or// line is part of a block comment and ends with something that looks// like a line comment; character before '//' must not be ':' to// avoid matching URLsnot c instanceof SlashSlashComment andresult.regexpMatch("(.*[^:]|^)//.*[^/].*")or// similar, but don't be fooled by '//// this kind of comment' and// '//// this kind of comment ////'c instanceof SlashSlashComment andresult.regexpMatch("/*([^/].*[^:]|[^:/])//.*[^/].*") and// exclude externalization commentsnot result.regexpMatch(".*\\$NON-NLS-\\d+\\$.*"))}/*** Holds if `c` is a comment containing code examples, and hence should be* disregarded when looking for commented-out code.*/private predicate containsCodeExample(Comment c) {c.getText().matches(["%<pre>%</pre>%", "%<code>%</code>%", "%@example%", "%```%"])}/*** Gets a comment that belongs to a run of consecutive comments in file `f`* starting with `c`, where `c` itself contains commented-out code, but the comment* preceding it, if any, does not.*/private Comment getCommentInRun(File f, Comment c) {exists(int n |c.onLines(f, n, _) andcountCommentedOutLines(c) > 0 andnot exists(Comment d | d.onLines(f, _, n - 1) | countCommentedOutLines(d) > 0)) and(result = corexists(Comment prev, int n |prev = getCommentInRun(f, c) andprev.onLines(f, _, n) andresult.onLines(f, n + 1, _)))}/*** Gets a comment that follows `c` in a run of consecutive comments and* does not contain a code example.*/private Comment getRelevantCommentInRun(Comment c) {result = getCommentInRun(_, c) and not containsCodeExample(result)}/** Gets the number of lines in comment `c` that look like commented-out code. */private int countCommentedOutLines(Comment c) { result = count(getALineOfCommentedOutCode(c)) }/** Gets the number of non-blank lines in comment `c`. */private int countNonBlankLines(Comment c) {result = count(string line | line = c.getLine(_) and not line.regexpMatch("\\s*"))}/*** Gets the number of lines in comment `c` and subsequent comments that look like* they contain commented-out code.*/private int countCommentedOutLinesInRun(Comment c) {result = sum(Comment d | d = getRelevantCommentInRun(c) | countCommentedOutLines(d))}/** Gets the number of non-blank lines in `c` and subsequent comments. */private int countNonBlankLinesInRun(Comment c) {result = sum(Comment d | d = getRelevantCommentInRun(c) | countNonBlankLines(d))}/*** A run of consecutive comments containing a high percentage of lines* that look like commented-out code.** This is represented by the comment that starts the run, with a special* `hasLocationInfo` implementation that assigns it the entire run as its location.*/class CommentedOutCode extends Comment {CommentedOutCode() {exists(int codeLines, int nonBlankLines |countCommentedOutLines(this) > 0 andnot exists(Comment prev | this = getCommentInRun(_, prev) and this != prev) andnonBlankLines = countNonBlankLinesInRun(this) andcodeLines = countCommentedOutLinesInRun(this) andnonBlankLines > 0 and2 * codeLines > nonBlankLines)}/*** Gets the number of lines in this run of comments* that look like they contain commented-out code.*/int getNumCodeLines() { result = countCommentedOutLinesInRun(this) }/*** Gets the number of non-blank lines in this run of comments.*/int getNumNonBlankLines() { result = countNonBlankLinesInRun(this) }/*** Holds if this element is at the specified location.* The location spans column `startcolumn` of line `startline` to* column `endcolumn` of line `endline` in file `filepath`.* For more information, see* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).*/predicate hasLocationInfo(string filepath, int startline, int startcolumn, int endline, int endcolumn) {exists(Location loc, File f | loc = this.getLocation() and f = loc.getFile() |filepath = f.getAbsolutePath() andstartline = loc.getStartLine() andstartcolumn = loc.getStartColumn() andexists(Location last |last = getCommentInRun(f, this).getLocation() andlast.getEndLine() = max(getCommentInRun(f, this).getLocation().getEndLine())|endline = last.getEndLine() andendcolumn = last.getEndColumn()))}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。