Replies: 1 comment 1 reply
-
Hey @zrwsmd, everything you would need to do is not return a single description in the const ss = allMembers
.flatMap((e) => {
const descriptions = [];
let nextVariables = e.nextVariables;
for (let i = 0; i < nextVariables.length; i++) {
const nextVariable = nextVariables[i];
descriptions.push(this.descriptions.createDescription(e, nextVariable));
}
return descriptions;
});
let s2 = new StreamScope(stream(ss)); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
if i write like this,it can only return first element astNodeDescription info of nextVariables array,
actually i want to combine all astNodeDescription info of nextVariables array,how to modify it
Beta Was this translation helpful? Give feedback.
All reactions