Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-03 | add "deno run" subcommand (#2215) | Bartek IwaĆczuk | |
2019-03-18 | Integrate //core into existing code base | Ryan Dahl | |
This disables a few tests which are broken still: - tests/error_004_missing_module.test - tests/error_005_missing_dynamic_import.test - tests/error_006_import_ext_failure.test - repl_test test_set_timeout - repl_test test_async_op - repl_test test_set_timeout_interlaced - all of permission_prompt_test | |||
2019-02-12 | Add Deno global namespace (#1748) | Kitson Kelly | |
Resolves #1705 This PR adds the Deno APIs as a global namespace named `Deno`. For backwards compatibility, the ability to `import * from "deno"` is preserved. I have tried to convert every test and internal code the references the module to use the namespace instead, but because I didn't break compatibility I am not sure. On the REPL, `deno` no longer exists, replaced only with `Deno` to align with the regular runtime. The runtime type library includes both the namespace and module. This means it duplicates the whole type information. When we remove the functionality from the runtime, it will be a one line change to the library generator to remove the module definition from the type library. I marked a `TODO` in a couple places where to remove the `"deno"` module, but there are additional places I know I didn't mark. | |||
2019-02-11 | REPL multiline support with recoverable errors (#1731) | Kevin (Kun) "Kassimo" Qian | |
2019-02-09 | Support scoped variables, unblock REPL async op, and REPL error colors (#1721) | Kevin (Kun) "Kassimo" Qian | |
2019-01-29 | Add repl functions "help" and "exit" (#1563) | Sergey Golovin | |
2019-01-21 | chore: update license lines (#1557) | Yoshiya Hinosawa | |
2019-01-09 | Fix flaky REPL test (#1491) | Maxim Mazurok | |
Fixes #1490 | |||
2018-11-30 | Use pylint. | Ryan Dahl | |
2018-11-30 | Fix flaky REPL test. | Ryan Dahl | |
2018-11-29 | Cleanup setTimeout repl test and alphabetize tests | Andy Hayden | |
2018-11-28 | REPL unblock event loop AND fix REPL setTimeout fire problems | Kevin (Kun) "Kassimo" Qian | |
2018-11-06 | Support repl multiline input (#1165) | Andy Hayden | |
2018-11-05 | Add repl (#998) | Andy Hayden | |
- Running repl from js side. - Add tests for repl behavior. - Handle ctrl-C and ctrl-D. |