Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-29 | Implement a logger so we can get logging output. | Ryan Dahl | |
2018-07-29 | Add tests/003_relative_import.ts | Ryan Dahl | |
2018-07-27 | Ignore any generated TypeScript files | Kitson Kelly | |
2018-07-26 | Simplify run_rustc.py output. | Ryan Dahl | |
2018-07-26 | Fix clang warning. | Ryan Dahl | |
warning: comparison of integers of different signs: 'const unsigned long' and 'const int' [-Wsign-compare] | |||
2018-07-26 | Run tools/format.py | Ryan Dahl | |
2018-07-25 | Remove msg_generated hack (#409) | Kitson Kelly | |
2018-07-25 | Add --v8-options flag (#405) | robbym | |
2018-07-25 | Clean up and fix tools | Bert Belder | |
* Make sync_third_party work in general * Un-break build.py and run_hooks.py on windows * Partially fix format.py on windows * Reduce code duplication between run_hooks and sync_third_party | |||
2018-07-24 | Add tools/build.py (#398) | Ryan Dahl | |
To allow better tab completion for ./tools/build.py mv build_third_party.py sync_third_party.py | |||
2018-07-24 | Remove handlers crate target. | Ryan Dahl | |
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler. | |||
2018-07-24 | Allow deno_buf with null alloc_ptr to be memcpy'd | Ryan Dahl | |
This is a temporary hack to allow for easier restructuring of the serialization code as we move Flatbuffer stuff from C++ to Rust. | |||
2018-07-24 | Add mock_runtime_test for deno_last_exception. | Ryan Dahl | |
2018-07-24 | Fix recursive globbing in tools/format.py | Ryan Dahl | |
And use third_party/depot_tools/gn. | |||
2018-07-24 | Change copyrights to be 'Deno authors'. | Ryan Dahl | |
2018-07-22 | Make check_output_test.py tolerate CRLF line endings in test output | Bert Belder | |
2018-07-22 | Fix resolve_module() when module_specifier is an absolute file path | Bert Belder | |
2018-07-22 | Update third_party submodule | Ryan Dahl | |
2018-07-22 | Replace packer with rollup | Kitson Kelly | |
2018-07-21 | Add tools/test.py test runner. (#384) | Ryan Dahl | |
2018-07-21 | Fix symlink creation on windows | Bert Belder | |
2018-07-21 | Add deno_third_party as git submodule. | Ryan Dahl | |
2018-07-21 | Fix some warnings (#379) | Yoshiya Hinosawa | |
2018-07-20 | Suppress misleading rustc warning when running gn gen | Bert Belder | |
rustc prints the warning: `-C save-temps` might not produce all requested temporary products when incremental compilation is enabled. However, incremental compilation isn't even enabled. A look at the Rust source code confirms that this warning is indeed printed unconditionally when the `-C save-temps` flag is specified: https://github.com/rust-lang/rust/blob/5f2b325f64ed6caa7179f3e04913db437656ec7e/src/librustc/session/config.rs#L1015-L1018 | |||
2018-07-20 | Use 2 space indent. | Ryan Dahl | |
Apologies for the churn, but my screen is small. rustfmt assumes big monitors. | |||
2018-07-20 | Wrap rust at 80 columns. | Ryan Dahl | |
2018-07-19 | Make test_resolve_module pass on windows | Bert Belder | |
2018-07-19 | Link rust_test targets with external linker, fix handlers_test linkage | Bert Belder | |
2018-07-19 | cleanup: Move C extern code to src/binding.rs | Ryan Dahl | |
2018-07-18 | Use Cargo to install rust deps into //third_party/rust_crates (#383) | robbym | |
2018-07-18 | Rename deno_nosnapshot to deno_ns. | Ryan Dahl | |
2018-07-18 | Better exception output. | Ryan Dahl | |
2018-07-18 | Execute JS for the first time in Rust rewrite. | Ryan Dahl | |
Implements code_fetch handler in Rust. Add ability to embed string assets (for typescript declaration files) Remove deno_cc and deno_cc_nosnapshot targets. | |||
2018-07-18 | Minimize snapshot deps by adding deno_base target. | Ryan Dahl | |
Also adds main.map to bundle outputs in GN. | |||
2018-07-18 | Add rust crate log to third_party. | Ryan Dahl | |
2018-07-18 | Add deno::Basename and deno::BinaryContentAsC utilies. | Ryan Dahl | |
These are prep for code sharing with the asset code soon to land. | |||
2018-07-18 | Downgrade typescript to 2.8.3 | Ryan Dahl | |
This is to exactly match the runtime in the prototype for easier debugging. We will upgrade once the runtime is functional being tested properly. | |||
2018-07-18 | Fix warnings in mock_runtime_test.cc | Ryan Dahl | |
2018-07-18 | Reduce unnecessary build output. | Ryan Dahl | |
2018-07-14 | update v8 version in readme to match reality | Mike Reinstein | |
2018-07-13 | Run tools/format.py | Ryan Dahl | |
2018-07-13 | Add :all target | Ryan Dahl | |
2018-07-13 | gclient sync should be shallow | Ryan Dahl | |
2018-07-13 | Move C++ test main function to its own file. | Ryan Dahl | |
2018-07-13 | Create .gitattributes | Kompwu | |
2018-07-12 | Add color to rustc output (except windows) | Ryan Dahl | |
2018-07-12 | Move buffers between V8 and native | Bert Belder | |
* send()/recv() now operate on TypedArrays rather than ArrayBuffers. * Remove a copy (through ArrayBuffer.slice()) from the send path. * Remove a copy (through v8::ArrayBuffer::New()) from the return path. * After moving a buffer from JS to native, the ArrayBuffer object and it's views are made inaccessible ('neutered'). * `struct deno_buf` now holds two [ptr, length] tuples, one for the actual memory allocation, and one for the logical data contained therein. This is necessary because flatbuffers fills it's buffer bottom-up, so the serialized blob doesn't start at beginning of the buffer, but somewhere in the middle. | |||
2018-07-12 | Remove channel argument from Rust message callback | Bert Belder | |
This makes `deno` not crash any more. | |||
2018-07-12 | Add nosnapshot executables for faster incremental builds (#359) | Faris Amali Alis | |
Fixes #311. | |||
2018-07-10 | Remove -f option from rustfmt. (#356) | Ryan Dahl | |
And add support for RUSTFMT_FLAGS (Some people might need -f option) |