Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Add support for get and set keywords #286

Closed
1b8 opened this issue Dec 16, 2015 · 1 comment
Closed

Add support for get and set keywords #286

1b8 opened this issue Dec 16, 2015 · 1 comment

Comments

@1b8
Copy link

1b8 commented Dec 16, 2015

var obj = {
  get prop() {
    // ...
  },
  set prop(newProp) {
    // ...
  }
};

class Thing {
  get prop() {
    // ...
  }
  set prop(newProp) {
    // ...
  }
}
@Ben3eeE
Copy link
Contributor

Ben3eeE commented Nov 3, 2018

Seems like this issue has been fixed. I am not able to reproduce on latest master with either tree-sitter or textmate.

@Ben3eeE Ben3eeE closed this as completed Nov 3, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants