Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T05:05:08.746Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

debugger.scm

45 lines · 894 B · text
1(parameter_declaration
2  (identifier) @debug-variable)
3
4(short_var_declaration
5  (expression_list
6    (identifier) @debug-variable))
7
8(var_declaration
9  (var_spec
10    (identifier) @debug-variable))
11
12(const_declaration
13  (const_spec
14    (identifier) @debug-variable))
15
16(assignment_statement
17  (expression_list
18    (identifier) @debug-variable))
19
20(binary_expression
21  (identifier) @debug-variable
22  (#not-match? @debug-variable "^[A-Z]"))
23
24(call_expression
25  (argument_list
26    (identifier) @debug-variable
27    (#not-match? @debug-variable "^[A-Z]")))
28
29(return_statement
30  (expression_list
31    (identifier) @debug-variable
32    (#not-match? @debug-variable "^[A-Z]")))
33
34(range_clause
35  (expression_list
36    (identifier) @debug-variable))
37
38(parenthesized_expression
39  (identifier) @debug-variable
40  (#not-match? @debug-variable "^[A-Z]"))
41
42(block) @debug-scope
43
44(function_declaration) @debug-scope
45
Served at tenant.openagents/omega Member data and write actions are omitted.