Javet icon indicating copy to clipboard operation
Javet copied to clipboard

Synthetic Module Bug

Open aiselp opened this issue 1 year ago • 1 comments

'Synthetic Module' created with an object that has a get property does not recognize the get property.

var model = {
  get default(){
      return 5
  }
}

At the same time, V8ValueObject.set() sets the get property, which neither succeeds nor throws an error, which gives me a headache

aiselp avatar Oct 20 '24 17:10 aiselp

That's by design. It is V8 that sets the rule, not Javet.

caoccao avatar Oct 21 '24 03:10 caoccao