We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3cb6b0 commit e6706d1Copy full SHA for e6706d1
src/dotty/tools/dotc/core/Symbols.scala
@@ -47,13 +47,6 @@ trait Symbols { this: Context =>
47
48
// ---- Symbol creation methods ----------------------------------
49
50
- /** Create a symbol from a function producing its denotation */
51
- def newSymbolDenoting[N <: Name](denotFn: Symbol => SymDenotation, coord: Coord = NoCoord): Symbol { type ThisName = N } = {
52
- val sym = newNakedSymbol[N](coord)
53
- sym.denot = denotFn(sym)
54
- sym
55
- }
56
-
57
/** Create a symbol from its fields (info may be lazy) */
58
def newSymbol[N <: Name](
59
owner: Symbol,
0 commit comments