operator [] 方法

Node operator [](
  1. int index
)
override

给定列表中 index 位置的元素。

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

实现方式

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