mirror of
https://github.com/rubyjs/mini_racer
synced 2023-03-27 23:21:28 -04:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
function throwSomeError() {
|
|
throw new Error(
|
|
"^^ Look! These stack traces map to the actual source code :)"
|
|
);
|
|
}
|
|
|
|
export const ErrorCausingComponent = () => {
|
|
throwSomeError();
|
|
};
|