Files
codeql/javascript/ql/test/library-tests/RegExp/Bounds/Bounds.ql

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