Skip to content

Commit 6b329dc

Browse files
committed
Remove extra members of Symbol
1 parent 7c2b6e3 commit 6b329dc

File tree

3 files changed

+0
-22
lines changed

3 files changed

+0
-22
lines changed

compiler/src/dotty/tools/dotc/tastyreflect/ReflectionCompilerInterface.scala

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,13 +1713,6 @@ class ReflectionCompilerInterface(val rootContext: core.Contexts.Context) extend
17131713

17141714
def Symbol_noSymbol(given ctx: Context): Symbol = core.Symbols.NoSymbol
17151715

1716-
def Symbol_typeRef(symbol: Symbol)(given ctx: Context): TypeOrBounds = symbol.typeRef
1717-
1718-
def Symbol_termRef(symbol: Symbol)(given ctx: Context): TypeOrBounds = symbol.termRef
1719-
1720-
def Symbol_info(symbol: Symbol)(given ctx: Context): TypeOrBounds = symbol.info
1721-
1722-
17231716
//
17241717
// FLAGS
17251718
//

library/src/scala/tasty/reflect/CompilerInterface.scala

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,12 +1255,6 @@ trait CompilerInterface {
12551255

12561256
def Symbol_noSymbol(given ctx: Context): Symbol
12571257

1258-
def Symbol_typeRef(symbol: Symbol)(given ctx: Context): TypeOrBounds
1259-
1260-
def Symbol_termRef(symbol: Symbol)(given ctx: Context): TypeOrBounds
1261-
1262-
def Symbol_info(symbol: Symbol)(given ctx: Context): TypeOrBounds
1263-
12641258
//
12651259
// FLAGS
12661260
//

library/src/scala/tasty/reflect/SymbolOps.scala

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,6 @@ trait SymbolOps extends Core { selfSymbolOps: FlagsOps =>
144144
def companionModule(given ctx: Context): Symbol =
145145
internal.Symbol_companionModule(self)
146146

147-
def typeRef(given ctx: Context): TypeOrBounds =
148-
internal.Symbol_typeRef(self)
149-
150-
def termRef(given ctx: Context): TypeOrBounds =
151-
internal.Symbol_termRef(self)
152-
153-
def info(given ctx: Context): TypeOrBounds =
154-
internal.Symbol_info(self)
155-
156147
}
157148

158149
}

0 commit comments

Comments
 (0)