summaryrefslogtreecommitdiff
path: root/js/os.ts
AgeCommit message (Collapse)Author
2018-09-11Implement deno.stat() and deno.lstat()Sajjad Hashemian
2018-09-11Move writeFileSync to write_file.ts, add writeFile and tests (#728)Kevin (Kun) "Kassimo" Qian
2018-09-10Implement deno.mkdir()Sajjad Hashemian
2018-09-10Implement deno.readFile()Ryan Dahl
As an example of how to implement ops that have both sync and async versions.
2018-09-10fbs_util.ts -> dispatch.tsRyan Dahl
And send() -> sendSync()
2018-09-09Remove namespace from src/msg.fbsRyan Dahl
2018-09-09Add better assert message for CodeFetchResRyan Dahl
2018-09-07Add and edit commentsJ2P
2018-09-04lStat -> lstatRyan Dahl
2018-09-04Implement renameSyncMani Maghsoudlou
2018-09-03Implement mkdirSyncSajjad Hashemian
2018-09-01Minor code refactoringShinDarth
2018-09-01Bundle most types into globals.d.ts (#642)Kitson Kelly
2018-08-31Document lStatSync & statSync and correct FileInfo.Aaron Power
2018-08-31Implemented deno.env and refactored flags.rsAaron Power
2018-08-31Refactor libdeno.send() code to reduce boilerplate.Ryan Dahl
Also removes assignCmdId as it's currently unused.
2018-08-30formatRyan Dahl
2018-08-30Implemented statSync and lStatSyncAaron Power
2018-08-29Implement makeTempDirSync()Bert Belder
2018-08-25Prevent circular imports in ts code (#576)Francesco Borzì
2018-08-22Implement writeFileSyncRyan Dahl
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-21Better error handling in src/handlers.rsRyan Dahl
Introduces error codes that are shared between JS/RS Fixes #526.
2018-08-19add notImplemented and unreachable util functions (#540)Bartek Iwańczuk
2018-08-15Use typescript strict mode (#505)Kitson Kelly
2018-08-09Add readFileSyncRyan Dahl
2018-08-08Organize libdeno functions.Ryan Dahl
2018-08-03Implement os.exitRyan Dahl
2018-07-29Implement CodeCacheRyan Dahl
2018-07-25Remove msg_generated hack (#409)Kitson Kelly
2018-07-24Change copyrights to be 'Deno authors'.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-09chore: use local prettierYoshiya Hinosawa
2018-07-06Use C++ to do flatbuffer parsing.Ryan Dahl
- Port protobuf messages to flatbuffers. - Demo linking to rust from C++ executable. - Start using the prototype TS libraries.
2018-07-06Import ts file from prototype without changeRyan Dahl
From commit 559453cf6cc88283bcf8fdeccd387458f5c63165 Excluding v8worker.d.ts, main.ts, and deno.d.ts. Updates tslint.json to be original settings.