xref
: /
third_party
/
node
/
test
/
fixtures
/
test-fs-stat-sync-overflow.js
(revision 1cb0ef41)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/node/test/fixtures/
1
const
fs
=
require
(
'fs'
);
2
3
function
load
() {
4
fs
.
statSync
(
'.'
);
5
load
();
6
}
7
load
();
8