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