We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d463838 commit f7ec818Copy full SHA for f7ec818
lib/src/payloads/payload.dart
@@ -40,9 +40,8 @@ abstract base class Payload {
40
List<String> lines = current.toString().split('\n');
41
42
if (lines.length > 1) {
43
- // find the first item AFTER the internal call to ray
44
- int index =
45
- lines.indexWhere((line) => RegExp(r'#\d+\s+ray').hasMatch(line));
+ RegExp regExp = RegExp(r'#\d+\s+ray|package:.*/fluent_api\.dart');
+ int index = lines.indexWhere((line) => regExp.hasMatch(line));
46
47
if (index != -1) {
48
final caller = lines[index + 1];
0 commit comments