df12eb194e
This patch implements the access of private accessors by loading the referenced component from the AccessorPair associated with private name variables. It also makes the error messages for invalid kind of private accessor access more specific. Bug: v8:8330 Design doc: https://docs.google.com/document/d/10W4begYfs7lmldSqBoQBBt_BKamgT8igqxF9u50RGrI/edit Change-Id: I6d441cffb85f8d9cd0417ec9b6ae20f3e34ef418 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1695205 Reviewed-by: Ross McIlroy <rmcilroy@chromium.org> Commit-Queue: Joyee Cheung <joyee@igalia.com> Cr-Commit-Position: refs/heads/master@{#63474}
10 lines
508 B
Plaintext
10 lines
508 B
Plaintext
# 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.
|
|
*%(basename)s:9: TypeError: Cannot read private member C from an object whose class did not declare it
|
|
setA(obj, val) { obj.#a = val; }
|
|
^
|
|
TypeError: Cannot read private member C from an object whose class did not declare it
|
|
at C.setA (*%(basename)s:9:24)
|
|
at new C (*%(basename)s:15:10)
|
|
at *%(basename)s:19:1 |