Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

20 lignes
377 B

  1. package check
  2. import "io"
  3. func PrintLine(filename string, line int) (string, error) {
  4. return printLine(filename, line)
  5. }
  6. func Indent(s, with string) string {
  7. return indent(s, with)
  8. }
  9. func NewOutputWriter(writer io.Writer, stream, verbose bool) *outputWriter {
  10. return newOutputWriter(writer, stream, verbose)
  11. }
  12. func (c *C) FakeSkip(reason string) {
  13. c.reason = reason
  14. }