Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Command = &cobra.Command{ Use: "dump", Hidden: true, RunE: func(cmd *cobra.Command, args []string) error { suite, err := ntt.NewFromArgs(args...) if err != nil { return err } files, _ := project.Files(suite) for _, file := range files { info := suite.Parse(file) if ttcn3 { printer.Print(os.Stdout, info.FileSet, info.Module) } else { dump(reflect.ValueOf(info.Module), "Root: ") } } return nil }, } )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.