summaryrefslogtreecommitdiffstats
path: root/tests/snippets/gdscript/test_signal.txt
blob: 43aa8ecfb239012d870de079870ec47752241fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---input---
signal sig (arg1, arg2)

---tokens---
'signal'      Keyword
' '           Text.Whitespace
'sig'         Name
' '           Text.Whitespace
'('           Punctuation
'arg1'        Name
','           Punctuation
' '           Text.Whitespace
'arg2'        Name
')'           Punctuation
'\n'          Text.Whitespace