-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
module: use Wasm CJS lexer when available
PR-URL: #35583 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com>
- Loading branch information
1 parent
4d1d3f4
commit cb2f6ff
Showing
7 changed files
with
70 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
'use strict'; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const common = require('../common.js'); | ||
const { strictEqual } = require('assert'); | ||
|
||
const tmpdir = require('../../test/common/tmpdir'); | ||
const benchmarkDirectory = | ||
path.resolve(tmpdir.path, 'benchmark-esm-parse'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e2] | ||
}); | ||
|
||
async function main({ n }) { | ||
tmpdir.refresh(); | ||
|
||
fs.mkdirSync(benchmarkDirectory); | ||
|
||
let sampleSource = 'try {\n'; | ||
for (let i = 0; i < 1000; i++) { | ||
sampleSource += 'sample.js(() => file = /test/);\n'; | ||
} | ||
sampleSource += '} catch {}\nexports.p = 5;\n'; | ||
|
||
for (let i = 0; i < n; i++) { | ||
const sampleFile = path.join(benchmarkDirectory, `sample${i}.js`); | ||
fs.writeFileSync(sampleFile, sampleSource); | ||
} | ||
|
||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
const sampleFile = path.join(benchmarkDirectory, `sample${i}.js`); | ||
const m = await import('file:' + sampleFile); | ||
strictEqual(m.p, 5); | ||
} | ||
bench.end(n); | ||
|
||
tmpdir.refresh(); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
|
||
const runBenchmark = require('../common/benchmark'); | ||
|
||
runBenchmark('esm', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 }); |
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