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

@ -835,7 +835,7 @@ mod pure_builtins {
) -> Result<Value, ErrorKind> {
let beg = start.as_int()?;
let len = len.as_int()?;
let x = s.to_str()?;
let x = s.coerce_to_string(co, CoercionKind::Weak).await?.to_str()?;
if beg < 0 {
return Err(ErrorKind::IndexOutOfBounds { index: beg });

View file

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