Skip to content

Add support for static class methods #368

Open
@olebedev

Description

@olebedev

Describe your feature request here.

Currently, when you define JS like this:

var Term = class {
  term;

  constructor(term) {
    this.term = term;
  }

  toString() {
    return this.term;
  }

  static fromString(input) {
    return new Term(input);
  }
};

module.exports = Term;

The static method is not available for that class:

import pythonmonkey as pm

Term = pm.require("./term.js")
print(Term.fromString)

Will give

Traceback (most recent call last):
  File "/test.py", line 4, in <module>
    print(Term.fromString)
AttributeError: 'pythonmonkey.JSFunctionProxy' object has no attribute 'fromString'

Code example

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    Backlog

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions