Extract commonly used Parser code to new Parser component

This commit is contained in:
Jan
2021-03-08 20:06:34 +01:00
parent d96f813e73
commit 8d9080066f
39 changed files with 54 additions and 3 deletions

View File

@ -13,9 +13,10 @@ end
function ZoneCommon:link(links)
links:add(self:name())
links:linkto(Utils)
links:linkto(Common)
links:linkto(ObjCommon)
links:linkto(Parser)
links:linkto(Utils)
end
function ZoneCommon:use()
@ -42,4 +43,5 @@ function ZoneCommon:project()
}
self:include(includes)
Parser:include(includes)
end