bool canRun(String tag) { if (run == null) return true; for (final r in run!) { if (_matchesTag(r, tag)) return true; } return false; }