Changeset 36872 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 24, 2008, 3:24:00 PM (17 years ago)
Author:
[email protected]
Message:

2008-09-24 Kevin McCullough <[email protected]>

Style change.

  • kjs/nodes.cpp: (JSC::statementListEmitCode):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r36871 r36872  
     12008-09-24  Kevin McCullough  <[email protected]>
     2
     3        Style change.
     4
     5        * kjs/nodes.cpp:
     6        (JSC::statementListEmitCode):
     7
    182008-09-24  Kevin McCullough  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/nodes.cpp

    r36871 r36872  
    10851085    for (StatementVector::iterator it = statements.begin(); it != end; ++it) {
    10861086        StatementNode* n = it->get();
    1087         if(!n->isLoop())
     1087        if (!n->isLoop())
    10881088            generator.emitDebugHook(WillExecuteStatement, n->firstLine(), n->lastLine());
    10891089        generator.emitNode(dst, n);
Note: See TracChangeset for help on using the changeset viewer.