frontend/.pnpm-store/v3/files/46/98f7e252ef1cede514bba0400b20e0151833577fa8ab71732671c066dc6f4480f4f02037761540b39c61c7fb37d82ca9320dfc050953e148d56f681c1878d3

21 lines
795 B
Plaintext

import Node from './shared/Node';
import Expression from './shared/Expression';
import Component from '../Component';
import TemplateScope from './shared/TemplateScope';
import { Context } from './shared/Context';
import { ConstTag as ConstTagType } from '../../interfaces';
import { INodeAllowConstTag } from './interfaces';
import { Node as ESTreeNode } from 'estree';
export default class ConstTag extends Node {
type: 'ConstTag';
expression: Expression;
contexts: Context[];
node: ConstTagType;
scope: TemplateScope;
context_rest_properties: Map<string, ESTreeNode>;
assignees: Set<string>;
dependencies: Set<string>;
constructor(component: Component, parent: INodeAllowConstTag, scope: TemplateScope, info: ConstTagType);
parse_expression(): void;
}