* Returns the node more strictly typed iff it is of the given type. Otherwise, * returns null.
(node)
| 6041 | */ |
| 6042 | |
| 6043 | function checkSymbolNodeType(node) { |
| 6044 | if (node && (node.type === "atom" || NON_ATOMS.hasOwnProperty(node.type))) { |
| 6045 | // $FlowFixMe |
| 6046 | return node; |
| 6047 | } |
| 6048 | |
| 6049 | return null; |
| 6050 | } |
| 6051 | |
| 6052 | /** |
| 6053 | * Describes spaces between different classes of atoms. |
no outgoing calls
no test coverage detected