| 7 | import { XHTMLEntities } from './xhtml-entities'; |
| 8 | |
| 9 | interface MetaJSXElement { |
| 10 | node: Marker; |
| 11 | opening: JSXNode.JSXOpeningElement; |
| 12 | closing: JSXNode.JSXClosingElement | null; |
| 13 | children: JSXNode.JSXChild[]; |
| 14 | } |
| 15 | |
| 16 | const enum JSXToken { |
| 17 | Identifier = 100, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…