Direct access to physical property

Hello,

Is there a way to access directly the field backing a physical property without passing through its getter/setter?
My idea is to access the field directly inside a class and to use the getter/setter outside it.
For example

class Foo {
  public var x(default, set): Int;

  function set_x(x) {
    this.x = x;
    trace(x)
    return x;
  }

  function other() {
     x = 123;  // I don’t want x to be logged
  }
}

I think you can try @:bypassAccessor x = 123

2 Likes

Thank you.