All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ablearthy.tl.parser.CommentParser.scala Maven / Gradle / Ivy

package io.github.ablearthy.tl.parser

import fastparse._
import MultiLineWhitespace._

object CommentParser {
  def parser[_: P]: P[Seq[(String, String)]] = unit.rep

  private def unit[_: P] = P(
    ("@" ~~ CharsWhile(!_.isWhitespace).!) ~ CharsWhile(_ != '@').!
  )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy