Generate proper package names for sets

This commit is contained in:
2018-07-03 19:54:30 +02:00
parent 59a63295b0
commit b4e6729fb0
23 changed files with 35 additions and 44 deletions
+2
View File
@@ -111,6 +111,8 @@ THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT!
src = strings.Replace(src, "Five TypeName = 5", "Five TypeName = "+typ.testVals[4], 1)
// Replace the type name
src = strings.Replace(src, genericTypeName, typ.name, -1)
// Replace package name
src = strings.Replace(src, "package impl", "package set"+typ.name, 1)
return doNotEditBanner + src
}