зеркало из https://github.com/mozilla/pjs.git
Bug 140687: Make substring() for all start-indexes
r=Pike, sr=jst
This commit is contained in:
Родитель
f458de53ca
Коммит
2357f97675
|
@ -169,7 +169,7 @@ ExprResult* StringFunctionCall::evaluate(Node* aContext, ContextState* aCs)
|
|||
// check for NaN or +/-Inf
|
||||
if (Double::isNaN(start) ||
|
||||
Double::isInfinite(start) ||
|
||||
start + 0.5 >= src.length())
|
||||
start >= src.length() + 0.5)
|
||||
return new StringResult();
|
||||
|
||||
start = floor(start + 0.5) - 1;
|
||||
|
|
Загрузка…
Ссылка в новой задаче