summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_needs_name.txt
blob: f121da03f287c4dbfaf4bb088c072c0f32d3b609 (plain)
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
# Tests that '@' is recognized as an Operator

---input---
S = (H @ beta - r).T @ inv(H @ V @ H.T) @ (H @ beta - r)

---tokens---
'S'           Name
' '           Text
'='           Operator
' '           Text
'('           Punctuation
'H'           Name
' '           Text
'@'           Operator
' '           Text
'beta'        Name
' '           Text
'-'           Operator
' '           Text
'r'           Name
')'           Punctuation
'.'           Operator
'T'           Name
' '           Text
'@'           Operator
' '           Text
'inv'         Name
'('           Punctuation
'H'           Name
' '           Text
'@'           Operator
' '           Text
'V'           Name
' '           Text
'@'           Operator
' '           Text
'H'           Name
'.'           Operator
'T'           Name
')'           Punctuation
' '           Text
'@'           Operator
' '           Text
'('           Punctuation
'H'           Name
' '           Text
'@'           Operator
' '           Text
'beta'        Name
' '           Text
'-'           Operator
' '           Text
'r'           Name
')'           Punctuation
'\n'          Text.Whitespace