mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
clarify why builtins are skipped
This commit is contained in:
parent
ed247c9da3
commit
f97b10c6f3
1 changed files with 4 additions and 0 deletions
|
@ -64,6 +64,10 @@ impl ExposedForModule {
|
|||
let mut imported_symbols = Vec::new();
|
||||
|
||||
for symbol in it {
|
||||
// Today, builtins are not actually imported,
|
||||
// but generated in each module that uses them
|
||||
//
|
||||
// This will change when we write builtins in roc
|
||||
if symbol.is_builtin() {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue