We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff6b4c commit c89c2cfCopy full SHA for c89c2cf
fluent.syntax/src/main/kotlin/org/projectfluent/syntax/processor/Processor.kt
@@ -44,13 +44,6 @@ class Processor {
44
}
45
is Placeable -> {
46
when (val expression = element.expression) {
47
- is NumberLiteral -> {
48
- val content = expression.value
49
- if (lastText == null) {
50
- lastText = TextElement("")
51
- }
52
- lastText?.let { it.value += content }
53
54
is StringLiteral -> {
55
var content = expression.value
56
content = special.replace(content) { m -> unescape(m) }
0 commit comments