mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
use only references (no Vec) in canonical AST
This commit is contained in:
parent
4002778e4c
commit
047746c716
7 changed files with 74 additions and 35 deletions
|
@ -32,7 +32,7 @@ pub struct DocEntry {
|
|||
pub fn generate_module_docs<'a>(
|
||||
module_name: ModuleName,
|
||||
exposed_ident_ids: &'a IdentIds,
|
||||
parsed_defs: &'a bumpalo::collections::Vec<'a, Located<Def<'a>>>,
|
||||
parsed_defs: &'a [Located<Def<'a>>],
|
||||
) -> ModuleDocumentation {
|
||||
let (entries, _) =
|
||||
parsed_defs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue