Add jsondocck tool, and use it for rustdoc JSON

This commit is contained in:
Rune Tynan 2021-01-15 20:34:15 -05:00
parent f09fb488f7
commit 7715656edd
No known key found for this signature in database
GPG key ID: 7ECC932F8B2C731E
25 changed files with 546 additions and 820 deletions

View file

@ -0,0 +1,6 @@
// @has tuple.json "$.index.['0:3'].name" \"Tuple\"
// @has - "$.index.['0:3'].visibility" \"public\"
// @has - "$.index.['0:3'].kind" \"struct\"
// @has - "$.index.['0:3'].inner.struct_type" \"tuple\"
// @has - "$.index.['0:3'].inner.fields_stripped" true
pub struct Tuple(u32, String);