Skip to content

Commit 93dfbdd

Browse files
committed
feat: make inheritance fix more robust, improve tests
1 parent 5865bbb commit 93dfbdd

File tree

6 files changed

+1751
-4243
lines changed

6 files changed

+1751
-4243
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Checkout Repo
1717
uses: actions/checkout@v2
1818

19-
- name: Setup Node.js 20.x
19+
- name: Setup Node.js 22.x
2020
uses: actions/setup-node@v2
2121
with:
22-
node-version: 20.x
22+
node-version: 22.x
2323

2424
- name: Install Dependencies
2525
run: yarn

packages/webidl-dts-gen/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"lint": "tsc --noEmit",
99
"start": "yarn build && ./dist/cli.js",
1010
"format": "yarn prettier --write .",
11-
"test": "jest --coverage",
12-
"test:watch": "jest --watch"
11+
"test": "vitest test --coverage",
12+
"test:watch": "vitest --watch"
1313
},
1414
"repository": {
1515
"type": "git",
@@ -33,10 +33,10 @@
3333
"@types/yargs": "^17.0.32",
3434
"@typescript-eslint/eslint-plugin": "^7.10.0",
3535
"@typescript-eslint/parser": "^7.2.0",
36+
"@vitest/coverage-v8": "^2.1.1",
3637
"eslint": "^8.57.0",
37-
"jest": "^29.7.0",
3838
"prettier": "^3.2.5",
39-
"ts-jest": "^29.2.4"
39+
"vitest": "^2.1.1"
4040
},
4141
"dependencies": {
4242
"jsdom": "^24.0.0",

packages/webidl-dts-gen/src/fixes.ts

+24-11
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,32 @@ export const fixes = {
2525
// Handle inheritance
2626
const inheritance = []
2727

28-
idlString = idlString.replace(
29-
/(\/\*[\s\S]*?\*\/|\/\/.*?$)|([a-zA-Z0-9]+) implements ([a-zA-Z0-9]+);/gi,
30-
(line, comment, left, right) => {
31-
if (comment) {
32-
return line
33-
}
28+
// remove comments
29+
const withoutComments = idlString.replace(/(\/\*[\s\S]*?\*\/|\/\/.*?$)/gm, '')
3430

35-
inheritance.push({ left, right })
36-
return `// ${line}`
37-
},
38-
)
31+
const lines = withoutComments.split('\n')
3932

40-
// Update interfaces with inheritance
33+
// find lines with inheritance statements, comment them out and store them
34+
for (let i = 0; i < lines.length; i++) {
35+
const line = lines[i]
36+
37+
const match = /([a-zA-Z0-9]+) implements ([a-zA-Z0-9]+);/gi.exec(line)
38+
39+
if (!match) {
40+
continue
41+
}
42+
43+
const left = match[1]
44+
const right = match[2]
45+
46+
inheritance.push({ left, right })
47+
48+
lines[i] = `// ${line}`
49+
}
50+
51+
idlString = lines.join('\n')
52+
53+
// correct inheritance syntax
4154
inheritance.forEach(({ left, right }) => {
4255
idlString = idlString.replace(new RegExp(`interface ${left} {`), `interface ${left}: ${right} {`)
4356
})

0 commit comments

Comments
 (0)