mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 19:29:12 +08:00
18 lines
696 B
Text
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;
|
|
}
|