Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-09 | Expose deno.ErrorKind | Ryan Dahl | |
Originally we planned to have a JS class for each error code. But it seems better to just have a single DenoError class with a "kind" property. One nice thing about using an enum instead of classes for errors is that switch() can be used during error handling instead of a bunch of instanceof branches. | |||
2018-09-09 | Remove namespace from src/msg.fbs | Ryan Dahl | |
2018-09-09 | Map promises onto futures. | Ryan Dahl | |
Refactors handlers.rs The idea is that all Deno "ops" (aka bindings) should map onto a Rust Future. By setting the "sync" flag in the Base message users can determine if the future is executed immediately or put on the event loop. In the case of async futures, a promise is automatically created. Errors are automatically forwarded and raised. TODO: - The file system ops in src/handler.rs are not using the thread pool yet. This will be done in the future using tokio_threadpool::blocking. That is, if you try to call them asynchronously, you will get a promise and it will act asynchronous, but currently it will be blocking. - Handlers in src/handler.rs returned boxed futures. This was to make it easy while developing. We should try to remove this allocation. | |||
2018-09-09 | Add better assert message for CodeFetchRes | Ryan Dahl | |
2018-09-09 | Add type aliases for sourceCode and outputCode | Daniel Ramos | |
2018-09-07 | Add and edit comments | J2P | |
2018-09-06 | Cleanup public API of DenoCompiler | Kitson Kelly | |
2018-09-06 | Integrate format diagnostic host in DenoCompiler | Kitson Kelly | |
2018-09-06 | Check allow-net in fetch | Parsa Ghadimi | |
2018-09-06 | Fix TypeScript exports in bundle | Kitson Kelly | |
2018-09-06 | Implementing --deps flag | Mirko Jotic | |
- Adding a ModuleId type alias to specify original url or local file of dependency - Modifying ModuleMetaData class to contain ModuleId - Adding a --deps flag | |||
2018-09-05 | Format | Ryan Dahl | |
2018-09-05 | Mark APIs at internal and include JSDoc in types | Kitson Kelly | |
2018-09-04 | lStat -> lstat | Ryan Dahl | |
2018-09-04 | Implement renameSync | Mani Maghsoudlou | |
2018-09-03 | Implement mkdirSync | Sajjad Hashemian | |
2018-09-03 | Format. | Ryan Dahl | |
2018-09-02 | Unit tests for circular references | Kitson Kelly | |
2018-09-02 | Fix circular dependencies | Kitson Kelly | |
2018-09-01 | Minor code refactoring | ShinDarth | |
2018-09-01 | Refactor code to be same style | liuyi | |
2018-09-01 | Remove lib.globals.d.ts | Kitson Kelly | |
2018-09-01 | Bundle most types into globals.d.ts (#642) | Kitson Kelly | |
2018-08-31 | Document lStatSync & statSync and correct FileInfo. | Aaron Power | |
2018-08-31 | Implemented deno.env and refactored flags.rs | Aaron Power | |
2018-08-31 | Refactor libdeno.send() code to reduce boilerplate. | Ryan Dahl | |
Also removes assignCmdId as it's currently unused. | |||
2018-08-30 | format | Ryan Dahl | |
2018-08-30 | Reorganize js/unit_tests.ts | Ryan Dahl | |
2018-08-30 | Implemented statSync and lStatSync | Aaron Power | |
2018-08-30 | add type declaration | ztplz | |
2018-08-29 | Implement makeTempDirSync() | Bert Belder | |
2018-08-29 | Allow filtering of unit tests. | Ryan Dahl | |
2018-08-28 | Updates to compiler.ts comments and logging. | Kitson Kelly | |
2018-08-28 | Two-pass module evaluation. | Kitson Kelly | |
Plus changes to tests to accomodate. | |||
2018-08-28 | format | Bert Belder | |
2018-08-27 | Add ability to unit test by permissions. | Ryan Dahl | |
2018-08-27 | Add deno.argv. | Ryan Dahl | |
2018-08-27 | Moved console tests to own file, and switched circular test to use stringify ↵ | Aaron Power | |
with assertEqual | |||
2018-08-27 | Fixed printing strings in arrays & objects without quotes | Aaron Power | |
2018-08-26 | refactor: add and use libdeno.setGlobalErrorHandler instead of window.onerror | Yoshiya Hinosawa | |
2018-08-25 | Prevent circular imports in ts code (#576) | Francesco Borzì | |
2018-08-24 | Integrate ScriptSnapshot into ModuleMetaData | Kitson Kelly | |
2018-08-23 | Improve DenoCompiler.makeDefine and localRequire | Kitson Kelly | |
2018-08-23 | fmt | Ryan Dahl | |
2018-08-22 | Implement writeFileSync | Ryan Dahl | |
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch> | |||
2018-08-22 | runtime.ts refactor into compiler.ts (#564) | Ryan Dahl | |
Adds compiler_test.ts | |||
2018-08-21 | Expose deno.exit() and add test. | Ryan Dahl | |
2018-08-21 | Better error handling in src/handlers.rs | Ryan Dahl | |
Introduces error codes that are shared between JS/RS Fixes #526. | |||
2018-08-20 | Fix TS errors in fetch.ts | Ryan Dahl | |
2018-08-20 | First pass at fetch() | Ryan Dahl | |
With help from Thomas Ghysels <info@thomasg.be> |