File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
compiler/src/dotty/tools/dotc/tastyreflect Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1935,6 +1935,7 @@ class ReflectionCompilerInterface(val rootContext: core.Contexts.Context) extend
19351935 def Definitions_Array_update : Symbol = defn.Array_update .asTerm
19361936
19371937 def Definitions_RepeatedParamClass : Symbol = defn.RepeatedParamClass
1938+ def Definitions_RepeatedAnnot : Symbol = defn.RepeatedAnnot
19381939
19391940 def Definitions_OptionClass : Symbol = defn.OptionClass
19401941 def Definitions_NoneModule : Symbol = defn.NoneModule
Original file line number Diff line number Diff line change @@ -2650,6 +2650,9 @@ class Reflection(private[scala] val internal: CompilerInterface) { self =>
26502650 */
26512651 def RepeatedParamClass : Symbol = internal.Definitions_RepeatedParamClass
26522652
2653+ /** The class symbol of class `scala.annotation.internal.Repeated` */
2654+ def RepeatedAnnot : Symbol = internal.Definitions_RepeatedAnnot
2655+
26532656 /** The class symbol of class `scala.Option`. */
26542657 def OptionClass : Symbol = internal.Definitions_OptionClass
26552658
Original file line number Diff line number Diff line change @@ -1478,8 +1478,14 @@ trait CompilerInterface {
14781478 def Definitions_Array_length : Symbol
14791479 def Definitions_Array_update : Symbol
14801480
1481+ /** A dummy class symbol that is used to indicate repeated parameters
1482+ * compiled by the Scala compiler.
1483+ */
14811484 def Definitions_RepeatedParamClass : Symbol
14821485
1486+ /** The class symbol of class `scala.annotation.internal.Repeated` */
1487+ def Definitions_RepeatedAnnot : Symbol
1488+
14831489 def Definitions_OptionClass : Symbol
14841490 def Definitions_NoneModule : Symbol
14851491 def Definitions_SomeModule : Symbol
You can’t perform that action at this time.
0 commit comments