about summary refs log tree commit diff
path: root/src/etc/check_missing_items.py
AgeCommit message (Collapse)AuthorLines
2022-09-14Remove check_missing_items.pyNixon Enraght-Moony-202/+0
2022-09-13Rustdoc-Json: Don't loose subitems of foreign traits.Nixon Enraght-Moony-2/+7
2022-09-07Rustdoc-Json: More accurate struct type.Nixon Enraght-Moony-3/+5
Closes #101489
2022-09-05Rustdoc-Json: Store Variant Fields as their own item.Nixon Enraght-Moony-3/+3
Closes #100587 Closes #92945
2022-08-29check_missing_items.py: Check importsNixon Enraght-Moony-0/+6
2022-08-10Rustdoc-Json: Add `Path` type for traits.Nixon Enraght-Moony-29/+29
Closes #100106
2022-07-30check_missing_items.py: Don't overwrite `ty` in loopNixon Enraght-Moony-2/+2
Because python doesn't have lexical scope, loop variables persist after the loop is exited, set to the value of the last itteration ``` >>> i = 0 >>> for i in range(10): pass ... >>> i 9 ``` This causes the `ty` variable to be changed, causing unexpected crashes on ``` pub type RefFn<'a> = &'a dyn for<'b> Fn(&'a i32) -> i32; ```
2022-04-30Store all generic bounds as where predicates.Camille GILLOT-2/+0
2022-03-14rustdoc-json-types: implementors -> implementationsNixon Enraght-Moony-1/+1
Closes #94198
2022-03-13rustdoc-json-types: ty -> type_Nixon Enraght-Moony-1/+1
Fixes #94889
2022-01-17Add term to ExistentialProjectionkadmin-1/+3
Also prevent ICE when adding a const in associated const equality.
2021-09-30Encode json files with UTF-8Hirochika Matsumoto-1/+1
2021-02-08Make `header` a vec of modifiers, make FunctionPointer consistent with ↵Rune Tynan-1/+1
Function and Method.
2021-01-19Add jsondocck tool, and use it for rustdoc JSONRune Tynan-0/+189