Simplified compiler package
This commit is contained in:
29
src/compiler/PrintStatistics.go
Normal file
29
src/compiler/PrintStatistics.go
Normal file
@ -0,0 +1,29 @@
|
||||
package compiler
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"git.akyoto.dev/go/color/ansi"
|
||||
)
|
||||
|
||||
// PrintStatistics shows the statistics.
|
||||
func (r *Result) PrintStatistics() {
|
||||
ansi.Dim.Println("╭──────────────────────────────────────────────────────────────────────────────╮")
|
||||
|
||||
ansi.Dim.Print("│ ")
|
||||
ansi.Dim.Printf("%-44s", "Code:")
|
||||
fmt.Printf("%-32s", fmt.Sprintf("%d bytes", len(r.Code)))
|
||||
ansi.Dim.Print(" │\n")
|
||||
|
||||
ansi.Dim.Print("│ ")
|
||||
ansi.Dim.Printf("%-44s", "Data:")
|
||||
fmt.Printf("%-32s", fmt.Sprintf("%d bytes", len(r.Data)))
|
||||
ansi.Dim.Print(" │\n")
|
||||
|
||||
ansi.Dim.Print("│ ")
|
||||
ansi.Dim.Printf("%-44s", "Functions:")
|
||||
fmt.Printf("%-32s", fmt.Sprintf("%d / %d", len(r.Traversed), len(r.Functions)))
|
||||
ansi.Dim.Print(" │\n")
|
||||
|
||||
ansi.Dim.Println("╰──────────────────────────────────────────────────────────────────────────────╯")
|
||||
}
|
Reference in New Issue
Block a user