@@ -131,10 +131,10 @@ trait StandardDefinitions {
131
131
* scala> val m = typeOf[C].member(TermName("m")).asMethod
132
132
* m: reflect.runtime.universe.MethodSymbol = method m
133
133
*
134
- * scala> m.params (0)(0).info
134
+ * scala> m.paramLists (0)(0).info
135
135
* res1: reflect.runtime.universe.Type = => scala.Int
136
136
*
137
- * scala> showRaw(m.params (0)(0).info)
137
+ * scala> showRaw(m.paramLists (0)(0).info)
138
138
* res2: String = TypeRef(
139
139
* ThisType(scala),
140
140
* scala.<byname>, // <-- ByNameParamClass
@@ -159,10 +159,10 @@ trait StandardDefinitions {
159
159
* scala> val m = typeOf[C].member(TermName("m")).asMethod
160
160
* m: reflect.runtime.universe.MethodSymbol = method m
161
161
*
162
- * scala> m.params (0)(0).info
162
+ * scala> m.paramLists (0)(0).info
163
163
* res1: reflect.runtime.universe.Type = <repeated...>[Object]
164
164
*
165
- * scala> showRaw(m.params (0)(0).info)
165
+ * scala> showRaw(m.paramLists (0)(0).info)
166
166
* res2: String = TypeRef(
167
167
* ThisType(scala),
168
168
* scala.<repeated...>, // <-- JavaRepeatedParamClass
@@ -184,10 +184,10 @@ trait StandardDefinitions {
184
184
* scala> val m = typeOf[C].member(TermName("m")).asMethod
185
185
* m: reflect.runtime.universe.MethodSymbol = method m
186
186
*
187
- * scala> m.params (0)(0).info
187
+ * scala> m.paramLists (0)(0).info
188
188
* res1: reflect.runtime.universe.Type = scala.Int*
189
189
*
190
- * scala> showRaw(m.params (0)(0).info)
190
+ * scala> showRaw(m.paramLists (0)(0).info)
191
191
* res2: String = TypeRef(
192
192
* ThisType(scala),
193
193
* scala.<repeated>, // <-- RepeatedParamClass
0 commit comments