add '', type checking for incomplete lists in sort, keysort (re: #17)

This commit is contained in:
Mark Thom
2018-04-29 21:53:20 -06:00
parent 13280abbb2
commit 516b67460d
5 changed files with 196 additions and 16 deletions

View File

@@ -554,6 +554,12 @@ pub(crate) trait CallPolicy: Any {
},
&ClauseType::Inlined(ref inlined) => {
machine_st.execute_inlined(inlined, &vec![temp_v!(1), temp_v!(2)]);
Ok(())
},
&ClauseType::SkipMaxList => {
machine_st.skip_max_list();
machine_st.p += 1;
Ok(())
}
}