Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix safe-init errors in ContextBase #14570

Merged
merged 1 commit into from
Feb 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions compiler/src/dotty/tools/dotc/core/Contexts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -872,12 +872,12 @@ object Contexts {
/** The loader that loads the members of _root_ */
def rootLoader(root: TermSymbol)(using Context): SymbolLoader = platform.rootLoader(root)

// Set up some phases to get started */
usePhases(List(SomePhase))

/** The standard definitions */
val definitions: Definitions = new Definitions

// Set up some phases to get started */
usePhases(List(SomePhase))

Xavientois marked this conversation as resolved.
Show resolved Hide resolved
/** Initializes the `ContextBase` with a starting context.
* This initializes the `platform` and the `definitions`.
*/
Expand Down