about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-okay-tojson.nix
blob: ce67943bead54d83da4abedbce4c3ed7c062b9e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
builtins.toJSON
  { a = 123;
    b = -456;
    c = "foo";
    d = "foo\n\"bar\"";
    e = true;
    f = false;
    g = [ 1 2 3 ];
    h = [ "a" [ "b" { "foo\nbar" = {}; } ] ];
    i = 1 + 2;
    j = 1.44;
    k = { __toString = self: self.a; a = "foo"; };
  }