blob: 9d11a7f46a16f9de62f172ef14b62b2183d17346 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.charcodeat
es6id: 21.1.3.2
description: Coercion of "pos" string value into number
info: |
[...]
3. Let position be ? ToInteger(pos).
[...]
7.1.4 ToInteger
1. Let number be ? ToNumber(argument).
---*/
var cCode = 99;
assert.sameValue('abcd'.charCodeAt(' +00200.0000E-0002 '), cCode);