From 8a43f419060f2f0e96e3f692f45cb45266c2291c Mon Sep 17 00:00:00 2001
From: Domenic Denicola
A JavaScript value, which has meaning only if the record is null, indicating that the corresponding script - source text could not be parsed.
A JavaScript value, which has meaning only if the record is null, indicating that the corresponding script + source text could not be parsed.
+ +This value is used for internal tracking of immediate parse errors when creating scripts, and should not be used directly. Instead, consult + the error to rethrow when determining + "what went wrong" for this script.
+A JavaScript value representing an error that will prevent evaluation from succeeding. It will be re-thrown by any attempts to run the script.
+This could be the script's parse + error, but in the case of a module script it could instead be the + parse error from one of its dependencies, or + an error from resolve a module specifier.
+Since this exception value is provided by the JavaScript specification, we know that it is never null, so we use null to signal that no error has occurred.
From d8934f2b1b4328fa3164dd175aa4f6d83adf862c Mon Sep 17 00:00:00 2001 From: Domenic DenicolaThis value is used for internal tracking of immediate parse errors when creating scripts, and should not be used directly. Instead, consult + href="#creating-scripts">creating scripts, and is not to be used directly. Instead, consult the error to rethrow when determining "what went wrong" for this script.