Sha256: e52b6ec5c7a2026567a50d7a18f9dbfe5d76dcae28ef9a10f9f61ff6d30d464a
Contents?: true
Size: 455 Bytes
Versions: 5
Compression:
Stored size: 455 Bytes
Contents
import Variable from './Variable'; import { ObjectPath } from '../values'; export declare function isGlobalVariable(variable: Variable): variable is GlobalVariable; export default class GlobalVariable extends Variable { isExternal: true; isGlobal: true; constructor(name: string); hasEffectsWhenAccessedAtPath(path: ObjectPath): boolean; hasEffectsWhenCalledAtPath(path: ObjectPath): boolean; private isPureFunctionMember(path); }
Version data entries
5 entries across 5 versions & 2 rubygems