Files
PJVM/pjvm/expressions.py
2020-01-30 22:31:36 +01:00

5 lines
161 B
Python

import re
METHOD_SIGNATURE = re.compile(r'\((?P<ARGS>\[?(?:[IFD]|L(?:\w+/)+\w+;)*)\)(?P<RET>[IFDV])')
TYPE = re.compile(r'\[?(?:[IVDF]|L(?:[\w\d]+/)+[\w\d]+)')