Changeset 36271 in webkit for trunk/JavaScriptCore/kjs/nodes.h
- Timestamp:
- Sep 8, 2008, 1:42:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.h
r36270 r36271 234 234 virtual bool isEmptyStatement() const JSC_FAST_CALL { return false; } 235 235 236 virtual bool isBlock() const KJS_FAST_CALL { return false; }236 virtual bool isBlock() const JSC_FAST_CALL { return false; } 237 237 protected: 238 238 LabelStack m_labelStack; … … 1828 1828 StatementVector& children() { return m_children; } 1829 1829 1830 virtual bool isBlock() const KJS_FAST_CALL { return true; }1830 virtual bool isBlock() const JSC_FAST_CALL { return true; } 1831 1831 protected: 1832 1832 StatementVector m_children;
Note:
See TracChangeset
for help on using the changeset viewer.