| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| // and symbol.flags will contains combined representation for all merged declaration. | ||
| // Based on symbol.flags we can compute a set of excluded meanings (meaning that resolved alias should not have, | ||
| // otherwise it will conflict with some local declaration). Note that in addition to normal flags we include matching SymbolFlags.Export* | ||
| // in order to prevent collisions with declarations that were exported from the current module (they still contribute to local names). |
There was a problem hiding this comment.
This means that previously we would correctly catch unexported functions, right? Like:
import {f} from "f1"
function f() { }
Sorry, something went wrong.
There was a problem hiding this comment.
yes and we still do this
Sorry, something went wrong.
|
👍 |
Sorry, something went wrong.
|
👍 |
Sorry, something went wrong.
check if import collides with exported local name
| Back | FazBrowse Home | New Git URL |
fixes #7195