diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-02-10 15:12:53 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-02-10 15:12:53 +0000 |
| commit | e6ad30365e5c191ad0cb4b98f0d543414b8be7ef (patch) | |
| tree | 8d67fa54725f27953d21a0833d8dd5f51680b2d8 /core/cell.moon | |
| parent | finally implement function diffing (diff) | |
| download | alive-e6ad30365e5c191ad0cb4b98f0d543414b8be7ef.tar.gz alive-e6ad30365e5c191ad0cb4b98f0d543414b8be7ef.zip | |
closures
Diffstat (limited to 'core/cell.moon')
| -rw-r--r-- | core/cell.moon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/cell.moon b/core/cell.moon index 1a25c0a..ae6eea4 100644 --- a/core/cell.moon +++ b/core/cell.moon @@ -36,7 +36,7 @@ class Cell @tag = cell.tag -- for writing back to file clone: (prefix) => - tag = Const.sym prefix\getc! .. @tag\getc! + tag = Const.sym prefix\getc! .. '.' .. @tag\getc! children = [child\clone prefix for child in *@children] Cell tag, children, @white |
