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

113 lines
2.7 KiB
Plaintext
Raw Normal View History

2023-10-31 19:21:13 +00:00
================================================================================
Simple Function
2023-10-31 19:21:13 +00:00
================================================================================
function { "Hiya" }
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-10-31 13:31:10 +00:00
(block
(statement
(expression
(value
(function
(block
(statement
(expression
(value
(string)))))))))))
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-10-31 13:31:10 +00:00
(block
(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
================================================================================
function <message number> {
(output message)
(output number)
}
2023-10-31 19:21:13 +00:00
--------------------------------------------------------------------------------
(root
2023-10-31 13:31:10 +00:00
(block
(statement
(expression
(value
(function
2023-10-31 20:25:13 +00:00
(parameter_list
(identifier)
(identifier))
2023-10-31 13:31:10 +00:00
(block
(statement
(expression
2023-10-31 17:04:22 +00:00
(function_call
2023-10-31 19:21:13 +00:00
(built_in_function
(expression
(identifier))))))
2023-10-31 13:31:10 +00:00
(statement
(expression
2023-10-31 17:04:22 +00:00
(function_call
2023-10-31 19:21:13 +00:00
(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-10-31 13:31:10 +00:00
(block
(statement
(expression
(function_call
(identifier)
(expression
(value
(string)))
(expression
(value
(integer)))
(expression
(value
(map
(identifier)
2023-10-31 17:04:22 +00:00
(statement
(expression
(value
(integer))))
2023-10-31 13:31:10 +00:00
(identifier)
2023-10-31 17:04:22 +00:00
(statement
(expression
(value
(integer))))))))))))