Cleans up and adds nested case to test

This commit is contained in:
uniqueiniquity
2017-08-11 13:42:14 -07:00
parent c7d691dc15
commit d6ccee6766
@@ -22,20 +22,34 @@
////
////// same behavior for nested arrays
//// const w =[| [
//// [|[ a: 0 ]|],
//// [|[ b: 1 ]|],
//// [|[ c: 2 ]|]
//// [|[ 0 ]|],
//// [|[ 1 ]|],
//// [|[ 2 ]|]
//// ]|];
////
//// const z =[| [
//// [|[
//// a: 0
//// 0
//// ]|],
//// [|[
//// b: 1
//// 1
//// ]|],
//// [|[
//// c: 2
//// 2
//// ]|]
//// ]|];
////
////// multiple levels of nesting work as expected
//// const z =[| [
//// [|[
//// [|{ hello: 0 }|]
//// ]|],
//// [|[
//// [|{ hello: 3 }|]
//// ]|],
//// [|[
//// [|{ hello: 5 }|],
//// [|{ hello: 7 }|]
//// ]|]
//// ]|];