compiler,transform: move interface lowering to transform package

This commit is contained in:
Ayke van Laethem
2019-11-13 20:14:39 +01:00
committed by Ayke
parent 36d1198115
commit e20af665fa
9 changed files with 295 additions and 69 deletions
+10
View File
@@ -0,0 +1,10 @@
package transform
import (
"testing"
)
func TestInterfaceLowering(t *testing.T) {
t.Parallel()
testTransform(t, "testdata/interface", LowerInterfaces)
}