(
_match=_match,
_layouts=_layouts,
_level_params=level_params,
_level_loc=sub_loc,
_level_view_path=level_view_path,
_sub_chain=sub_chain,
)
| 877 | _layouts = [lm for lm in layouts if sub_chain.index(lm) < match_idx] |
| 878 | |
| 879 | def build_view_content( |
| 880 | _match=_match, |
| 881 | _layouts=_layouts, |
| 882 | _level_params=level_params, |
| 883 | _level_loc=sub_loc, |
| 884 | _level_view_path=level_view_path, |
| 885 | _sub_chain=sub_chain, |
| 886 | ): |
| 887 | return _view_path_context( |
| 888 | _level_view_path, |
| 889 | lambda: _location_context( |
| 890 | _level_loc, |
| 891 | lambda: _params_context( |
| 892 | _level_params, |
| 893 | lambda: _build_view_level( |
| 894 | _layouts, _match, loader_results, _sub_chain |
| 895 | ), |
| 896 | ), |
| 897 | ), |
| 898 | ) |
| 899 | |
| 900 | results.append(build_view_content()) |
| 901 |
no test coverage detected