Added equality metamethod to ASTs.
This commit is contained in:
parent
5435e50f0f
commit
fead66ab9b
@ -40,6 +40,11 @@ for name in *types
|
||||
replacement = (@__class)(@source, unpack(replacements))
|
||||
replacement.comments = [c for c in *@comments] if @comments
|
||||
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,
|
||||
__tostring: => @name
|
||||
|
Loading…
Reference in New Issue
Block a user