lib.gvariant: escape backslashes in strings

PR #1433
This commit is contained in:
Symphorien Gibol 2020-08-08 12:00:00 +00:00 committed by Robert Helgesson
parent d1f4d1514d
commit e1fbb74b41
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,7 @@ in rec {
mkString = v:
mkPrimitive type.string v // {
__toString = self: "'${escape [ "'" ] self.value}'";
__toString = self: "'${escape [ "'" "\\" ] self.value}'";
};
mkObjectpath = v:

View File

@ -26,6 +26,7 @@ in {
{ string = "foo"; }
{ string = "foo"; }
{ escapedString = "' \\"; }
{ tuple = mkTuple [ 1 [ "foo" ] ]; }
@ -46,6 +47,7 @@ in {
bool = true
emptyArray1 = @as []
emptyArray2 = @as []
escapedString = '\' \\'
float = 3.140000
int = 42
list = @as ['one','two']