We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example here is as follows:
def collectPatternVariables(tree: Tree)(using ctx: Context): List[Symbol] = val acc = new TreeAccumulator[List[Symbol]]: def foldTree(syms: List[Symbol], tree: Tree)(owner: Symbol): List[Symbol] = tree match case ValDef(_, _, rhs) => val newSyms = tree.symbol :: syms foldTree(newSyms, body)(tree.symbol) case _ => foldOverTree(syms, tree)(owner) acc(Nil, tree)
Where does body come from? I'm guessing the pattern should maybe be ValDef(_, body, rhs) but I'm not 100% sure
body
ValDef(_, body, rhs)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example here is as follows:
Where does
body
come from? I'm guessing the pattern should maybe beValDef(_, body, rhs)
but I'm not 100% sureThe text was updated successfully, but these errors were encountered: