2024-01-16 21:26:16 +08:00
|
|
|
import classApplyDescriptorGet from "./classApplyDescriptorGet.js";
|
|
|
|
import classExtractFieldDescriptor from "./classExtractFieldDescriptor.js";
|
2023-12-18 13:12:25 +08:00
|
|
|
export default function _classPrivateFieldGet(receiver, privateMap) {
|
2024-01-16 21:26:16 +08:00
|
|
|
var descriptor = classExtractFieldDescriptor(receiver, privateMap, "get");
|
|
|
|
return classApplyDescriptorGet(receiver, descriptor);
|
2023-12-18 13:12:25 +08:00
|
|
|
}
|