• littledan's avatar
    Fix sloppy block-scoped function hoisting with nested zones · eb9deba8
    littledan authored
    The sloppy block-scoped function declaration placeholder statements
    are held in parser_zone_-allocated hashtables. These hashtables are
    not updated when local_zone_s are removed. Therefore, the
    NewSloppyBlockFunctionStatement method should allocate
    SloppyBlockScopeFunctionStatements in the parser_zone_ to avoid a
    use-after-free. Scope fixup code may end up updating something which
    is thrown away, but this is a small cost and much simpler than
    removing dead hashtable entries later.
    
    R=adamk
    LOG=Y
    BUG=chromium:537816
    
    Review URL: https://codereview.chromium.org/1564923007
    
    Cr-Commit-Position: refs/heads/master@{#33185}
    eb9deba8
Name
Last commit
Last update
..
OWNERS Loading commit data...
ast-expression-visitor.cc Loading commit data...
ast-expression-visitor.h Loading commit data...
ast-literal-reindexer.cc Loading commit data...
ast-literal-reindexer.h Loading commit data...
ast-numbering.cc Loading commit data...
ast-numbering.h Loading commit data...
ast-value-factory.cc Loading commit data...
ast-value-factory.h Loading commit data...
ast.cc Loading commit data...
ast.h Loading commit data...
modules.cc Loading commit data...
modules.h Loading commit data...
prettyprinter.cc Loading commit data...
prettyprinter.h Loading commit data...
scopeinfo.cc Loading commit data...
scopeinfo.h Loading commit data...
scopes.cc Loading commit data...
scopes.h Loading commit data...
variables.cc Loading commit data...
variables.h Loading commit data...