Home | History | Annotate | Download | only in writer

Lines Matching full:usedfieldnames

48     val usedFieldNames = hashMapOf<Scope, MutableSet<String>>();
50 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() }
64 while (usedFieldNames[scope].contains(candidate)) {
68 usedFieldNames[scope].add(candidate)