summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-01Better handling of exceptions during snapshot creation.Ryan Dahl
2018-08-01build: use compiled_action for create_snapshot.Ryan Dahl
Switch the order of the snapshot_creator args, in order to allow for optional source map arg.
2018-08-01Add base64-js to third_party.Ryan Dahl
It's a dependency of js/v8_source_maps.ts.
2018-07-31Upgrade TypeScript (3.0.1)Kitson Kelly
Update runtime to use lib.deno.d.ts Add proper console declaration Upgrade prettier (There was an issue formatting lib.deno.d.ts)
2018-07-29Install sysroot on linux.Ryan Dahl
2018-07-29Remove depot_tools from travis.Ryan Dahl
Fixes #399
2018-07-29Rename run_hooks.py to setup.pyRyan Dahl
Moves 'gn gen' into setup.py Make tools/build.py more ergonomic.
2018-07-29Add winapi crate, make 'rand' and 'tempfile' workBert Belder
2018-07-29Add "features" argument to rust componentsBert Belder
2018-07-29Implement CodeCacheRyan Dahl
2018-07-29Add sha1 and tempfile crates.Ryan Dahl
2018-07-29spellingRyan Dahl
2018-07-29Add from_c() to get a Deno object from ptr.Ryan Dahl
This is a utility function for CodeCache and other handlers.
2018-07-29Implement a logger so we can get logging output.Ryan Dahl
2018-07-29Add tests/003_relative_import.tsRyan Dahl
2018-07-27Ignore any generated TypeScript filesKitson Kelly
2018-07-26Simplify run_rustc.py output.Ryan Dahl
2018-07-26Fix clang warning.Ryan Dahl
warning: comparison of integers of different signs: 'const unsigned long' and 'const int' [-Wsign-compare]
2018-07-26Run tools/format.pyRyan Dahl
2018-07-25Remove msg_generated hack (#409)Kitson Kelly
2018-07-25Add --v8-options flag (#405)robbym
2018-07-25Clean up and fix toolsBert 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-24Add 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-24Remove 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-24Allow deno_buf with null alloc_ptr to be memcpy'dRyan 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-24Add mock_runtime_test for deno_last_exception.Ryan Dahl
2018-07-24Fix recursive globbing in tools/format.pyRyan Dahl
And use third_party/depot_tools/gn.
2018-07-24Change copyrights to be 'Deno authors'.Ryan Dahl
2018-07-22Make check_output_test.py tolerate CRLF line endings in test outputBert Belder
2018-07-22Fix resolve_module() when module_specifier is an absolute file pathBert Belder
2018-07-22Update third_party submoduleRyan Dahl
2018-07-22Replace packer with rollupKitson Kelly
2018-07-21Add tools/test.py test runner. (#384)Ryan Dahl
2018-07-21Fix symlink creation on windowsBert Belder
2018-07-21Add deno_third_party as git submodule.Ryan Dahl
2018-07-21Fix some warnings (#379)Yoshiya Hinosawa
2018-07-20Suppress misleading rustc warning when running gn genBert 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-20Use 2 space indent.Ryan Dahl
Apologies for the churn, but my screen is small. rustfmt assumes big monitors.
2018-07-20Wrap rust at 80 columns.Ryan Dahl
2018-07-19Make test_resolve_module pass on windowsBert Belder
2018-07-19Link rust_test targets with external linker, fix handlers_test linkageBert Belder
2018-07-19cleanup: Move C extern code to src/binding.rsRyan Dahl
2018-07-18Use Cargo to install rust deps into //third_party/rust_crates (#383)robbym
2018-07-18Rename deno_nosnapshot to deno_ns.Ryan Dahl
2018-07-18Better exception output.Ryan Dahl
2018-07-18Execute 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-18Minimize snapshot deps by adding deno_base target.Ryan Dahl
Also adds main.map to bundle outputs in GN.
2018-07-18Add rust crate log to third_party.Ryan Dahl
2018-07-18Add deno::Basename and deno::BinaryContentAsC utilies.Ryan Dahl
These are prep for code sharing with the asset code soon to land.
2018-07-18Downgrade typescript to 2.8.3Ryan 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.