about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/io/readablestream.nim32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/io/readablestream.nim b/src/io/readablestream.nim
deleted file mode 100644
index 8269f1dc..00000000
--- a/src/io/readablestream.nim
+++ /dev/null
@@ -1,32 +0,0 @@
-#TODO....
-
-type
-  UnderlyingSourceStartCallback = proc(controller: ReadableStreamController):
-    Option[JSValue] # may be undefined!
-  UnderlyingSourcePullCallback = proc(controller: ReadableStreamController):
-    EmptyPromise
-  UnderlyingSourceCancelCallback = proc(reason = none(JSValue)): EmptyPromise
-
-  ReadableStreamType = enum
-    BYOB = "byob"
-
-  UnderlyingSource* = object
-    start*: Option[UnderlyingSourceStartCallback]
-    pull*: Option[UnderlyingSourcePullCallback]
-    cancel*: Option[UnderlyingSourcePullCallback]
-    #TODO mark real name being type
-    ctype*: Option[ReadableStreamType]
-
-  QueuingStrategySize = proc(chunk: JSValue): float64 # unrestricted
-
-  QueuingStrategy* = object
-    highWaterMark*: float64 # unrestricted
-    size*: QueuingStrategySize
-
-  ReadableStream* = object
-    underlyingSource: UnderlyingSource
-
-proc newReadableStream(underlyingSource = none(UnderlyingSource);
-    strategy = none(QueuingStrategySize)): ReadableStream =
-  let this = ReadableStream()
-  discard