summaryrefslogtreecommitdiff
path: root/test_plugin/tests/test.js
AgeCommit message (Collapse)Author
2021-08-06feat: ffi to replace plugins (#11152)Elias Sjögreen
This commit removes implementation of "native plugins" and replaces it with FFI API. Effectively "Deno.openPlugin" API was replaced with "Deno.dlopen" API.
2021-07-11Revert "Remove unstable native plugins (#10908)"Ryan Dahl
This reverts commit 7dd4090c2a3dc0222fd6ff611eeb2bd69cd28224.
2021-07-02Remove unstable native plugins (#10908)Bartek Iwańczuk
This commit removes implementation of native plugins alongside the unstable "Deno.openPlugin()" API.
2021-05-25cleanup(test_plugin): use else if statement (#10718)Carter Snook
2021-05-08feat(plugin): add tests for plugin args (#10529)Cedric Vangout
2021-05-07fix: align plugin api with Extension (#10427)Elias Sjögreen
2021-01-26fix(test_plugin): Add README.md and make function use same data (#9128)linbingquan
2021-01-10update copyright to 2021 (#9081)Ryan Dahl
2020-09-21chore: add copyright (#7593)tokiedokie
2020-09-06Move JSON ops to deno_core (#7336)Bert Belder
2020-07-14Use dprint for internal formatting (#6682)David Sherret
2020-07-08BREAKING(core): Remove control slice from ops (#6048)Valentin Anger
2020-06-01feat(core): Ops can take several zero copy buffers (#4788)Valentin Anger
2020-04-28BREAKING: Use LLVM target triple for Deno.build (#4948)Ryan Dahl
Deno.build.os values have changed to correspond to standard LLVM target triples "win" -> "windows" "mac" -> "darwin"
2020-04-20Remove core/plugin.rs (#4824)Ryan Dahl
This simplifies the plugin interface in order to deliver op crates with a similar API
2020-04-17Add close method to Plugin (#4670) (#4785)Gudmund Vatn
2020-03-28Update to Prettier 2 and use ES Private Fields (#4498)Kitson Kelly
2020-01-09feat: Deno.args now does not include script (#3628)Ry Dahl
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
2019-12-08fix: plugin ops should change op count metrics (#3455)Luca Casonato
2019-12-05feat: first pass at native plugins (#3372)Andy Finch