Changeset 47902 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Aug 31, 2009, 12:31:58 PM (16 years ago)
Author:
[email protected]
Message:

Fixed typo.
https://bugs.webkit.org/show_bug.cgi?id=28691

Patch by Robert Agoston <[email protected]> on 2009-08-31
Reviewed by Gavin Barraclough.

  • parser/Parser.h:

(JSC::Parser::parse):

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r47857 r47902  
     12009-08-31  Robert Agoston  <[email protected]>
     2
     3        Reviewed by Gavin Barraclough.
     4
     5        Fixed typo.
     6        https://bugs.webkit.org/show_bug.cgi?id=28691
     7
     8        * parser/Parser.h:
     9        (JSC::Parser::parse):
     10
    1112009-08-27  Oliver Hunt  <[email protected]>
    212
  • trunk/JavaScriptCore/parser/Parser.h

    r47738 r47902  
    7171    {
    7272        m_source = &source;
    73         if (FunctionBodyNode::scopeIsFunction)
     73        if (ParsedNode::scopeIsFunction)
    7474            globalData->lexer->setIsReparsing();
    7575        parse(globalData, errLine, errMsg);
     
    9494        m_funcDeclarations = 0;
    9595
    96         if (debugger && !FunctionBodyNode::scopeIsFunction)
     96        if (debugger && !ParsedNode::scopeIsFunction)
    9797            debugger->sourceParsed(debuggerExecState, source, *errLine, *errMsg);
    9898        return result.release();
Note: See TracChangeset for help on using the changeset viewer.