diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-02-10 14:30:03 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-02-10 14:31:39 +0000 |
| commit | 2174e57f3626b95b69eeb543f1d11ee867b67a63 (patch) | |
| tree | 28e4483952928d5babe04b57cb57bad1da723128 /lib | |
| parent | switch from luaposix to luasystem (diff) | |
| download | alive-2174e57f3626b95b69eeb543f1d11ee867b67a63.tar.gz alive-2174e57f3626b95b69eeb543f1d11ee867b67a63.zip | |
reorganization
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/builtin.moon | 3 | ||||
| -rw-r--r-- | lib/debug.moon | 2 | ||||
| -rw-r--r-- | lib/gui.moon | 2 | ||||
| -rw-r--r-- | lib/math.moon | 2 | ||||
| -rw-r--r-- | lib/osc.moon | 2 | ||||
| -rw-r--r-- | lib/time.moon | 2 | ||||
| -rw-r--r-- | lib/util.moon | 2 |
7 files changed, 7 insertions, 8 deletions
diff --git a/lib/builtin.moon b/lib/builtin.moon index 5c3d7d4..b4d6dc7 100644 --- a/lib/builtin.moon +++ b/lib/builtin.moon @@ -1,5 +1,4 @@ -import Action, Const, Cell from require 'base' -import Scope from require 'scope' +import Const, Cell, Action, Scope from require 'core' class UpdateChildren new: (@children) => diff --git a/lib/debug.moon b/lib/debug.moon index f87b06a..6888d89 100644 --- a/lib/debug.moon +++ b/lib/debug.moon @@ -1,4 +1,4 @@ -import Op from require 'base' +import Op from require 'core' class out extends Op setup: (name, @chld) => diff --git a/lib/gui.moon b/lib/gui.moon index 37df233..69c97a3 100644 --- a/lib/gui.moon +++ b/lib/gui.moon @@ -1,5 +1,5 @@ { graphics: lg } = love -import Op from require 'base' +import Op from require 'core' import Registry from require 'registry' import Copilot from require 'copilot' diff --git a/lib/math.moon b/lib/math.moon index 0a514a6..ca7321c 100644 --- a/lib/math.moon +++ b/lib/math.moon @@ -1,4 +1,4 @@ -import Op from require 'base' +import Op from require 'core' unpack or= table.unpack class BinOp extends Op diff --git a/lib/osc.moon b/lib/osc.moon index 02e3ade..a2c992b 100644 --- a/lib/osc.moon +++ b/lib/osc.moon @@ -1,4 +1,4 @@ -import Op from require 'base' +import Op from require 'core' import pack, unpack from require 'osc' import dns, udp from require 'socket' diff --git a/lib/time.moon b/lib/time.moon index 22457bb..567b16f 100644 --- a/lib/time.moon +++ b/lib/time.moon @@ -1,4 +1,4 @@ -import Op, Const from require 'base' +import Const, Op from require 'core' class lfo extends Op tau = math.pi * 2 diff --git a/lib/util.moon b/lib/util.moon index 5079b1b..ed643aa 100644 --- a/lib/util.moon +++ b/lib/util.moon @@ -1,4 +1,4 @@ -import Op from require 'base' +import Op from require 'core' class pick extends Op setup: (@i, ...) => |
