Changeset 106512 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Feb 1, 2012, 4:08:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r106504 r106512 1349 1349 class TryNode : public StatementNode { 1350 1350 public: 1351 TryNode(int, StatementNode* tryBlock, const Identifier& exceptionIdent, bool catchHasEval,StatementNode* catchBlock, StatementNode* finallyBlock);1351 TryNode(int, StatementNode* tryBlock, const Identifier& exceptionIdent, StatementNode* catchBlock, StatementNode* finallyBlock); 1352 1352 1353 1353 private: … … 1358 1358 StatementNode* m_catchBlock; 1359 1359 StatementNode* m_finallyBlock; 1360 bool m_catchHasEval;1361 1360 }; 1362 1361
Note:
See TracChangeset
for help on using the changeset viewer.