-
Notifications
You must be signed in to change notification settings - Fork 58
Description
I am trying to filter an array using map. In this case I filter Sourcery variables:
{% map type.allVariables into vars using variable %}{% if variable.readAccess != "private" and variable.readAccess != "fileprivate" and not variable.isComputed %}{{ variable }}{% endif %}{% endmap %}
Afterwards I want to print these filtered vars.
{% for variable in vars where variable != "" %}{{ variable.name }}: {{ variable.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
A get following Exception:
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<TtGCs19_SwiftStringStorageVs6UInt16 0x7fb2a2df64f0> valueForUndefinedKey:]: this class is not key value coding-compliant for the key name.'
My guess is the problem lies here:
| let mappedValues: [String] = try values.enumerated().map { index, item in |
The MapNode expects the mapped 0utput to be a String.
I could dig into this and provide a fix if you recognize it as an issue.