File tree 1 file changed +2
-2
lines changed
flutter-idea/src/io/flutter/run/common
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public Info getInfo(@NotNull PsiElement element) {
65
65
final Icon icon = getTestStateIcon(element, testCall.getIcon());
66
66
final Function<PsiElement, String> tooltipProvider =
67
67
psiElement -> testCall.getTooltip(psiElement, testConfigUtils);
68
- return new RunLineMarkerContributor.Info(icon, tooltipProvider, ExecutorAction.getActions());
68
+ return new RunLineMarkerContributor.Info(icon, ExecutorAction.getActions(), tooltipProvider );
69
69
}
70
70
}
71
71
else if (dartId.getParent().getParent() instanceof DartFunctionDeclarationWithBodyOrNative) {
@@ -83,7 +83,7 @@ else if (dartId.getParent().getParent() instanceof DartFunctionDeclarationWithBo
83
83
final Icon icon = getTestStateIcon(element, testCall.getIcon());
84
84
final Function<PsiElement, String> tooltipProvider =
85
85
psiElement -> testCall.getTooltip(psiElement, testConfigUtils);
86
- return new RunLineMarkerContributor.Info(icon, tooltipProvider, ExecutorAction.getActions());
86
+ return new RunLineMarkerContributor.Info(icon, ExecutorAction.getActions(), tooltipProvider );
87
87
}
88
88
}
89
89
}
You can’t perform that action at this time.
0 commit comments