2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:14:13: The 1 arguments passed to .num method does not match its requiring 0 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
14 | v = a.num("badarg");
|
|
|
|
| ^~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:15:13: The 1 arguments passed to .size method does not match its requiring 0 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
15 | v = a.size("badarg");
|
|
|
|
| ^~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:16:13: The 0 arguments passed to .exists method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
16 | v = a.exists();
|
|
|
|
| ^~~~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:17:13: The 2 arguments passed to .exists method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
17 | v = a.exists(k, "bad2");
|
|
|
|
| ^~~~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:18:13: The 0 arguments passed to .first method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
18 | v = a.first();
|
|
|
|
| ^~~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:19:13: The 2 arguments passed to .next method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
19 | v = a.next(k, "bad2");
|
|
|
|
| ^~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:20:13: The 0 arguments passed to .last method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
20 | v = a.last();
|
|
|
|
| ^~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:21:13: The 2 arguments passed to .prev method does not match its requiring 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
21 | v = a.prev(k, "bad2");
|
|
|
|
| ^~~~
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_assoc_meth_bad.v:22:9: The 2 arguments passed to .delete method does not match its requiring 0 to 1 arguments
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... In instance t
|
2020-04-04 00:07:46 +00:00
|
|
|
22 | a.delete(k, "bad2");
|
|
|
|
| ^~~~~~
|
2019-12-01 16:52:48 +00:00
|
|
|
%Error: Exiting due to
|