File tree Expand file tree Collapse file tree 3 files changed +0
-23
lines changed
compiler/src/dotty/tools/dotc/tastyreflect
library/src/scala/tasty/reflect Expand file tree Collapse file tree 3 files changed +0
-23
lines changed Original file line number Diff line number Diff 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 //
Original file line number Diff line number Diff 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 //
Original file line number Diff line number Diff line change @@ -143,16 +143,6 @@ trait SymbolOps extends Core { selfSymbolOps: FlagsOps =>
143143 /** The symbol of the companion module */
144144 def companionModule (given ctx : Context ): Symbol =
145145 internal.Symbol_companionModule (self)
146-
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-
156146 }
157147
158148}
You can’t perform that action at this time.
0 commit comments