12345678910111213141516171819202122232425262728 |
- using Jint.Runtime.Descriptors;
- namespace Jint.Runtime.Interop.Reflection;
- internal sealed class MethodAccessor : ReflectionAccessor
- {
- private readonly Type _targetType;
- private readonly MethodDescriptor[] _methods;
- public MethodAccessor(Type targetType, MethodDescriptor[] methods) : base(null!)
- {
- _targetType = targetType;
- _methods = methods;
- }
- public override bool Writable => false;
- protected override object? DoGetValue(object target, string memberName) => null;
- protected override void DoSetValue(object target, string memberName, object? value)
- {
- }
- public override PropertyDescriptor CreatePropertyDescriptor(Engine engine, object target, string memberName, bool enumerable = true)
- {
- return new(new MethodInfoFunction(engine, _targetType, target, memberName, _methods), PropertyFlag.Configurable | PropertyFlag.NonData);
- }
- }
|