mirror of
https://github.com/github/codeql.git
synced 2026-05-10 17:29:26 +02:00
renamed "rangeQuantifierLowerBound" to "range_quantifier_lower_bound"
This commit is contained in:
@@ -230,3 +230,8 @@ deprecated predicate regexpParseErrors(RegExpParseError id, RegExpTerm regexp, s
|
||||
* Use `RegExpQuantifier#isGreedy` instead.
|
||||
*/
|
||||
deprecated predicate isGreedy(RegExpQuantifier id) { is_greedy(id) }
|
||||
/**
|
||||
* Alias for the predicate `range_quantifier_lower_bound` defined in the .dbscheme.
|
||||
* Use `RegExpRange#getLowerBound()` instead.
|
||||
*/
|
||||
deprecated predicate rangeQuantifierLowerBound(RegExpRange id, int lo) { range_quantifier_lower_bound(id, lo) }
|
||||
|
||||
@@ -522,7 +522,7 @@ class RegExpOpt extends RegExpQuantifier, @regexp_opt {
|
||||
*/
|
||||
class RegExpRange extends RegExpQuantifier, @regexp_range {
|
||||
/** Gets the lower bound of the range. */
|
||||
int getLowerBound() { rangeQuantifierLowerBound(this, result) }
|
||||
int getLowerBound() { range_quantifier_lower_bound(this, result) }
|
||||
|
||||
/**
|
||||
* Gets the upper bound of the range, if any.
|
||||
|
||||
Reference in New Issue
Block a user