Urara-Blog/node_modules/.pnpm-store/v3/files/ea/d773d3453542ae9a45e03aec0e1046ba199eb6bb73631c172bf3422204e572de5241b7b3f5a6ad0e6762986519bc82cad4a44d050d0143b619d3c1421067aa
2022-08-14 01:14:53 +08:00

18 lines
696 B
Text

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';
export default class ConstTag extends Node {
type: 'ConstTag';
expression: Expression;
contexts: Context[];
node: ConstTagType;
scope: TemplateScope;
assignees: Set<string>;
dependencies: Set<string>;
constructor(component: Component, parent: INodeAllowConstTag, scope: TemplateScope, info: ConstTagType);
parse_expression(): void;
}