aboutsummaryrefslogtreecommitdiffstats
path: root/core/stream/base.moon
diff options
context:
space:
mode:
Diffstat (limited to 'core/stream/base.moon')
-rw-r--r--core/stream/base.moon11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/stream/base.moon b/core/stream/base.moon
index ee4ee17..cdccdc2 100644
--- a/core/stream/base.moon
+++ b/core/stream/base.moon
@@ -53,17 +53,6 @@ class Stream
--
-- @tfield ?table meta
- __tostring: =>
- value = if @meta.name
- @meta.name
- else if 'table' == (type @value) and rawget @value, '__base'
- @value.__name
- else
- tostring @value
- "<#{@@__name} #{@type}: #{value}>"
-
- __inherited: (cls) => cls.__base.__tostring = @__tostring
-
--- static functions
-- @section static