Sha256: cc67989e7e46159e69f64ecf728b2e7ac1f2f7edb65d68c8dd70f5a38eaec7b0
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
import { Node, NodeBase } from './shared/Node'; import { ObjectPath } from '../values'; import Scope from '../scopes/Scope'; import ExecutionPathOptions from '../ExecutionPathOptions'; import Variable from '../variables/Variable'; import CallOptions from '../CallOptions'; import MagicString from 'magic-string'; import { ExpressionEntity, ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './shared/Expression'; import { NodeType } from './NodeType'; import { RenderOptions } from '../../utils/renderHelpers'; export declare function isIdentifier(node: Node): node is Identifier; export default class Identifier extends NodeBase { type: NodeType.Identifier; name: string; variable: Variable; private isBound; bindNode(): void; forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void; hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean; hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean; hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean; includeInBundle(): boolean; initialiseAndDeclare(parentScope: Scope, kind: string, init: ExpressionEntity | null): void; reassignPath(path: ObjectPath, options: ExecutionPathOptions): void; private disallowImportReassignment(); renderSystemBindingUpdate(code: MagicString, name: string): void; render(code: MagicString, options: RenderOptions): void; someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean; }
Version data entries
5 entries across 5 versions & 2 rubygems