Skip to content

Commit a72be35

Browse files
committed
import Lua built-in string, math and table as well as Aegisub re, unicode and util methods for convenient access
1 parent 63acc29 commit a72be35

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Functional.moon

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ _function = {
534534
true: -> true
535535
}
536536

537-
util = {
537+
_util = {
538538
equals: DependencyControl.UnitTestSuite.UnitTest.equals
539539
itemsEqual: DependencyControl.UnitTestSuite.UnitTest.itemsEqual
540540
}
@@ -611,11 +611,11 @@ return version\register {
611611
function: _function
612612
:list
613613
List: list
614-
string: _string
615-
math: _math
616-
table: _table
617-
:util
614+
string: _table.union string, _string
615+
math: _table.union math, _math
616+
table: _table.union table, _table
617+
util: _table.union util, _util
618618
:version
619-
re: _re
620-
unicode: _unicode
619+
re: _table.union re, _re
620+
unicode: _table.union unicode, _unicode
621621
}

0 commit comments

Comments
 (0)