mirror of https://github.com/lukechilds/node.git
Browse Source
Original commit message: Make AstRawString deduplication encoding-agnostic. R=jkummerow@chromium.org BUG=v8:4450 LOG=N Review URL: https://codereview.chromium.org/1411103006 Cr-Commit-Position: refs/heads/master@{#31624} Ref: https://github.com/nodejs/node/pull/4160 PR-URL: https://github.com/nodejs/node/pull/4128 Reviewed-By: jasnell - James M Snell <jasnell@gmail.com> Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com> Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com>v4.x
Vladimir Kurchatkin
9 years ago
committed by
Myles Borins
2 changed files with 34 additions and 4 deletions
@ -0,0 +1,8 @@ |
|||
// 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(); |
Loading…
Reference in new issue