mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
Created scope and idents for module docs, but they appear to be empty when the doc links function tries to use them
This commit is contained in:
parent
b22612b93c
commit
12c0067348
9 changed files with 144 additions and 104 deletions
|
@ -1,6 +1,6 @@
|
|||
use crate::ident::Ident;
|
||||
use inlinable_string::InlinableString;
|
||||
use roc_collections::all::{default_hasher, ImMap, MutMap};
|
||||
use roc_collections::all::{default_hasher, MutMap, SendMap};
|
||||
use roc_region::all::Region;
|
||||
use std::collections::HashMap;
|
||||
use std::{fmt, u32};
|
||||
|
@ -697,8 +697,8 @@ macro_rules! define_builtins {
|
|||
/// and what symbols they should resolve to.
|
||||
///
|
||||
/// This is for type aliases like `Int` and `Str` and such.
|
||||
pub fn default_in_scope() -> ImMap<Ident, (Symbol, Region)> {
|
||||
let mut scope = ImMap::default();
|
||||
pub fn default_in_scope() -> SendMap<Ident, (Symbol, Region)> {
|
||||
let mut scope = SendMap::default();
|
||||
|
||||
$(
|
||||
$(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue