-
Notifications
You must be signed in to change notification settings - Fork 12
/
todo.scm
78 lines (67 loc) · 1.82 KB
/
todo.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
;;; Local documentation
; --- A function description
; --@param p: param value
; --@param x: another value
; --@returns true
; local function cool_function(p, x)
; return true
; end
(program
(local_function
(emmy_documentation
(parameter_documentation
name: (identifier)
description: (parameter_description))
(parameter_documentation
name: (identifier)
description: (parameter_description))
(return_description))
(identifier)
(parameters
(identifier)
(identifier))
(return_statement (true))))
;;; Full documentation with assignment
; local x = {}
;
; --- hello world
; --@param y: add 1
; x.my_func = function(y)
; return y + 1
; end
(program
(local_variable_declaration
variable: (variable_declarator (identifier)) (table))
(variable_declaration
documentation: (emmy_documentation
(parameter_documentation
name: (identifier)
description: (parameter_description)))
variable: (variable_declarator
(field_expression (identifier) (property_identifier)))
expression: (function_definition
(parameters (identifier))
(return_statement (binary_operation (identifier) (number))))
))
;;; Full documentation with assignment bracket
; local x = {}
;
; --- hello world
; --@param y: add 1
; x["my_func"] = function(y)
; return y + 1
; end
(program
(variable_declaration
(local)
variable: (variable_declarator (identifier)) (table))
(variable_declaration
documentation: (emmy_documentation
(parameter_documentation
name: (identifier)
description: (parameter_description)))
variable: (variable_declarator (identifier) (string))
expression: (function_definition
(parameters (identifier))
(return_statement (binary_operation (identifier) (number))))
))