aboutsummaryrefslogtreecommitdiffstats
path: root/base.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-01-31 18:28:10 +0000
committers-ol <s-ol@users.noreply.github.com>2020-01-31 18:28:10 +0000
commit16962e1836251526fa08895b1a76dd72b7fd5ef9 (patch)
treeef60d08e792825407d41fb77c14c26ecb135e2fc /base.moon
parentnested parens in comments (diff)
downloadalive-16962e1836251526fa08895b1a76dd72b7fd5ef9.tar.gz
alive-16962e1836251526fa08895b1a76dd72b7fd5ef9.zip
modularize
Diffstat (limited to 'base.moon')
-rw-r--r--base.moon8
1 files changed, 4 insertions, 4 deletions
diff --git a/base.moon b/base.moon
index 4fc2c98..acade78 100644
--- a/base.moon
+++ b/base.moon
@@ -1,11 +1,11 @@
-class Constant
+class Const
new: (@value) =>
get: => @value
getc: => @value
__tostring: => "<const: #{@value}>"
-class OP
+class Op
new: (@node) =>
@setup @node\tail!
@@ -27,6 +27,6 @@ class OP
cls.__base.__tostring = @__tostring
{
- :Constant
- :OP
+ :Const
+ :Op
}