/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/message/fail/stack-trace-method-name-renaming.js
12 строк
391 B
Michaël Zasso
deps: V8: cherry-pick ad21d212fc14
12 апр 2022, 23:10
Не верифицирован
12 апр 2022, 23:10
eba7d2d
Код
Авторство
О чём код?
// Copyright 2022 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. // Check that the dynamic type name ('A') is not prepended to the inferred // method name ('C.a') in error.stack output. const A = function() {}; const C = A; C.prototype.a = function() { throw new Error; }; (new A).a();