JS: Allow MaD flow through properties - #8670
Conversation
RasmusWL
left a comment
There was a problem hiding this comment.
Nice, looks good to me 👍
I assume that using Member[foo,bar], adding flow from obj to obj.foo and obj.bar, would also work?
Yes, that should work as well. But you can't do |
|
After ruminating on this some more, I think the more general solution is to add something like Then a step like This avoids the somewhat awkward special case where the output must consist of a single token. To be clear, with the solution currently in this PR it would look like this: @aschackmull do you have any thoughts on this? The context is that we want to be able to model flow through things that aren't calls, but in principle could be modelled as a calls. It looks like the two approaches are:
|
Adds the possibility of stepping through a property read
obj -> obj.foousing a summary CSV row where:inputpart is the empty string, andoutputpart isMember[foo].@RasmusWL what do you think?