Sha256: 4620013a47f876266b985888c502620d500856930012884eac823b125850a517
Contents?: true
Size: 306 Bytes
Versions: 5
Compression:
Stored size: 306 Bytes
Contents
import Scope from './Scope'; import Identifier from '../nodes/Identifier'; import LocalVariable from '../variables/LocalVariable'; export default class BlockScope extends Scope { parent: Scope; addDeclaration(identifier: Identifier, options?: { isHoisted: boolean; }): LocalVariable; }
Version data entries
5 entries across 5 versions & 2 rubygems