mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
import javascript
|
|
|
|
from RegExpRange rr, string lb, string ub
|
|
where
|
|
lb = rr.getLowerBound().toString() and
|
|
if exists(rr.getUpperBound()) then ub = rr.getUpperBound().toString() else ub = "<none>"
|
|
select rr, lb, ub
|