Changeset 38133 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Nov 5, 2008, 11:51:35 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/LabelScope.h
r38047 r38133 51 51 } 52 52 53 // It doesn't really make sense to copy a LabelScope, but we need this copy54 // constructor to support moving LabelScopes in a Vector.55 56 LabelScope(const LabelScope& other)57 : m_refCount(other.m_refCount)58 , m_type(other.m_type)59 , m_name(other.m_name)60 , m_scopeDepth(other.m_scopeDepth)61 , m_breakTarget(other.m_breakTarget)62 , m_continueTarget(other.m_continueTarget)63 {64 }65 66 53 void ref() { ++m_refCount; } 67 54 void deref()
Note:
See TracChangeset
for help on using the changeset viewer.