aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/runtime/vc/VCPrototype.scala
blob: a916548645fb41457499353e135a82def30e0ffa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package dotty.runtime.vc

abstract class VCPrototype {
}


abstract class VCArrayPrototype[T <: VCPrototype] extends Object with Cloneable with VCArrayClone {
  def apply(idx: Int): Object
  def update(idx: Int, el: T): Unit
  def length: Int
}