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