Rename List.push to List.append

This commit is contained in:
Chad Stearns 2020-07-25 03:43:52 -04:00
parent 0b078783fd
commit 759f1289d6
11 changed files with 29 additions and 29 deletions

View file

@ -1820,7 +1820,7 @@ fn run_low_level<'a, 'ctx, 'env>(
}
}
ListConcat => list_concat(env, layout_ids, scope, parent, args),
ListPush => {
ListAppend => {
// List.push List elem, elem -> List elem
debug_assert_eq!(args.len(), 2);