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 { tree := ttcn3.ParseFile(file) if useTTCN3 { printer.Print(os.Stdout, tree.FileSet, tree.Root) } else if useDot { dot(tree.Root) } else { dump(reflect.ValueOf(tree.Root), "Root: ") } } return nil }, } )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.