We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 357b860 commit dde90d0Copy full SHA for dde90d0
compiler/src/dotty/tools/dotc/inlines/PrepareInlineable.scala
@@ -86,13 +86,7 @@ object PrepareInlineable {
86
}
87
88
override def transform(tree: Tree)(using Context): Tree =
89
- inContext(stagingContext(tree)) {
90
- postTransform(super.transform(preTransform(tree)))
91
- }
92
-
93
- private def stagingContext(tree: Tree)(using Context): Context = tree match
94
- case tree: Apply if tree.symbol eq defn.QuotedTypeModule_of => StagingLevel.quoteContext
95
- case _ => ctx
+ postTransform(super.transform(preTransform(tree)))
96
97
98
/** Direct approach: place the accessor with the accessed symbol. This has the
0 commit comments