Changeset 41342 in webkit for trunk/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Mar 1, 2009, 11:35:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Nodes.h
r40131 r41342 195 195 virtual bool isExprStatement() const JSC_FAST_CALL { return false; } 196 196 197 virtual bool isBlock() const JSC_FAST_CALL { return false; }198 virtual bool isLoop() const JSC_FAST_CALL { return false; }199 200 197 private: 201 198 int m_lastLine; … … 1709 1706 StatementVector& children() { return m_children; } 1710 1707 1711 virtual bool isBlock() const JSC_FAST_CALL { return true; }1712 1713 1708 private: 1714 1709 StatementVector m_children; … … 1822 1817 virtual RegisterID* emitBytecode(BytecodeGenerator&, RegisterID* = 0) JSC_FAST_CALL; 1823 1818 1824 virtual bool isLoop() const JSC_FAST_CALL { return true; }1825 1826 1819 private: 1827 1820 RefPtr<StatementNode> m_statement; … … 1842 1835 1843 1836 virtual RegisterID* emitBytecode(BytecodeGenerator&, RegisterID* = 0) JSC_FAST_CALL; 1844 1845 virtual bool isLoop() const JSC_FAST_CALL { return true; }1846 1837 1847 1838 private: … … 1868 1859 virtual RegisterID* emitBytecode(BytecodeGenerator&, RegisterID* = 0) JSC_FAST_CALL; 1869 1860 1870 virtual bool isLoop() const JSC_FAST_CALL { return true; }1871 1872 1861 private: 1873 1862 RefPtr<ExpressionNode> m_expr1; … … 1887 1876 1888 1877 virtual RegisterID* emitBytecode(BytecodeGenerator&, RegisterID* = 0) JSC_FAST_CALL; 1889 1890 virtual bool isLoop() const JSC_FAST_CALL { return true; }1891 1878 1892 1879 private:
Note:
See TracChangeset
for help on using the changeset viewer.