Skip to content

Latest commit

 

History

History

fluent.syntax

fluent.syntax fluent.syntax

Read, write, and transform Fluent files.

This package includes the parser, serializer, and traversal utilities like Visitor. You’re looking for this package if you work on tooling for Fluent in Kotlin or Java.

import org.projectfluent.syntax.ast.*
import org.projectfluent.syntax.parser.FluentParser
import org.projectfluent.syntax.serializer.FluentSerializer
val parser = FluentParser()
val resource = parser.parse("a-key = String to localize")
println((resource.body[0] as Message).id.name)
"a-key"
val serializer = FluentSerializer()
println(serializer.serialize(resource))
"a-key = String to localize"
println(serializer.serialize(resource.body[0]))
"a-key = String to localize"