Sha256: 5a0c033bc4a69827e500b447d9b2a491b1f1be746de5b92104ff8f2ac8f1432a
Contents?: true
Size: 1.42 KB
Versions: 5
Compression:
Stored size: 1.42 KB
Contents
import Property from './Property'; import CallOptions from '../CallOptions'; import ExecutionPathOptions from '../ExecutionPathOptions'; import { ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './shared/Expression'; import { ObjectPath, ObjectPathKey } from '../values'; import { Node, NodeBase } from './shared/Node'; import { NodeType } from './NodeType'; export declare function isObjectExpression(node: Node): node is ObjectExpression; export default class ObjectExpression extends NodeBase { type: NodeType.ObjectExpression; properties: Property[]; reassignPath(path: ObjectPath, options: ExecutionPathOptions): void; forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void; _getPossiblePropertiesWithName(name: ObjectPathKey, kinds: ObjectPath): { properties: Property[]; hasCertainHit: boolean; }; hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean; hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean; hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean; someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean; }
Version data entries
5 entries across 5 versions & 2 rubygems