puma icon indicating copy to clipboard operation
puma copied to clipboard

Add visit method for SequenceExpression nodeType

Open Undre4m opened this issue 9 years ago • 0 comments

nodeType "SequenceExpression" case has no visit method assigned at runtime.js.

Example of associated test:

function myFunc() { var x = 0; return (x+=1, x*=2, x); }
myFunc();

Undre4m avatar Oct 05 '16 05:10 Undre4m