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 9b55b2d commit fb58b01Copy full SHA for fb58b01
compiler/src/dotty/tools/dotc/semanticdb/SyntheticsExtractor.scala
@@ -77,7 +77,9 @@ class SyntheticsExtractor:
77
)
78
).toOpt
79
80
- case tree: Apply if tree.fun.symbol.is(Implicit) =>
+ case tree: Apply
81
+ if tree.fun.symbol.is(Implicit) ||
82
+ (tree.fun.symbol.name == nme.apply && tree.fun.span.isSynthetic) =>
83
val pos = range(tree.span, tree.source)
84
s.Synthetic(
85
pos,
0 commit comments