数组操作符方法

Plugin 数组操作符 (
  1. int index
)
override

在列表中指定索引的该对象。

index必须是该列表的有效索引,这意味着index必须是非负数且小于长度

实现

Plugin operator [](int index) {
  if (JS("bool", "# >>> 0 !== # || # >= #", index, index, index, length))
    throw new IndexError.withLength(index, length, indexable: this);
  return JS("Plugin", "#[#]", this, index);
}