Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Since everything that Deno loads is treated as an ES Module,
it means that all code is treated as "use strict" except for
when using the REPL. This PR changes that so code in the
REPL is also always evaluated with "use strict". There are
also a couple other places where we load code as scripts
which should also use "use strict" just in case.
|
|
|
|
|
|
tests (#5926)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Note that this does not fix the 'Uncaught ReferenceError' issue that
happens when 'eager evaluation' is enabled in the inspector.
Fixes: #5807
|
|
|
|
|
|
|
|
Also remove the unix example from the stable documentation
to stay in line with the `Deno.listen` one
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This commit changes how error occurring in SWC are handled.
Changed lexer settings to properly handle TS decorators.
Changed output of SWC error to annotate with position in file.
|
|
|
|
|
|
This commit fixes a bug introduced in #5029 that caused bad
handling of redirects during module analysis.
Also ensured that duplicate modules are not downloaded.
|
|
Closes #5567
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixes trailing comma issue
|
|
|
|
|
|
|
|
|