[jsinterp] Add charcodeAt and bitwise overflow (#4706)

Authored by: elyse0
This commit is contained in:
Elyse 2022-08-19 00:30:04 -05:00 committed by pukkandan
parent bfbecd1174
commit f26af78a8a
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
2 changed files with 27 additions and 3 deletions

View file

@ -18,10 +18,11 @@ from .utils import (
def _js_bit_op(op):
def zeroise(x):
return 0 if x in (None, JS_Undefined) else x
def wrapped(a, b):
def zeroise(x):
return 0 if x in (None, JS_Undefined) else x
return op(zeroise(a), zeroise(b))
return op(zeroise(a), zeroise(b)) & 0xffffffff
return wrapped
@ -692,6 +693,13 @@ class JSInterpreter:
return obj.index(idx, start)
except ValueError:
return -1
elif member == 'charCodeAt':
assertion(isinstance(obj, str), 'must be applied on a string')
assertion(len(argvals) == 1, 'takes exactly one argument')
idx = argvals[0] if isinstance(argvals[0], int) else 0
if idx >= len(obj):
return None
return ord(obj[idx])
idx = int(member) if isinstance(obj, list) else member
return obj[idx](argvals, allow_recursion=allow_recursion)