AnonObject.hx 214 B

12345678910111213
  1. package python.internal;
  2. import python.Syntax;
  3. @:keep
  4. @:nativeGen
  5. @:native("_hx_AnonObject")
  6. class AnonObject {
  7. public function new(fields) {
  8. Syntax.assign(Internal.fieldDict(this), fields);
  9. }
  10. }