Skip to content

Commit

Permalink
feat(selector): 使用双引号序列化
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Dec 1, 2023
1 parent c175545 commit b53e385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ->
Expand Down

0 comments on commit b53e385

Please sign in to comment.