dust/tree-sitter-dust/corpus/functions.txt

132 lines
3.1 KiB
Plaintext
Raw Normal View History

2023-10-31 19:21:13 +00:00
================================================================================
Simple Function
2023-10-31 19:21:13 +00:00
================================================================================
2023-11-11 01:44:03 +00:00
=> { "Hiya" }
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-11-11 01:44:03 +00:00
(statement
(expression
(value
(function
(block
(statement
(expression
(value
(string))))))))))
2023-10-31 19:21:13 +00:00
2023-10-31 22:18:39 +00:00
================================================================================
Function Assignment
================================================================================
2023-11-11 01:44:03 +00:00
x = => { "Hiya" }
2023-10-31 22:18:39 +00:00
--------------------------------------------------------------------------------
(root
2023-11-11 01:44:03 +00:00
(statement
(assignment
(identifier)
(assignment_operator)
(statement
(expression
(value
(function
(block
(statement
(expression
(value
(string))))))))))))
2023-10-31 22:18:39 +00:00
2023-10-31 19:21:13 +00:00
================================================================================
Function Call
2023-10-31 19:21:13 +00:00
================================================================================
(foobar "Hiya")
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-11-11 01:44:03 +00:00
(statement
(expression
(function_call
(identifier)
(expression
(value
(string)))))))
2023-10-31 19:21:13 +00:00
================================================================================
Complex Function
2023-10-31 19:21:13 +00:00
================================================================================
2023-10-31 22:18:39 +00:00
|message number| => {
(output message)
(output number)
}
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-11-11 01:44:03 +00:00
(statement
(expression
(value
(function
(identifier_list
(identifier)
(identifier))
(block
(statement
(expression
(function_call
(built_in_function
(expression
(identifier))))))
(statement
(expression
(function_call
(built_in_function
(expression
(identifier))))))))))))
2023-10-31 19:21:13 +00:00
================================================================================
Complex Function Call
2023-10-31 19:21:13 +00:00
================================================================================
(foobar
"hi"
42
(
x = 1
y = 2
)
)
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-11-11 01:44:03 +00:00
(statement
(expression
(function_call
(identifier)
(expression
(value
(string)))
(expression
(value
(integer)))
(expression
(value
(map
(identifier)
(statement
(expression
(value
(integer))))
(identifier)
(statement
(expression
(value
(integer)))))))))))