ceylon / ceylon.ast

Apache License 2.0
18 stars 3 forks source link

WideningTransformer misdirects IntersectionOperations #106

Closed jvasileff closed 8 years ago

jvasileff commented 8 years ago

transformIntersectionOperation() should forward to transformSetOperation(), not transformBinaryOperation() as it currently does on line 147:

    shared actual default Result transformIntersectionOperation(IntersectionOperation that) => transformBinaryOperation(that);
lucaswerkmeister commented 8 years ago

Thanks, should be fixed now.

jvasileff commented 8 years ago

Thanks!