0b9a70ade3
This is in preparation for making --harmony and --es-staging synonyms. The only remaining difference currently is block-scoping, which is still implied by --harmony, to avoid regressing on a long-available feature. Also removes the special-casing of --harmony-proxies. R=adamk@chromium.org BUG= Review URL: https://codereview.chromium.org/693153004 Cr-Commit-Position: refs/heads/master@{#25115} git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25115 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
23 lines
675 B
JavaScript
23 lines
675 B
JavaScript
// Copyright 2014 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.
|
|
|
|
// Flags: --harmony-modules --expose-debug-as=debug
|
|
|
|
(function () { // Scope for utility functions.
|
|
escaping_function = function(object) {
|
|
// Argument must not be null or undefined.
|
|
var string = Object.prototype.toString.call(object);
|
|
// String has format [object <ClassName>].
|
|
return string.substring(8, string.length - 1);
|
|
}
|
|
})();
|
|
|
|
module B {
|
|
var stuff = 3
|
|
}
|
|
|
|
var __v_0 = {};
|
|
var __v_4 = debug.MakeMirror(__v_0);
|
|
print(__v_4.referencedBy().length); // core dump here if not fixed.
|