Added equality metamethod to ASTs.

This commit is contained in:
Bruce Hill 2018-07-22 13:44:00 -07:00
parent 5435e50f0f
commit fead66ab9b

View File

@ -40,6 +40,11 @@ for name in *types
replacement = (@__class)(@source, unpack(replacements)) replacement = (@__class)(@source, unpack(replacements))
replacement.comments = [c for c in *@comments] if @comments replacement.comments = [c for c in *@comments] if @comments
return replacement return replacement
.__eq = (other)=>
return false if type(@) != type(other) or #@ != #other or getmetatable(@) != getmetatable(other)
for i=1,#@
return false if @[i] != other[i]
return true
AST[name] = setmetatable cls, AST[name] = setmetatable cls,
__tostring: => @name __tostring: => @name