Not all missing bindings will be reported as missing #47
Labels
No labels
blocked
blocker
bug
c
codegen
dependencies
discussion
documentation
duplicate
enhancement
good first issue
help wanted
in progress
invalid
javascript
lexer/parser
llvm
macroexpander
performance
priority:high
priority:low
priority:normal
question
triage
typechecker
webassembly
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: samvv/bolt#47
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Not sure if this is a bug, but there is an issue with references to a type or variable that does not exist only being reported once. If
a
does not exist, anda
appears multiple times in a source file, then only the firsta
that is missing will be reported.This issue would be especially visible when using the compiler as a language server. Not all invalid references would be highlighted, only the first one.
It appears that some language servers (such as
clangd
) exhibit the same behavior.Closing in favor of #62.