PR-URL: https://github.com/nodejs/node/pull/60488 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
15 lines
354 B
JavaScript
15 lines
354 B
JavaScript
// Copyright 2025 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
try {
|
|
readbuffer('nonexisting_file.js');
|
|
} catch (e) {
|
|
print(e);
|
|
}
|
|
|
|
try {
|
|
readbuffer('really-long-nonexisting-filename-which-should-get-truncated.js');
|
|
} catch (e) {
|
|
print(e);
|
|
}
|