This package provides TypeScript types for ESLint AST and the utilities to extend the AST types.
Use npm or a compatible tool.
$ npm install eslint-ast
There are several type definition files. Those files exports AST node types.
// The latest snapshot. Currently this is ES2021.
import * as latest from "eslint-ast" // or `eslint-ast/latest`
// The living standard, contains the proposals that have arrived at Stage 4.
// This types will be updated in minor releases.
import * as esNext from "eslint-ast/esnext"
// It contains the proposals that have arrived at Stage 3.
// This types will be updated in minor releases.
import * as experimental from "eslint-ast/experimental"
// The specific snapshots.
import * as es2021 from "eslint-ast/es2021"
import * as es2020 from "eslint-ast/es2020"
import * as es2019 from "eslint-ast/es2019"
import * as es2018 from "eslint-ast/es2018"
import * as es2017 from "eslint-ast/es2017"
import * as es2016 from "eslint-ast/es2016"
import * as es2015 from "eslint-ast/es2015"
import * as es5 from "eslint-ast/es5"
This package provides the utilities to define your own AST types.
- Declare the AST definition.
- Convert the AST definition to the AST types.
import { AST, NodeRef } from "eslint-ast/util"
// Declare the AST definition.
// This has three properties: `nodes`, `aliases`, and `commonProperties`.
interface MyDefinition {
// Each node's definition.
nodes: {
Program: {
// `NodeRef< node-name-or-alias >` will be replaced by actual node type later.
expression: NodeRef<"Expression">
}
ConstantValue: {
value: number
}
BinaryExpression: {
operator: "+" | "-" | "*" | "/"
left: NodeRef<"Expression">
right: NodeRef<"Expression">
}
}
// Alias definitions to use `NodeRef`.
aliases: {
Expression: "ConstantValue" | "BinaryExpression"
}
// You can define common properties for every node.
// The `parent` and `type` properties are automatically defined.
commonProperties: {
range: readonly [number, number]
}
}
// Convert the AST definition to AST types.
type MyAST = AST<MyDefinition>
// Every types is in the properties of `MyAST`.
type Program = MyAST["Program"] //= { type: "Program"
// parent: null | undefined
// expression: MyAST["Expression"]
// range: readonly [number, number] }
type ConstantValue = MyAST["ConstantValue"] //= { type: "ConstantValue"
// parent: MyAST["Program"] | MyAST["BinaryExpression"]
// value: number
// range: readonly [number, number] }
type BinaryExpression = MyAST["BinaryExpression"] //= { type: "BinaryExpression"
// parent: MyAST["Program"] | MyAST["BinaryExpression"]
// operator: "+" | "-" | "*" | "/"
// left: MyAST["Expression"]
// right: MyAST["Expression"]
// range: readonly [number, number] }
type Expression = MyAST["Expression"] //= MyAST["ConstantValue"] | MyAST["BinaryExpression"]
- ./es5-definition.ts is an example for AST definitions.
- ./es5.ts is an example for converting to AST.
This package provides the utilities to define your own AST types as extended from other existing AST definition.
- Declare the differential of AST definition.
- Merge the differential and an existing AST definition.
- Convert the AST definition to the AST types.
import { Definition as ES2019Definition } from "eslint-ast/es2019-definition"
import { AST, Extends, NodeRef } from "eslint-ast/util"
// Declare the differential of AST definition.
interface BigInt {
nodes: {
// Adding a new property into existing node types.
BooleanLiteral: {
bigint: undefined
}
NullLiteral: {
bigint: undefined
}
NumberLiteral: {
bigint: undefined
}
RegExpLiteral: {
bigint: undefined
}
StringLiteral: {
bigint: undefined
}
// Adding a new node.
BigIntLiteral: {
type: "Literal"
value: bigint | null
bigint: string
regex: undefined
raw: string
}
}
aliases: {
// Adding the new node into existing aliases.
Expression: "BigIntLiteral"
StaticPropertyKey: "BigIntLiteral"
}
}
// Merge the differential and an existing AST definition.
// I'd like to recommend to use `interface` for readability in VSCode popups.
interface MyDefinition extends Extends<ES2019Definition, BigInt> {}
// Convert the AST definition to the AST types.
type MyAST = AST<MyDefinition>
- ./es2015-definition.ts is an example for extending.
- ./es2016-definition.ts is an example for extending.
- ./es2017-definition.ts is an example for extending.
- ./es2018-definition.ts is an example for extending.
- ./es2019-definition.ts is an example for extending.
- ./es2020-definition.ts is an example for extending.
- ./es2021-definition.ts is an example for extending.
See GitHub releases.
If the type of libraries is updated, it causes compile errors in userland in most cases. Therefore, this package declare semantic versioning policy.
The major version bump allows any breaking changes. For example, the following things can happen:
- Changes exposed files.
- Changes existing types.
- Changes the API of
eslint-ast/util
. - Changes the minimum supported TypeScript version.
- etc...
In particular, changing eslint-ast/latest
requires a major bump.
The minor version bump allows any breaking changes only in eslint-ast/esnext
, eslint-ast/esnext-definition
, eslint-ast/experimental
, eslint-ast/experimental-definition
, and eslint-ast/lib/
. It doesn't change the types in the other files.
It happens when new proposals arrived at Stage 4 and ESTree was updated.
The minor version bump allows any breaking changes only in eslint-ast/esnext
, eslint-ast/esnext-definition
, eslint-ast/experimental
, eslint-ast/experimental-definition
, and eslint-ast/lib/
. It doesn't change the types in the other files.
It happens when bugs found in new types.
Contributing is welcome. Use GitHub issues and pull requests.
npm test
runs tests.npm run build
compiles codebase and makesdist/
directory.npm run update-ast
updateses*.ts
files by the content ofes*-definition.ts
files.npm version <major|minor|patch>
bump a new version and releases it.