Home
last modified time | relevance | path

Searched refs:ScopeKind (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_frontend/arkguard/src/utils/
DScopeAnalyzer.ts68 export enum ScopeKind { enum
83 return scope.kind === ScopeKind.GLOBAL;
87 return scope.kind === ScopeKind.FUNCTION;
91 return scope.kind === ScopeKind.CLASS;
95 return scope.kind === ScopeKind.INTERFACE;
99 return scope.kind === ScopeKind.ENUM;
103 return scope.kind === ScopeKind.OBJECT_LITERAL;
118 kind: ScopeKind;
192 …export function createScope(name: string, node: Node, type: ScopeKind, lexicalScope: boolean = fal…
196 let kind: ScopeKind = type;
[all …]