You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR(missing_callback_arg, none, "cannot refactor as callback closure argument missing", ())
58
+
59
+
ERROR(mismatched_callback_args, none, "cannot refactor as callback arguments do not match declaration", ())
60
+
61
+
ERROR(unknown_callback_conditions, none, "cannot refactor complex if conditions", ())
62
+
63
+
ERROR(mixed_callback_conditions, none, "cannot refactor mixed nil and not-nil conditions", ())
64
+
65
+
ERROR(callback_multiple_bound_names, none, "cannot refactor when multiple names bound to single declaration, had '%0' and found '%1'", (StringRef, StringRef))
66
+
67
+
ERROR(callback_with_fallthrough, none, "cannot refactor switch with fallthrough", ())
68
+
69
+
ERROR(callback_with_default, none, "cannot refactor switch with default case", ())
70
+
71
+
ERROR(callback_multiple_case_items, none, "cannot refactor switch using a case with multiple items", ())
72
+
73
+
ERROR(callback_where_case_item, none, "cannot refactor switch using a case with where clause", ())
0 commit comments