UNPKG

@banana020/ast-plugin-system

Version:

AST插件系统 - 支持JavaScript/TypeScript代码转换,包含十六进制转换、代码清理等功能

15 lines (14 loc) 506 B
import { type ASTPlugin } from '../types/index.js'; /** * 条件表达式转 if 语句插件 * 将条件表达式语句转换为 if-else 语句 * * 转换规则: * - 输入模式:condition ? statement1 : statement2; * - 输出模式:if (condition) { statement1; } else { statement2; } * * 使用场景: * - 提高代码可读性,将三元运算符转换为更清晰的 if 语句 * - 适用于条件表达式作为完整语句的情况 */ export declare const conditionToIf: ASTPlugin;