(p: JSChildNode)
| 45 | import { isWhitespace } from './tokenizer' |
| 46 | |
| 47 | export const isStaticExp = (p: JSChildNode): p is SimpleExpressionNode => |
| 48 | p.type === NodeTypes.SIMPLE_EXPRESSION && p.isStatic |
| 49 | |
| 50 | export function isCoreComponent(tag: string): symbol | void { |
| 51 | switch (tag) { |
no outgoing calls
no test coverage detected