File tree 3 files changed +10
-0
lines changed
compiler/src/dotty/tools/dotc/tastyreflect 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
1935
1935
def Definitions_Array_update : Symbol = defn.Array_update .asTerm
1936
1936
1937
1937
def Definitions_RepeatedParamClass : Symbol = defn.RepeatedParamClass
1938
+ def Definitions_RepeatedAnnot : Symbol = defn.RepeatedAnnot
1938
1939
1939
1940
def Definitions_OptionClass : Symbol = defn.OptionClass
1940
1941
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 =>
2650
2650
*/
2651
2651
def RepeatedParamClass : Symbol = internal.Definitions_RepeatedParamClass
2652
2652
2653
+ /** The class symbol of class `scala.annotation.internal.Repeated` */
2654
+ def RepeatedAnnot : Symbol = internal.Definitions_RepeatedAnnot
2655
+
2653
2656
/** The class symbol of class `scala.Option`. */
2654
2657
def OptionClass : Symbol = internal.Definitions_OptionClass
2655
2658
Original file line number Diff line number Diff line change @@ -1478,8 +1478,14 @@ trait CompilerInterface {
1478
1478
def Definitions_Array_length : Symbol
1479
1479
def Definitions_Array_update : Symbol
1480
1480
1481
+ /** A dummy class symbol that is used to indicate repeated parameters
1482
+ * compiled by the Scala compiler.
1483
+ */
1481
1484
def Definitions_RepeatedParamClass : Symbol
1482
1485
1486
+ /** The class symbol of class `scala.annotation.internal.Repeated` */
1487
+ def Definitions_RepeatedAnnot : Symbol
1488
+
1483
1489
def Definitions_OptionClass : Symbol
1484
1490
def Definitions_NoneModule : Symbol
1485
1491
def Definitions_SomeModule : Symbol
You can’t perform that action at this time.
0 commit comments