Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement fallback_call #647

Merged
merged 4 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/library/mixin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ function mixin_public.eachentry(region, layer)
local c = mixin.FCMNoteEntryCell(measure, region:CalcStaffNumber(slotno))
c:SetLoadLayerMode(layertouse)
c:Load()
return function ()
return function()
while true do
i = i + 1;
local returnvalue = c:GetItemAt(i - 1)
Expand Down
40 changes: 40 additions & 0 deletions src/mixin/__FCMBase.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
-- Author: Robert Patterson
-- Date: January 20, 2024
--[[
$module __FCMBase

## Summary of Modifications
- Add method _FallbackCall to gracefully allow skipping missing methods in earlier Lua versions
]] --
local mixin = require("library.mixin")
local mixin_helper = require("library.mixin_helper")

local class = {Methods = {}}
local methods = class.Methods


--[[
% _FallbackCall

Checks the existence of a class method before calling it. If the method exists, it returns
as expected. If the method does not exist, it returns the fallback_value. This function allows
a script to call a method that does not exist in earlier versions of Lua (specifically, in JW Lua)
and get a default return value in that case.

@ self (userdata) The class instance on which to call the method.
@ method_name (string) The name of the method to return.
@ fallback_value (any) The value that will be returned if the method does not exist. If this value is `nil`, the function returns `self`.
@ additional_parameters (...) The additional parameters of the method.
]]
function methods:_FallbackCall(method_name, fallback_value, ...)
if not self[method_name] then
if fallback_value ~= nil then
return fallback_value
end
return self
end

return self[method_name](self, ...)
end

return class