Lines Matching full:depth
5 for (depth, is_ok) in depths { in array_recursion_limit()
6 let input = format!("x={}{}", &"[".repeat(depth), &"]".repeat(depth)); in array_recursion_limit()
8 assert_eq!(document.is_ok(), is_ok, "depth: {}", depth); in array_recursion_limit()
16 for (depth, is_ok) in depths { in inline_table_recursion_limit()
17 let input = format!("x={}true{}", &"{ x = ".repeat(depth), &"}".repeat(depth)); in inline_table_recursion_limit()
19 assert_eq!(document.is_ok(), is_ok, "depth: {}", depth); in inline_table_recursion_limit()
27 for (depth, is_ok) in depths { in table_key_recursion_limit()
28 let input = format!("[x{}]", &".x".repeat(depth)); in table_key_recursion_limit()
30 assert_eq!(document.is_ok(), is_ok, "depth: {}", depth); in table_key_recursion_limit()
38 for (depth, is_ok) in depths { in dotted_key_recursion_limit()
39 let input = format!("x{} = true", &".x".repeat(depth)); in dotted_key_recursion_limit()
41 assert_eq!(document.is_ok(), is_ok, "depth: {}", depth); in dotted_key_recursion_limit()
49 for (depth, is_ok) in depths { in inline_dotted_key_recursion_limit()
50 let input = format!("x = {{ x{} = true }}", &".x".repeat(depth)); in inline_dotted_key_recursion_limit()
52 assert_eq!(document.is_ok(), is_ok, "depth: {}", depth); in inline_dotted_key_recursion_limit()