Skip to content

epfl-lara/scallion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cb08e9f · Feb 22, 2025
Nov 22, 2024
Jul 16, 2020
Nov 22, 2024
Apr 21, 2022
May 24, 2019
Jul 16, 2020
Feb 22, 2025
Jun 16, 2022
Nov 22, 2024
Jul 16, 2020
Jun 1, 2019
Nov 22, 2024
Feb 22, 2025

Repository files navigation

Compile and run sbt test

SCALL1ON

Overview

Scallion is a library for writing parsers and pretty printers for LL(1) languages in Scala.

Documentation

A comprehensive Scaladoc API is available online.

Parsing Algorithm

Scallion uses a novel parsing algorithm that we have described in the PLDI'20 paper: Zippy LL(1) Parsing with Derivatives. The algorithm has been formally proven correct in Coq.

Examples

  • JSON: This example showcases how to build a basic JSON parser using Scallion.
  • Lambda Calculus: This example shows how to get a pretty printer almost for free alongside your parser.
  • Calculator: This example shows how to use the operators combinator to easily handle operators with various associativities and priorities.
  • Roman Numerals: This example presents a simple parser and pretty printer for roman numerals.