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

Version Path
jass-0.9.5 vendor/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts
jass-0.9.4 vendor/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts
jass-0.9.3 vendor/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts
condenser-0.0.4 lib/condenser/processors/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts
jass-0.9.1 vendor/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts