Detect strings inside print(debugPrint("Hello"))
bool isInsidePrint(String line) { return RegExp(r'(print|debugPrint)\s*\(').hasMatch(line); }