A few fixes to docs generation and default config (#4570)

* A few fixes to docs generation and default config

* A few more fixes
This commit is contained in:
JT
2022-02-20 15:20:41 -05:00
committed by GitHub
parent 6024a17a5b
commit 2ba12afb01
9 changed files with 88 additions and 62 deletions

View File

@ -937,6 +937,12 @@ pub fn eval_variable(
span,
});
cols.push("is_extern".to_string());
vals.push(Value::Bool {
val: decl.is_known_external(),
span,
});
cols.push("creates_scope".to_string());
vals.push(Value::Bool {
val: signature.creates_scope,