pub(crate) fn str_match_all(
it: &mut Interp,
t: Value,
a: &[Value],
) -> Result<Value, Value>Expand description
String.prototype.matchAll(regexp)。以前は regexp に g フラグが無くても
黙って全件マッチを返しており、仕様上必須の TypeError(無限ループの温床になり得る
ため意図的に要求される)を投げていなかった。