aboutsummaryrefslogtreecommitdiff
path: root/src/server/documentation.odin
diff options
context:
space:
mode:
authorBradley Lewis <22850972+BradLewis@users.noreply.github.com>2025-11-12 21:52:53 -0500
committerGitHub <noreply@github.com>2025-11-12 21:52:53 -0500
commitb2efc8f7789d2e51259d8d37da7bf59182b185fc (patch)
tree53180031a39851a338dcf4288e73c5b685455fe6 /src/server/documentation.odin
parent4dbe21aed8d350b51baa37ecb59e78e450e948da (diff)
parent8d189a070ce81e44d41a4ae087576b41f61735b5 (diff)
Merge pull request #1172 from A1029384756/master
added #all_or_none
Diffstat (limited to 'src/server/documentation.odin')
-rw-r--r--src/server/documentation.odin3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/documentation.odin b/src/server/documentation.odin
index 3ae3c53..0069ac4 100644
--- a/src/server/documentation.odin
+++ b/src/server/documentation.odin
@@ -634,6 +634,9 @@ write_struct_hover :: proc(sb: ^strings.Builder, ast_context: ^AstContext, v: Sy
case .Is_No_Copy:
wrote_tag = true
strings.write_string(sb, " #no_copy")
+ case .Is_All_Or_None:
+ wrote_tag = true
+ strings.write_string(sb, " #all_or_none")
}
}