mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 06:02:29 +00:00

Pick up the latest patch-level from V8 stable. This includes the following fix:
* c408ea72bf
Make AstRawString deduplication encoding-agnostic.
BUG=v8:4450
LOG=N
R=hablich@chromium.org
TBR=hablich@chromium.org
Review URL: https://codereview.chromium.org/1494293003
See also: https://github.com/nodejs/node/pull/4128
PR-URL: https://github.com/nodejs/node/pull/4160
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
9 lines
271 B
JavaScript
9 lines
271 B
JavaScript
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
({})['foobar\u2653'.slice(0, 6)] = null;
|
|
var x;
|
|
eval('x = function foobar() { return foobar };');
|
|
x();
|