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