open-wc / custom-elements-manifest-deprecated

Custom Elements Manifest is a file format that describes custom elements in your project.
8 stars 4 forks source link

ignore default values for properties if theyre function calls #40

Closed thepassle closed 3 years ago

thepassle commented 3 years ago

example:

class Foo extends HTMLElement {
  shadow = this.attachShadow({mode: 'open'});
}