操作符 [] 方法

SpeechGrammar operator [](
  1. int index
)
override

列表中给定 index 位置的属性。

index 必须是本列表的有效索引,即 index 必须是非负数且小于 length 属性的值。

实现方式

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