Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This patch also increases the resolution of reported file times to
sub-millisecond precision.
|
|
Deno.runTests() interface is not yet good enough to be exposed
publicly with stability guarantees.
This commit removes public API related to testing: Deno.runTests()
and Deno.TestMessage, but keeps them exposed on Deno.internal object
so they can be used with "deno test" subcommand.
|
|
|
|
|
|
|
|
|
|
|
|
This commit removes Deno.OpenMode along with overloaded variants
of Deno.open() and Deno.openSync() that used OpenMode.
|
|
|
|
|
|
|
|
This commit renames all APIs containing "TLS" to use camel case
(connectTLS -> connectTls, etc.)
|
|
* rename disableOpSanitizer to sanitizeOps
* rename disableResourceSanitizer to sanitizeResources
|
|
|
|
|
|
* rename Deno.toAsyncIterator() to Deno.iter()
* adds sync version Deno.iterSync()
* adds optional second argument for buffer size
|
|
|
|
|
|
|
|
This simplifies the plugin interface in order to deliver op crates with a similar API
|
|
|
|
|
|
|
|
|
|
syscalls (#4762)
|
|
|
|
Renames and adds missing fields to JSStackFrame from CallSite. Fixes #4705.
Cleans up base changes for line and column numbers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Reduce "testing" interfaces
* Use a callback instead of a generator for Deno.runTests()
* Default RunTestsOptions::reportToConsole to true
* Compose TestMessage into a single interface
|
|
|
|
|
|
|
|
|
|
|