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):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.