Remove PascaLIGO set_size
This commit is contained in:
parent
c4cc4fcba9
commit
1f50cc8f57
@ -82,7 +82,6 @@ module Simplify = struct
|
||||
("set_remove" , "SET_REMOVE") ;
|
||||
("set_iter" , "SET_ITER") ;
|
||||
("set_fold" , "SET_FOLD") ;
|
||||
("set_size" , "SIZE");
|
||||
("list_iter" , "LIST_ITER") ;
|
||||
("list_fold" , "LIST_FOLD") ;
|
||||
("list_map" , "LIST_MAP") ;
|
||||
|
@ -31,6 +31,3 @@ function patch_op_empty (var s: set(string)) : set(string) is
|
||||
|
||||
function mem_op (const s : set(string)) : bool is
|
||||
begin skip end with set_mem("foobar" , s)
|
||||
|
||||
function size_op (const s : set(string)) : nat is
|
||||
set_size(s);
|
||||
|
@ -280,10 +280,6 @@ let set_arithmetic () : unit result =
|
||||
expect_eq program "patch_op_empty"
|
||||
(e_set [e_string "foo" ; e_string "bar"])
|
||||
(e_set [e_string "foo" ; e_string "bar"]) in
|
||||
let%bind () =
|
||||
expect_eq program "size_op"
|
||||
(e_set [e_string "foo" ; e_string "bar" ; e_string "foobar"])
|
||||
(e_nat 3) in
|
||||
let%bind () =
|
||||
expect_eq program "mem_op"
|
||||
(e_set [e_string "foo" ; e_string "bar" ; e_string "foobar"])
|
||||
|
Loading…
Reference in New Issue
Block a user