feat(tvix/eval): builtins.hashString: add placeholder
This adds an unimplemented placeholder for builtins.hashString. Change-Id: Ibc770103acf5dbc3ea7589ab5ca23fe6e07bd91a Reviewed-on: https://cl.tvl.fyi/c/depot/+/10311 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: Adam Joseph <adam@westernsemico.com>
This commit is contained in:
parent
8c8409c0d2
commit
25dd1458b9
1 changed files with 12 additions and 0 deletions
|
@ -518,6 +518,18 @@ mod pure_builtins {
|
|||
)))
|
||||
}
|
||||
|
||||
#[builtin("hashString")]
|
||||
#[allow(non_snake_case)]
|
||||
async fn builtin_hashString(
|
||||
co: GenCo,
|
||||
_algo: Value,
|
||||
_string: Value,
|
||||
) -> Result<Value, ErrorKind> {
|
||||
Ok(Value::Catchable(CatchableErrorKind::UnimplementedFeature(
|
||||
"hashString".to_string(),
|
||||
)))
|
||||
}
|
||||
|
||||
#[builtin("head")]
|
||||
async fn builtin_head(co: GenCo, list: Value) -> Result<Value, ErrorKind> {
|
||||
match list.to_list()?.get(0) {
|
||||
|
|
Loading…
Reference in a new issue