com.github.gchudnov.bscript.rewriter.Predicates.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bscript-rewriter_3 Show documentation
Show all versions of bscript-rewriter_3 Show documentation
AST Evaluation & Debugging.
The newest version!
package com.github.gchudnov.bscript.rewriter
import com.github.gchudnov.bscript.lang.ast.*
object Predicates:
def hasStdAnn(n: AST): Boolean =
n match
case m: MethodDecl => m.annotations.exists(_.isInstanceOf[StdAnn])
case _ => false