summaryrefslogtreecommitdiff
path: root/core/ops_builtin.rs
AgeCommit message (Collapse)Author
2021-07-02refactor: introduce primordials (#10939)Luca Casonato
This commit introduces primordials to deno_core. Primordials are a frozen set of all intrinsic objects in the runtime. They are not vulnerable to prototype pollution.
2021-06-22fix(core): don't panic on stdout/stderr write failures in Deno.core.print ↵Charlie Moog
(#11039)
2021-05-15cleanup(core): flatten print's op args (#10643)Aaron O'Mullan
2021-05-08cleanup(ops): remove unused ZeroCopyBuf arg-types (#10530)Aaron O'Mullan
2021-05-03fix(core/print): flush stderr (#10480)Aaron O'Mullan
2021-05-02refactor(core): convert core.print() to a builtin op (#10436)Aaron O'Mullan
2021-04-30refactor(core): provide builtins as an Extension (#10449)Aaron O'Mullan
2021-04-25refactor(core): move builtin ops to their own file (#10336)Aaron O'Mullan