Sha256: b32ff447b22fe61aa573f63a433f259a4a61a140e4f8871b320585d436652e57
Contents?: true
Size: 498 Bytes
Versions: 5
Compression:
Stored size: 498 Bytes
Contents
import { NodeBase } from './shared/Node'; import CatchScope from '../scopes/CatchScope'; import BlockStatement from './BlockStatement'; import Scope from '../scopes/Scope'; import { PatternNode } from './shared/Pattern'; import { NodeType } from './NodeType'; export default class CatchClause extends NodeBase { type: NodeType.CatchClause; param: PatternNode; body: BlockStatement; scope: CatchScope; initialiseChildren(): void; initialiseScope(parentScope: Scope): void; }
Version data entries
5 entries across 5 versions & 2 rubygems