(node: SplootNode)
| 5 | import { PythonScope } from '../scope/python_scope' |
| 6 | |
| 7 | export function isPythonNode(node: SplootNode): node is PythonNode { |
| 8 | return (<PythonNode>node).isPythonNode !== undefined |
| 9 | } |
| 10 | |
| 11 | export abstract class PythonNode extends SplootNode { |
| 12 | scope: PythonScope |
no outgoing calls
no test coverage detected