Changeset 12523 in webkit for trunk/JavaScriptCore/kjs/internal.h
- Timestamp:
- Feb 2, 2006, 12:22:43 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.h
r12317 r12523 32 32 #include "interpreter.h" 33 33 #include "scope_chain.h" 34 #include <kxmlcore/Noncopyable.h> 34 35 #include <kxmlcore/RefPtr.h> 35 36 … … 132 133 * @short The "label set" in Ecma-262 spec 133 134 */ 134 class LabelStack {135 public: 136 LabelStack(): tos(0 L), iterationDepth(0), switchDepth(0) {}135 class LabelStack : Noncopyable { 136 public: 137 LabelStack(): tos(0), iterationDepth(0), switchDepth(0) {} 137 138 ~LabelStack(); 138 139 … … 160 161 161 162 private: 162 LabelStack(const LabelStack &other);163 LabelStack &operator=(const LabelStack &other);164 165 163 struct StackElem { 166 164 Identifier id;
Note:
See TracChangeset
for help on using the changeset viewer.