/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/message/fail/class-fields-private-class-in-function.js
14 строк
332 B
Michaël Zasso
deps: update V8 to 7.6.303.28
01 авг 2019, 13:53
Не верифицирован
01 авг 2019, 13:53
2dcc366
Код
Авторство
О чём код?
// Copyright 2019 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. class Y { makeClass() { return class { setA(val) { this.#a = val; } getA() { return this.#a; } getB() { return this.#b; } } } #a; }