/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/message/fail/stack-trace-method-name-configured.js
12 строк
495 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 user configured method name ('SomeClass.someMethod') is used // as-is in error.stack output without prepending the inferred type name ('A'). const A = function() {}; A.prototype.a = function() { throw new Error; }; Object.defineProperty(A.prototype.a, 'name', {value: 'SomeClass.someMethod'}); (new A).a();