diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-05-31 11:52:20 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-05-31 11:52:20 -0700 |
commit | f86a214357ce4e54d0d5c56c7db295ec745814c3 (patch) | |
tree | 2c6954837f85bc586ba348678322267a26a14a73 /deps/v8/src/stub-cache.h | |
parent | 0c1aa36835fa6a3557843dcbc6ed6714d353a783 (diff) | |
download | node-new-f86a214357ce4e54d0d5c56c7db295ec745814c3.tar.gz |
Upgrade to V8 2.2.13
Diffstat (limited to 'deps/v8/src/stub-cache.h')
-rw-r--r-- | deps/v8/src/stub-cache.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/deps/v8/src/stub-cache.h b/deps/v8/src/stub-cache.h index 45aaf75c91..7db6eb41d4 100644 --- a/deps/v8/src/stub-cache.h +++ b/deps/v8/src/stub-cache.h @@ -568,9 +568,11 @@ class KeyedStoreStubCompiler: public StubCompiler { // a builtin function on its instance prototype (the one the generator // is set for), and a name of a generator itself (used to build ids // and generator function names). -#define CUSTOM_CALL_IC_GENERATORS(V) \ - V(array, push, ArrayPush) \ - V(array, pop, ArrayPop) +#define CUSTOM_CALL_IC_GENERATORS(V) \ + V(array, push, ArrayPush) \ + V(array, pop, ArrayPop) \ + V(string, charCodeAt, StringCharCodeAt) \ + V(string, charAt, StringCharAt) class CallStubCompiler: public StubCompiler { |