656a821a94
Migrate expressions, workflow-parser, and languageservice packages to use proper ESM imports with .js extensions that work with node16 moduleResolution. Changes: - Update tsconfig.build.json in each package to use module: node16 and moduleResolution: node16 - Add .js extensions to all relative import paths (Option B approach) - Fix yaml internal type imports in workflow-parser by defining local types - Add skipLibCheck to handle @types/node compatibility issues - Add TypeScript 5.8.3 override in root package.json - Add ESM migration plan documentation The languageserver package is deferred due to test hang issues that need further investigation. Related #154 - Upgrade moduleResolution from node to node16 or nodenext Related #110 - Published ESM code has imports without file extensions Related #64 - expressions: ERR_MODULE_NOT_FOUND attempting to run example Related #146 - Can not import @actions/workflow-parser Test results: - expressions: 1068 tests passed - workflow-parser: 292 tests passed - languageservice: 452 tests passed * docs: update ESM migration plan with findings - Update languageserver blocker: vscode-languageserver v8.0.2 lacks ESM exports (not a test hang issue) - Document that Option B (manual .js extensions) was chosen over Option A due to ts-jest compatibility issues - Add workaround for yaml package internal types (LinePos, NodeBase) - Update migration status table with accurate reason for deferral - Add skipLibCheck note for @types/node compatibility
104 lines
2.1 KiB
TypeScript
104 lines
2.1 KiB
TypeScript
import {ExpressionData} from "./data/index.js";
|
|
import {Token} from "./lexer.js";
|
|
|
|
export interface ExprVisitor<R> {
|
|
visitLiteral(literal: Literal): R;
|
|
visitUnary(unary: Unary): R;
|
|
visitBinary(binary: Binary): R;
|
|
visitLogical(binary: Logical): R;
|
|
visitGrouping(grouping: Grouping): R;
|
|
visitContextAccess(contextAccess: ContextAccess): R;
|
|
visitIndexAccess(indexAccess: IndexAccess): R;
|
|
visitFunctionCall(functionCall: FunctionCall): R;
|
|
}
|
|
|
|
export abstract class Expr {
|
|
abstract accept<R>(v: ExprVisitor<R>): R;
|
|
}
|
|
|
|
export class Literal extends Expr {
|
|
constructor(public literal: ExpressionData, public token: Token) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitLiteral(this);
|
|
}
|
|
}
|
|
|
|
export class Unary extends Expr {
|
|
constructor(public operator: Token, public expr: Expr) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitUnary(this);
|
|
}
|
|
}
|
|
|
|
export class FunctionCall extends Expr {
|
|
constructor(public functionName: Token, public args: Expr[]) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitFunctionCall(this);
|
|
}
|
|
}
|
|
|
|
export class Binary extends Expr {
|
|
constructor(public left: Expr, public operator: Token, public right: Expr) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitBinary(this);
|
|
}
|
|
}
|
|
|
|
export class Logical extends Expr {
|
|
constructor(public operator: Token, public args: Expr[]) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitLogical(this);
|
|
}
|
|
}
|
|
|
|
export class Grouping extends Expr {
|
|
constructor(public group: Expr) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitGrouping(this);
|
|
}
|
|
}
|
|
|
|
export class ContextAccess extends Expr {
|
|
constructor(public name: Token) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitContextAccess(this);
|
|
}
|
|
}
|
|
|
|
export class IndexAccess extends Expr {
|
|
constructor(public expr: Expr, public index: Expr) {
|
|
super();
|
|
}
|
|
|
|
accept<R>(v: ExprVisitor<R>): R {
|
|
return v.visitIndexAccess(this);
|
|
}
|
|
}
|
|
|
|
export class Star extends Expr {
|
|
accept<R>(): R {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
}
|