Changeset 36872 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 24, 2008, 3:24:00 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r36871 r36872 1 2008-09-24 Kevin McCullough <[email protected]> 2 3 Style change. 4 5 * kjs/nodes.cpp: 6 (JSC::statementListEmitCode): 7 1 8 2008-09-24 Kevin McCullough <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/nodes.cpp
r36871 r36872 1085 1085 for (StatementVector::iterator it = statements.begin(); it != end; ++it) { 1086 1086 StatementNode* n = it->get(); 1087 if (!n->isLoop())1087 if (!n->isLoop()) 1088 1088 generator.emitDebugHook(WillExecuteStatement, n->firstLine(), n->lastLine()); 1089 1089 generator.emitNode(dst, n);
Note:
See TracChangeset
for help on using the changeset viewer.