GrammaTech / gtirb

Intermediate Representation for Binary analysis and transformation
https://grammatech.github.io/gtirb/
Other
305 stars 36 forks source link

probably switched tokens: (defmethod :around is-equal-p-internal ((left t) (right t)) #35

Closed Yehouda closed 4 years ago

Yehouda commented 4 years ago

in cl/gtirb.lisp, there is a definition that starts (line 164):

(defmethod :around is-equal-p-internal ((left t) (right t))

That defines a method for tha :around generic function, with qualifier is-equal-p-internal. LispWorks errors on that. Presumably the tokens are swicthed, and it should be:

(defmethod is-equal-p-internal :around ((left t) (right t))

eschulte commented 4 years ago

Thanks again!