fix(tvix/eval): use coerce_to_string in builtins.substring

This actually uses coercion under the hood in C++ Nix. See the test
for an example.

Change-Id: Id56b364acf269225b6829d0b600e0222f8b3608d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8322
Reviewed-by: andi <andi@notmuch.email>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2023-03-17 21:51:20 +03:00 committed by tazjin
parent 68d287fd82
commit b78ae941a4
3 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
# builtins.substring uses string coercion internally
builtins.substring 0 2 {
__toString = _: "4200";
}