Conversation
160c073 to
e128eb9
Compare
e128eb9 to
7c3fddf
Compare
7c3fddf to
025d690
Compare
d9ea755 to
fa9bcc1
Compare
| const matchingName = !!acc[parameterName]; | ||
| const matchingEntry = matchingName && acc[parameterName].type === 'variant'; | ||
| if (matchingEntry) { | ||
| // handle enums too? |
There was a problem hiding this comment.
Does this now handle enums with this refactor? I'm a little confused as to what the comment means since it's in a function called handleEnumAttribute
There was a problem hiding this comment.
I believe it already handled enums in the line below so the comment should be outdated? @JosephVolosin might be able to confirm?
There was a problem hiding this comment.
@duranb Following up on this - yes this is just removing stale TODO comments, no behavior change.
| const matchingName = !!acc[key]; | ||
| const matchingEntry = matchingName && acc[key].type === type; | ||
| if (matchingEntry) { | ||
| // handle enums too? |
There was a problem hiding this comment.
Similar question here as my above question in regards to the comment about enums. Is this just cleanup of a comment that was long addressed before? I'm seeing a reference to "enum" in the logic directly above, so I'm not sure what the previous state was.
fa9bcc1 to
3851270
Compare
3851270 to
e6dbc87
Compare
e6dbc87 to
b9fd532
Compare
b9fd532 to
890d666
Compare
890d666 to
e2a7942
Compare
Refactors the activity and external event filter builders to share common code. Closes #1803