| Index: vm/symbols.h
|
| ===================================================================
|
| --- vm/symbols.h (revision 15920)
|
| +++ vm/symbols.h (working copy)
|
| @@ -147,6 +147,10 @@
|
|
|
| #define PREDEFINED_SYMBOL_HANDLES_LIST(V) \
|
| V(Dot) \
|
| + V(EqualOperator) \
|
| + V(IndexToken) \
|
| + V(AssignIndexToken) \
|
| + V(This) \
|
|
|
| // Contains a list of frequently used strings in a canonicalized form. This
|
| // list is kept in the vm_isolate in order to share the copy across isolates
|
| @@ -220,6 +224,8 @@
|
| return reinterpret_cast<RawString**>(&predefined_);
|
| }
|
|
|
| + static bool IsPredefinedHandle(uword address);
|
| +
|
| private:
|
| enum {
|
| kInitialVMIsolateSymtabSize = ((kMaxId + 15) & -16),
|
|
|