mirror of https://github.com/tc39/test262.git
Replace unicode characters that pyyaml cannot read
This commit is contained in:
parent
a563e3a3f8
commit
224c0ce19e
|
@ -25,9 +25,9 @@ info: |
|
||||||
If IsCallable(predicate) is false, throw a TypeError exception.
|
If IsCallable(predicate) is false, throw a TypeError exception.
|
||||||
Let k be 0.
|
Let k be 0.
|
||||||
Repeat, while k < len,
|
Repeat, while k < len,
|
||||||
Let Pk be ! ToString(𝔽(k)).
|
Let Pk be ! ToString(F(k)).
|
||||||
Let kValue be ? Get(O, Pk).
|
Let kValue be ? Get(O, Pk).
|
||||||
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, 𝔽(k), O »)).
|
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, F(k), O »)).
|
||||||
If testResult is true, return kValue.
|
If testResult is true, return kValue.
|
||||||
Set k to k + 1.
|
Set k to k + 1.
|
||||||
Return undefined.
|
Return undefined.
|
||||||
|
|
|
@ -17,9 +17,9 @@ info: |
|
||||||
22.1.3.9 Array.prototype.findIndex ( predicate[ , thisArg ] )
|
22.1.3.9 Array.prototype.findIndex ( predicate[ , thisArg ] )
|
||||||
|
|
||||||
Repeat, while k < len,
|
Repeat, while k < len,
|
||||||
Let Pk be ! ToString(𝔽(k)).
|
Let Pk be ! ToString(F(k)).
|
||||||
Let kValue be ? Get(O, Pk).
|
Let kValue be ? Get(O, Pk).
|
||||||
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, 𝔽(k), O »)).
|
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, F(k), O »)).
|
||||||
...
|
...
|
||||||
|
|
||||||
IntegerIndexedElementGet ( O, index )
|
IntegerIndexedElementGet ( O, index )
|
||||||
|
|
Loading…
Reference in New Issue