about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/tile/environment.mu15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index e839effb..2fd2ef9b 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -120,6 +120,21 @@ $process:body: {
         cursor-right cursor-word
         break $process:body
       }
+      # if at final word, look for a caller to jump to
+      {
+        var next-word-ah/edx: (addr handle word) <- get cursor-word, next
+        var next-word/eax: (addr word) <- lookup *next-word-ah
+        compare next-word, 0
+        break-if-!=
+        var cursor-call-path-ah/edi: (addr handle call-path-element) <- get sandbox, cursor-call-path
+        var cursor-call-path/eax: (addr call-path-element) <- lookup *cursor-call-path-ah
+        var next-cursor-element-ah/ecx: (addr handle call-path-element) <- get cursor-call-path, next
+        var next-cursor-element/eax: (addr call-path-element) <- lookup *next-cursor-element-ah
+        compare next-cursor-element, 0
+        break-if-=
+        copy-object next-cursor-element-ah, cursor-call-path-ah
+        break $process:body
+      }
       # otherwise, move to a new word
       var next-word-ah/edx: (addr handle word) <- get cursor-word, next
       var next-word/eax: (addr word) <- lookup *next-word-ah
i-tty/commit/tests/functionaltests/functionaltests.c?id=5e324e407fda7d616c8b6056495de9db1d5a49e0'>5e324e40 ^
c6ff761a ^
d54cbf12 ^
f9a7e350 ^
de747e3d ^
87b4d7cb ^
e1e0fda8 ^
97c5072f ^
52e2917b ^

97c5072f ^


e295a474 ^
377a63d0 ^





f189dbc6 ^




377a63d0 ^














2b7894cc ^
377a63d0 ^

373f47c7 ^
52e2917b ^
6303e0e2 ^


377a63d0 ^











fca59a31 ^
377a63d0 ^


a978bb12 ^
377a63d0 ^












377a63d0 ^







ee664bf1 ^

69ac8097 ^


e1e0fda8 ^

97c5072f ^



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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114