WoWInterface SVN Aloft

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /branches/4.2/Aloft/Libs
    from Rev 2268 to Rev 2275
    Reverse comparison

Rev 2268 → Rev 2275

TagCompiler-2.0/TagCompiler-2.0.lua
738,12 → 738,12
local parameterStringList = ParseParameterList(tagData.parameterTypes, identifier)
if not dataTable.error then
if #parameterStringList > 0 then
-- result = ("tagMethod%s(data, %s, %s)"):format(identifier, functionString or "true", table.concat(parameterStringList, ", "))
result = ('--[[ 3 ]] (tagMethod%s(data, %s, %s) or "")'):format(identifier, functionString or "true", table.concat(parameterStringList, ", "))
result = ("tagMethod%s(data, %s, %s)"):format(identifier, functionString or "true", table.concat(parameterStringList, ", "))
-- result = ('--[[ 3 ]] (tagMethod%s(data, %s, %s) or "")'):format(identifier, functionString or "true", table.concat(parameterStringList, ", "))
parameterStringList = del(parameterStringList)
else
-- result = ("tagMethod%s(data, %s)"):format(identifier, functionString or "true")
result = ('--[[ 2 ]] (tagMethod%s(data, %s) or "")'):format(identifier, functionString or "true")
result = ("tagMethod%s(data, %s)"):format(identifier, functionString or "true")
-- result = ('--[[ 2 ]] (tagMethod%s(data, %s) or "")'):format(identifier, functionString or "true")
end
end
end