@lcap/asl
Version:
NetEase Application Specific Language
20 lines (19 loc) • 402 B
TypeScript
import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
/**
* 文本字面量
* @TODO: 当前类目前主要用于生成文档
*/
export declare class StringLiteral extends ExpressionNode {
/**
* 逻辑节点类型
*/
readonly type: LOGIC_TYPE;
/**
* 字面量的值
*/
readonly value: string;
/**
* 生成 JS 脚本
*/
toScript(): string;
}