refactor: use scalafmt to format code
This commit is contained in:
@@ -5,12 +5,12 @@ import parsley.token.Lexer
|
||||
import parsley.token.descriptions.*
|
||||
|
||||
object lexer {
|
||||
private val desc = LexicalDesc.plain.copy(
|
||||
// your configuration goes here
|
||||
)
|
||||
private val lexer = Lexer(desc)
|
||||
private val desc = LexicalDesc.plain.copy(
|
||||
// your configuration goes here
|
||||
)
|
||||
private val lexer = Lexer(desc)
|
||||
|
||||
val integer = lexer.lexeme.integer.decimal
|
||||
val implicits = lexer.lexeme.symbol.implicits
|
||||
def fully[A](p: Parsley[A]): Parsley[A] = lexer.fully(p)
|
||||
val integer = lexer.lexeme.integer.decimal
|
||||
val implicits = lexer.lexeme.symbol.implicits
|
||||
def fully[A](p: Parsley[A]): Parsley[A] = lexer.fully(p)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user