Sha256: a0080bc880374d7afefe8675fdf530b25b583e4d124f636d7c79a4bec225eec4
Contents?: true
Size: 577 Bytes
Versions: 5
Compression:
Stored size: 577 Bytes
Contents
import { NodeBase } from './shared/Node'; import ExecutionPathOptions from '../ExecutionPathOptions'; import CallOptions from '../CallOptions'; import MethodDefinition from './MethodDefinition'; import { NodeType } from './NodeType'; import { ObjectPath } from '../values'; export default class ClassBody extends NodeBase { type: NodeType.ClassBody; body: MethodDefinition[]; classConstructor: MethodDefinition | null; hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean; initialiseNode(): void; }
Version data entries
5 entries across 5 versions & 2 rubygems