Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
es-abstract
/
2021
/
ThrowCompletion.js
blob: b7d388a35292e2a9faf88d4808b74e2c4878bbe7 [
file
] [
log
] [
blame
]
'use strict'
;
var
CompletionRecord
=
require
(
'./CompletionRecord'
);
// https://262.ecma-international.org/9.0/#sec-throwcompletion
module
.
exports
=
function
ThrowCompletion
(
argument
)
{
return
new
CompletionRecord
(
'throw'
,
argument
);
};