File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
src/librustdoc/html/static/js Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -1591,9 +1591,6 @@ function loadDatabase(hooks) {
1591
1591
// if we want to do them in order)
1592
1592
for ( const { node, len} of current_layer ) {
1593
1593
const tree = await node ;
1594
- if ( tree . leaves_whole . isEmpty ( ) ) {
1595
- continue ;
1596
- }
1597
1594
const length = len + tree . data . length ;
1598
1595
if ( minLength === null || length < minLength ) {
1599
1596
minLength = length ;
@@ -1618,7 +1615,9 @@ function loadDatabase(hooks) {
1618
1615
if ( minLength !== null && backlogEntry . length > minLength ) {
1619
1616
break ;
1620
1617
}
1621
- yield backlogEntry . bitmap ;
1618
+ if ( ! backlogEntry . bitmap . isEmpty ( ) ) {
1619
+ yield backlogEntry . bitmap ;
1620
+ }
1622
1621
backlog [ 0 ] = backlog [ backlog . length - 1 ] ;
1623
1622
backlog . length -= 1 ;
1624
1623
let backlogSlot = 0 ;
Original file line number Diff line number Diff line change
1
+ const EXPECTED = [
2
+ {
3
+ 'query' : 'Entry' ,
4
+ 'others' : [
5
+ { 'path' : 'ordering' , 'name' : 'Entry1a' } ,
6
+ { 'path' : 'ordering' , 'name' : 'Entry2ab' } ,
7
+ ] ,
8
+ } ,
9
+ ] ;
Original file line number Diff line number Diff line change
1
+ pub struct Entry1a ;
2
+ pub struct Entry1b ;
3
+ pub struct Entry2ab ;
You can’t perform that action at this time.
0 commit comments