Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ private class ShortStringLiteral extends StringLiteral {
/**
* A string literal that may refer to a broken or risky cryptographic algorithm.
*/
overlay[local?]
class BrokenAlgoLiteral extends ShortStringLiteral {
BrokenAlgoLiteral() {
this.getValue().regexpMatch(getInsecureAlgorithmRegex()) and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ private class StaticByteArrayCreation extends ArrayCreationExpr {
}

/** An expression that updates `array`. */
overlay[local?]
private class ArrayUpdate extends Expr {
Expr array;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ private class FollowsBarrierPrefix extends UrlForwardBarrier {
FollowsBarrierPrefix() { this.asExpr() = any(BarrierPrefix fp).getAnAppendedExpression() }
}

overlay[local?]
private class BarrierPrefix extends InterestingPrefix {
int offset;

Expand Down
Loading