mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
- Added naive implementation of `charRange` so the test can run. - Made predicates public as needed.
5 lines
136 B
Python
5 lines
136 B
Python
import re
|
|
|
|
re.compile(r'(?P<first>\w+) (?P<second>\w+)') #$ MISSING: group=0:14 group=15:30
|
|
re.compile(r'([)(])') #$ MISSING: group=0:6
|