diff options
author | Nick Stott <nick@nickstott.com> | 2019-10-28 12:41:36 -0400 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-28 12:41:36 -0400 |
commit | 65d9286203cf239f68c6015818e82e8521e600a1 (patch) | |
tree | 0af1a7be449036f2f4ae9d3ecf06b7d645c8bddc /cli/msg.rs | |
parent | 967c236fa5fb1e87e1b5ee788fe77d3a07361da1 (diff) |
Re-enable basic stream support for fetch bodies (#3192)
* Add sd-streams from https://github.com/stardazed/sd-streams/blob/master/packages/streams/src/
* change the interfaces in dom_types to match what sd-streams expects
Diffstat (limited to 'cli/msg.rs')
-rw-r--r-- | cli/msg.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/msg.rs b/cli/msg.rs index 206da7694..5e9053a41 100644 --- a/cli/msg.rs +++ b/cli/msg.rs @@ -58,6 +58,9 @@ pub enum ErrorKind { Diagnostic = 49, JSError = 50, TypeError = 51, + + /** TODO this is a DomException type, and should be moved out of here when possible */ + DataCloneError = 52, } // Warning! The values in this enum are duplicated in js/compiler.ts |