Index: golden/go/types/types.go |
diff --git a/golden/go/types/types.go b/golden/go/types/types.go |
index 7221eda42d52b6eb0e6f84e20ddabb95bffe315a..2f435b102807a464f1cd4cd915a51cb544a3e4b3 100644 |
--- a/golden/go/types/types.go |
+++ b/golden/go/types/types.go |
@@ -6,9 +6,13 @@ type Label int |
const ( |
// Primary key field that uniquely identifies a key. |
PRIMARY_KEY_FIELD = "name" |
+) |
+// Note: Some code in analysis depends on the order of this enum and |
+// also on UNTRIAGED being 0. |
+const ( |
// Classifications for observed digests. |
- UNTRIAGED Label = iota |
+ UNTRIAGED Label = iota // == 0 |
POSITIVE |
NEGATIVE |
) |