Returns true if the code has functions
bool hasFunctions(String code) { return _functionRegExp.hasMatch(code) || _getAndSetRegExp.hasMatch(code); }