No longer using stubs for non-actions.

This commit is contained in:
Bruce Hill 2019-03-14 17:57:55 -07:00
parent c2397620a9
commit a09b66d725
2 changed files with 6 additions and 2 deletions

View File

@ -254,7 +254,10 @@ do
[patt:as_var()] = self [patt:as_var()] = self
} }
end end
if patt:get_stub() ~= self:get_stub() then if patt.type ~= self.type then
return nil
end
if patt.type == "Action" and patt:get_stub() ~= self:get_stub() then
return nil return nil
end end
if #self ~= #patt then if #self ~= #patt then

View File

@ -134,7 +134,8 @@ class SyntaxTree
matching: (patt)=> matching: (patt)=>
if patt.type == "Var" if patt.type == "Var"
return {[patt\as_var!]:@} return {[patt\as_var!]:@}
return nil if patt\get_stub! != @get_stub! return nil if patt.type != @type
return nil if patt.type == "Action" and patt\get_stub! != @get_stub!
-- TODO: support vararg matches like (\(say 1 2 3), matching \(say *$values)) -- TODO: support vararg matches like (\(say 1 2 3), matching \(say *$values))
return nil if #@ != #patt return nil if #@ != #patt
match = {} match = {}