Changeset 33972 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- May 21, 2008, 12:15:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r32259 r33972 94 94 class IndexToNameMap { 95 95 public: 96 IndexToNameMap(FunctionImp* func, const List& args);96 IndexToNameMap(FunctionImp*, const List& args); 97 97 ~IndexToNameMap(); 98 98 99 Identifier& operator[](int index); 100 Identifier& operator[](const Identifier &indexIdentifier); 99 Identifier& operator[](const Identifier& index); 101 100 bool isMapped(const Identifier& index) const; 102 101 void unMap(const Identifier& index); 103 102 104 103 private: 105 IndexToNameMap(); // prevent construction w/o parameters 106 int size; 104 unsigned size; 107 105 Identifier* _map; 108 106 };
Note:
See TracChangeset
for help on using the changeset viewer.