Skip to content

feat: format switch tag - #21

Merged
ldez merged 1 commit into
mainfrom
feat/format-switch-tag
Dec 19, 2025
Merged

feat: format switch tag#21
ldez merged 1 commit into
mainfrom
feat/format-switch-tag

Conversation

@ldez

@ldez ldez commented Dec 19, 2025

Copy link
Copy Markdown
Member
before
func _() {
	var pneumonoultramicroscopicsilicovolcanoconiosis string
	var floccinaucinihilipilification string

	switch myfunction(pneumonoultramicroscopicsilicovolcanoconiosis, floccinaucinihilipilification) {
	case "a":
		fmt.Println("a")
	}
}
after
func _() {
	var pneumonoultramicroscopicsilicovolcanoconiosis string
	var floccinaucinihilipilification string

	switch myfunction(
		pneumonoultramicroscopicsilicovolcanoconiosis,
		floccinaucinihilipilification,
	) {
	case "a":
		fmt.Println("a")
	}
}

@ldez ldez added the enhancement New feature or request label Dec 19, 2025
@ldez
ldez force-pushed the feat/format-switch-tag branch from 4652a09 to b0a1002 Compare December 19, 2025 23:08
@ldez
ldez force-pushed the feat/format-switch-tag branch from b0a1002 to ebb60e6 Compare December 19, 2025 23:08
@ldez ldez added this to the unreleased milestone Dec 19, 2025
@ldez
ldez merged commit 2dc39cd into main Dec 19, 2025
8 checks passed
@ldez
ldez deleted the feat/format-switch-tag branch December 19, 2025 23:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant