File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,13 @@ build = {
4242 [" moonscript.parse.literals" ] = " moonscript/parse/literals.lua" ,
4343 [" moonscript.parse.util" ] = " moonscript/parse/util.lua" ,
4444 [" moonscript.transform" ] = " moonscript/transform.lua" ,
45+ [" moonscript.transform.accumulator" ] = " moonscript/transform/accumulator.lua" ,
4546 [" moonscript.transform.destructure" ] = " moonscript/transform/destructure.lua" ,
4647 [" moonscript.transform.names" ] = " moonscript/transform/names.lua" ,
48+ [" moonscript.transform.statement" ] = " moonscript/transform/statement.lua" ,
4749 [" moonscript.transform.statements" ] = " moonscript/transform/statements.lua" ,
50+ [" moonscript.transform.transformer" ] = " moonscript/transform/transformer.lua" ,
51+ [" moonscript.transform.value" ] = " moonscript/transform/value.lua" ,
4852 [" moonscript.types" ] = " moonscript/types.lua" ,
4953 [" moonscript.util" ] = " moonscript/util.lua" ,
5054 [" moonscript.version" ] = " moonscript/version.lua" ,
Original file line number Diff line number Diff line change 6565 end
6666 end ,
6767 lint_check_unused = function (self )
68- do
69- return
70- end
7168 if not (self .lint_unused_names and next (self .lint_unused_names )) then
7269 return
7370 end
Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ class LinterBlock extends Block
105105 @parent \ lint_mark_used name
106106
107107 lint_check_unused : =>
108- do return
109108 return unless @lint_unused_names and next @lint_unused_names
110109
111110 names_by_position = {}
You can’t perform that action at this time.
0 commit comments