frontend/.pnpm-store/v3/files/11/a5c99e8d8f7ce1d2ded5971f781dea2abaa558224b5adf18b9e7c7f49988c36ad8639df22c4572588e9e0999f39ef75da52e5d1a18850bc074e2e7524bd4bb

24 lines
878 B
Plaintext

import Node from './shared/Node';
import PendingBlock from './PendingBlock';
import ThenBlock from './ThenBlock';
import CatchBlock from './CatchBlock';
import Expression from './shared/Expression';
import Component from '../Component';
import TemplateScope from './shared/TemplateScope';
import { TemplateNode } from '../../interfaces';
import { Context } from './shared/Context';
import { Node as ESTreeNode } from 'estree';
export default class AwaitBlock extends Node {
type: 'AwaitBlock';
expression: Expression;
then_contexts: Context[];
catch_contexts: Context[];
then_node: ESTreeNode | null;
catch_node: ESTreeNode | null;
pending: PendingBlock;
then: ThenBlock;
catch: CatchBlock;
context_rest_properties: Map<string, ESTreeNode>;
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
}