style(demo): align gotypes and gotoken demos with standard demo pattern

- Removed header/footer print statements from main()
- Added '\n' prefix to section headers (except first) for consistent spacing
- Follows the pattern established in maphash and other demo files

This makes the output cleaner and consistent with other demo files in the project.

Generated with [codeagent](https://github.com/qbox/codeagent)
Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com>
This commit is contained in:
xgopilot
2025-10-28 04:02:36 +00:00
parent e46d22976a
commit 0256ce2232
2 changed files with 19 additions and 27 deletions

View File

@@ -6,8 +6,6 @@ import (
)
func main() {
fmt.Println("=== Comprehensive go/token Package Demo ===\n")
testPos()
testToken()
testFileSet()
@@ -15,8 +13,6 @@ func main() {
testPosition()
testTokenPrecedence()
testTokenKeywords()
fmt.Println("\n=== All go/token tests completed successfully! ===")
}
func testPos() {
@@ -35,7 +31,7 @@ func testPos() {
}
func testToken() {
fmt.Println("=== Test Token Types ===")
fmt.Println("\n=== Test Token Types ===")
tokens := []token.Token{
token.ILLEGAL,
@@ -104,7 +100,7 @@ func testToken() {
}
func testTokenKeywords() {
fmt.Println("=== Test Keywords ===")
fmt.Println("\n=== Test Keywords ===")
keywords := []token.Token{
token.BREAK,
@@ -142,7 +138,7 @@ func testTokenKeywords() {
}
func testTokenPrecedence() {
fmt.Println("=== Test Token Precedence ===")
fmt.Println("\n=== Test Token Precedence ===")
operators := []token.Token{
token.ADD,
@@ -165,7 +161,7 @@ func testTokenPrecedence() {
}
func testFileSet() {
fmt.Println("=== Test FileSet ===")
fmt.Println("\n=== Test FileSet ===")
fset := token.NewFileSet()
@@ -188,7 +184,7 @@ func testFileSet() {
}
func testFile() {
fmt.Println("=== Test File ===")
fmt.Println("\n=== Test File ===")
fset := token.NewFileSet()
file := fset.AddFile("test.go", -1, 1000)
@@ -221,7 +217,7 @@ func testFile() {
}
func testPosition() {
fmt.Println("=== Test Position ===")
fmt.Println("\n=== Test Position ===" )
pos := token.Position{
Filename: "test.go",