initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
28
node_modules/rxjs/dist/esm/internal/util/errorContext.js
generated
vendored
Normal file
28
node_modules/rxjs/dist/esm/internal/util/errorContext.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { config } from '../config';
|
||||
let context = null;
|
||||
export function errorContext(cb) {
|
||||
if (config.useDeprecatedSynchronousErrorHandling) {
|
||||
const isRoot = !context;
|
||||
if (isRoot) {
|
||||
context = { errorThrown: false, error: null };
|
||||
}
|
||||
cb();
|
||||
if (isRoot) {
|
||||
const { errorThrown, error } = context;
|
||||
context = null;
|
||||
if (errorThrown) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
cb();
|
||||
}
|
||||
}
|
||||
export function captureError(err) {
|
||||
if (config.useDeprecatedSynchronousErrorHandling && context) {
|
||||
context.errorThrown = true;
|
||||
context.error = err;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=errorContext.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue