Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e954db2

Browse files
Convert snake case predicates to camel case
1 parent 5b61de6 commit e954db2

2 files changed

Lines changed: 98 additions & 98 deletions

File tree

java/ql/lib/semmle/code/java/regex/RegexTreeView.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,16 +601,16 @@ class RegExpCharacterClass extends RegExpTerm, TRegExpCharacterClass {
601601
result.getRegex() = re and
602602
exists(int itemStart, int itemEnd |
603603
result.getStart() = itemStart and
604-
re.char_set_start(start, itemStart) and
605-
re.char_set_child(start, itemStart, itemEnd) and
604+
re.charSetStart(start, itemStart) and
605+
re.charSetChild(start, itemStart, itemEnd) and
606606
result.getEnd() = itemEnd
607607
)
608608
or
609609
i > 0 and
610610
result.getRegex() = re and
611611
exists(int itemStart | itemStart = this.getChild(i - 1).getEnd() |
612612
result.getStart() = itemStart and
613-
re.char_set_child(start, itemStart, result.getEnd())
613+
re.charSetChild(start, itemStart, result.getEnd())
614614
)
615615
}
616616

0 commit comments

Comments
 (0)