You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Protect moduleNestedCtx to prevent it from being imported by import build._ (#5346)
Fixes#5345
The basic problem was that `import build._` pulled in the
`build.moduleNestedCtx` implicit, which depending on scoping could
over-ride the lexical `moduleNestedCtx`. This fix makes
`moduleNestedCtx` `protected`, so it is available in the nested scope
but cannot be imported
Tested manually, seems to fix the reported problem
0 commit comments