Searched refs:NodeType (Results 1 – 7 of 7) sorted by relevance
31 export enum NodeType { enum49 function getNodeTypeName(nodeType: NodeType): keyof typeof NodeType {50 return Object.keys(NodeType).find(51 (key) => NodeType[key as keyof typeof NodeType] === nodeType52 ) as keyof typeof NodeType;71 type: NodeType;121 case NodeType.HIDDEN:123 case NodeType.OBJECT:124 case NodeType.NATIVE:126 case NodeType.CODE:[all …]
17 import { EdgeType, NodeType } from './DatabaseStruct';52 nodeType!: NodeType;79 …return [NodeType.STRING, NodeType.CONCATENATED_STRING, NodeType.SLICED_STRING].includes(this.nodeT…
26 NodeType,519 if (node.type === NodeType.HIDDEN) {522 if (node.type === NodeType.ARRAY) {569 if (node.type !== NodeType.NATIVE) {768 if (!filter(node.id) || (node.selfSize === 0 && node.type !== NodeType.NATIVE)) {829 … if (!seen && (!hasFiler || filter(node.id)) && (node.selfSize || node.type === NodeType.NATIVE)) {
27 NodeType: {
59 pub enum NodeType { enum
136 NodeType::Daemon, in channel_file_task()401 NodeType::Server, in session_file_task()
23 import { NodeType } from '../../js-heap/model/DatabaseStruct';1776 (rowData.data.nodeType === NodeType.STRING ||1777 rowData.data.nodeType === NodeType.CONCATENATED_STRING ||1778 rowData.data.nodeType === NodeType.SLICED_STRING) &&