FeelParser

class FeelParser(tokens: List<Token>, source: String = "")

Parser for FEEL expressions.

Converts token streams into Abstract Syntax Trees using recursive descent parsing. Follows FEEL operator precedence and grammar rules.

Constructors

Link copied to clipboard
constructor(tokens: List<Token>, source: String = "")

Functions

Link copied to clipboard
fun parse(): ASTNode

Parse the token stream into an AST.