mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:33:57 +00:00

PR-URL: https://github.com/nodejs/node/pull/28016 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
// 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.
|
|
|
|
// Test the reindexer visiting classes, avoiding repeat visits of the same
|
|
// function.
|
|
//
|
|
// For each test, create function literals inside a class, where the functions
|
|
// have to be reindexed due to the whole thing being inside an arrow head scope.
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with field that has computed property name with a function in the
|
|
// computation.
|
|
class g {
|
|
[{b: function in_computed_field_name() {}}]
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with initialized field that has computed property name with a
|
|
// function in the computation.
|
|
class g {
|
|
[{b: function in_computed_field_name_with_init() {}}] = ""
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with initialized field that has literal property name with a function
|
|
// in the initializer value.
|
|
class g {
|
|
b = (function in_init_value_of_field(){})()
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with initialized field that has private property name with a function
|
|
// in the initializer value.
|
|
class g {
|
|
#b = (function in_init_value_of_private_field(){})()
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with initialized field that has computed property name with a
|
|
// function in the initializer value.
|
|
class g {
|
|
["b"] = (function in_init_value_of_computed_field_name(){})()
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with method that has computed property name with a function in the
|
|
// computation.
|
|
class g {
|
|
[{b: function in_computed_method_name() {}}] () {}
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with method that has an argument with a default function init.
|
|
class g {
|
|
b(arg = function in_method_arg_default_init() {}) {}
|
|
}
|
|
})) => {})();
|
|
|
|
((arg = (function wrapper() {
|
|
// Class with method that has a computed property name and an argument with a
|
|
// default function init.
|
|
class g {
|
|
["b"] (arg = function in_computed_method_arg_default_init() {}) {}
|
|
}
|
|
})) => {})();
|