feat(selector): 使用双引号序列化

This commit is contained in:
lisonge 2023-12-01 11:20:56 +08:00
parent c17554509a
commit b53e385a9f

View File

@ -9,7 +9,7 @@ data class BinaryExpression(val name: String, val operator: CompareOperator, val
override fun toString() = "${name}${operator}${
if (value is String) {
val wrapChar = '\''
val wrapChar = '"'
val sb = StringBuilder()
sb.append(wrapChar)
value.forEach { c ->