aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-12-14 05:28:06 -0500
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-12-14 05:29:27 -0500
commit54a2a8e940018f8984e51e21fe94abf1ff0055fe (patch)
treeedcdfe7cbf58dfacd96311cd4bccaab196f0aa0b /tests
parent70efaf21cac9358b1b50e194e3401b07901b8f47 (diff)
Add documentation for directives
Diffstat (limited to 'tests')
-rw-r--r--tests/hover_test.odin10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin
index 81a26ce..6f8cecf 100644
--- a/tests/hover_test.odin
+++ b/tests/hover_test.odin
@@ -5950,6 +5950,16 @@ ast_hover_directives_load :: proc(t: ^testing.T) {
}
test.expect_hover(t, &source, "test.bar :: #load(\"foo.txt\")")
}
+
+@(test)
+ast_hover_directives_config_info :: proc(t: ^testing.T) {
+ source := test.Source {
+ main = `package test
+ bar :: #c{*}onfig(TEST, false)
+ `,
+ }
+ test.expect_hover(t, &source, "#config(<identifier>, default)\n\nChecks if an identifier is defined through the command line, or gives a default value instead.\n\nValues can be set with the `-define:NAME=VALUE` command line flag.")
+}
/*
Waiting for odin fix