-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into comment_lits
- Loading branch information
Showing
7 changed files
with
75 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// +build x,y z | ||
// +build genny | ||
|
||
package buildtags | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/cheekybits/genny/generic" | ||
) | ||
|
||
type _t_ generic.Type | ||
|
||
func _t_Print(t _t_) { | ||
fmt.Println(t) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// This file was automatically generated by genny. | ||
// Any changes will be lost if this file is regenerated. | ||
// see https://github.com/cheekybits/genny | ||
|
||
// +build x,y z | ||
|
||
package buildtags | ||
|
||
import "fmt" | ||
|
||
func intPrint(t int) { | ||
fmt.Println(t) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// This file was automatically generated by genny. | ||
// Any changes will be lost if this file is regenerated. | ||
// see https://github.com/cheekybits/genny | ||
|
||
// +build x,y z | ||
// +build genny | ||
|
||
package buildtags | ||
|
||
import "fmt" | ||
|
||
func stringPrint(t string) { | ||
fmt.Println(t) | ||
} |