Lines Matching refs:radix
173 // 2. If radix is not present, let radixNumber be 10
174 double radix = base::DECIMAL;
176 // 3. Else, let radixNumber be ? ToIntegerOrInfinity(radix).
180 radix = radixNumber.GetNumber();
183 if (radix < base::MIN_RADIX || radix > base::MAX_RADIX) {
184 THROW_RANGE_ERROR_AND_RETURN(thread, "toString() radix argument must be between 2 and 36",
188 if (radix == base::DECIMAL) {
191 // 6. Return the String representation of this BigInt value using the radix specified by radixNumber
192 return BigInt::ToString(thread, thisBigint, static_cast<int>(radix)).GetTaggedValue();