Ignore:
Timestamp:
Jan 31, 2014, 5:37:59 PM (11 years ago)
Author:
[email protected]
Message:

2014-01-31 Oliver Hunt <[email protected]>

Rollout r163195 and related patches

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/parser/ASTBuilder.h

    r163195 r163225  
    889889    DotAccessorNode* dot = static_cast<DotAccessorNode*>(func);
    890890    FunctionCallDotNode* node;
    891     if (dot->identifier() == m_vm->propertyNames->call || dot->identifier() == m_vm->propertyNames->callPrivateName)
     891    if (dot->identifier() == m_vm->propertyNames->call)
    892892        node = new (m_vm) CallFunctionCallDotNode(location, dot->base(), dot->identifier(), args, divot, divotStart, divotEnd);
    893     else if (dot->identifier() == m_vm->propertyNames->apply || dot->identifier() == m_vm->propertyNames->applyPrivateName)
     893    else if (dot->identifier() == m_vm->propertyNames->apply)
    894894        node = new (m_vm) ApplyFunctionCallDotNode(location, dot->base(), dot->identifier(), args, divot, divotStart, divotEnd);
    895895    else
Note: See TracChangeset for help on using the changeset viewer.