-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use YAML v2.0 * update * Refactor * update * update * update * update * refactor * Add more information to AST * update * Add benchmark script * update * update * update * update
- Loading branch information
Showing
168 changed files
with
19,667 additions
and
1,534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// eslint-disable-next-line eslint-comments/disable-enable-pair -- ignore | ||
/* eslint-disable require-jsdoc, no-console -- ignore */ | ||
import * as Benchmark from "benchmark" | ||
import fs from "fs" | ||
import path from "path" | ||
import { parseForESLint } from ".." | ||
import { parseAllDocuments } from "yaml" | ||
import { parseForESLint as parseOld } from "../node_modules/yaml-eslint-parser" | ||
import { parseAllDocuments as parseAllDocumentsOld } from "../node_modules/yaml-eslint-parser/node_modules/yaml" | ||
|
||
const contents = `${fs.readFileSync( | ||
path.resolve( | ||
__dirname, | ||
"../tests/fixtures/parser/ast/astexplorer-input.yaml", | ||
), | ||
"utf-8", | ||
)} | ||
`.repeat(10) | ||
|
||
type Result = { name: string; hz: number } | ||
const results: Result[] = [] | ||
|
||
function format(hz: number): string { | ||
return (~~(hz * 100) / 100).toString().padEnd(4, " ").padStart(6, " ") | ||
} | ||
|
||
function onCycle(event: { target: Result }): void { | ||
const { name, hz } = event.target | ||
results.push({ name, hz }) | ||
|
||
console.log(event.target.toString()) | ||
} | ||
|
||
function onComplete(): void { | ||
console.log("-".repeat(72)) | ||
const map: Record<string, number[]> = {} | ||
for (const result of results) { | ||
const r = (map[result.name.slice(2)] ??= []) | ||
r.push(result.hz) | ||
} | ||
for (const name of Object.keys(map)) { | ||
console.log( | ||
`${name.padEnd(15)} ${format( | ||
map[name].reduce((p, a) => p + a, 0) / map[name].length, | ||
)} ops/sec`, | ||
) | ||
} | ||
for (let i = 0; i < results.length; ++i) { | ||
const result = results[i] | ||
|
||
console.log(`${result.name.padEnd(15)} ${format(result.hz)} ops/sec`) | ||
} | ||
} | ||
|
||
const suite = new Benchmark.Suite("benchmark", { onCycle, onComplete }) | ||
|
||
for (const no of [1, 2, 3]) { | ||
suite.add(`${no} new yaml-eslint-parser`, function () { | ||
parseForESLint(contents, { | ||
loc: true, | ||
range: true, | ||
raw: true, | ||
tokens: true, | ||
comment: true, | ||
eslintVisitorKeys: true, | ||
eslintScopeManager: true, | ||
}) | ||
}) | ||
suite.add(`${no} new yaml`, function () { | ||
parseAllDocuments(contents, { | ||
keepSourceTokens: true, | ||
}) | ||
}) | ||
suite.add(`${no} old yaml-eslint-parser`, function () { | ||
parseOld(contents, { | ||
loc: true, | ||
range: true, | ||
raw: true, | ||
tokens: true, | ||
comment: true, | ||
eslintVisitorKeys: true, | ||
eslintScopeManager: true, | ||
}) | ||
}) | ||
suite.add(`${no} old yaml`, function () { | ||
parseAllDocumentsOld(contents, { | ||
keepCstNodes: true, | ||
}) | ||
}) | ||
} | ||
|
||
suite.run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.