operator [] 方法
- int index
override
列表中指定 index
的对象。
index
必须是本列表的有效索引,这意味着 index
必须是非负数,且小于 length。
实现
Touch operator [](int index) {
if (JS("bool", "# >>> 0 !== # || # >= #", index, index, index, length))
throw new IndexError.withLength(index, length, indexable: this);
return JS("Touch", "#[#]", this, index);
}