[w3c/webcomponents] Is there a way to detect is a custom element was constructed during parsing? (#789)

F.e.,

```js
class MyEl extends HTMLElement {
 constructor() {
  if (/* isParsing? */) {
    console.log('created during parsing')
  }
 }
 connectedCallback() {
  if (/* isParsing? */) {
    console.log('connected during parsing')
  }
 }
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/789

Received on Thursday, 31 January 2019 17:14:53 UTC