Skip to content
New issue

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

Scala 3 Metaprogramming Reference has some invalid example code #2290

Open
coreywoodfield opened this issue Jan 7, 2022 · 0 comments
Open
Labels
scala-3 scala 3 documentation

Comments

@coreywoodfield
Copy link
Contributor

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

@xuwei-k xuwei-k added the scala-3 scala 3 documentation label Mar 12, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scala-3 scala 3 documentation
Projects
None yet
Development

No branches or pull requests

2 participants