about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-08-23 13:11:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-08-23 13:12:24 -0700
commit019a8292793077106b9b6927b9ca727918fad9ec (patch)
tree06eff3efb545bb7e6de0c71914cf2abac841c90e
parentb6f42ebf01b6738458b37ff255f55854dea20adc (diff)
downloadview.love-019a8292793077106b9b6927b9ca727918fad9ec.tar.gz
make App.open_for_* look more like io.open
Now missing files will result in similar behavior: nil file handles.
-rw-r--r--app.lua16
1 files changed, 9 insertions, 7 deletions
diff --git a/app.lua b/app.lua
index 9bf5e6a..cac1303 100644
--- a/app.lua
+++ b/app.lua
@@ -302,13 +302,15 @@ function App.open_for_writing(filename)
 end
 
 function App.open_for_reading(filename)
-  return {
-    lines = function(self)
-              return App.filesystem[filename]:gmatch('[^\n]+')
-            end,
-    close = function(self)
-            end,
-  }
+  if App.filesystem[filename] then
+    return {
+      lines = function(self)
+                return App.filesystem[filename]:gmatch('[^\n]+')
+              end,
+      close = function(self)
+              end,
+    }
+  end
 end
 
 function App.run_tests()
8999a26b34384598f58e3889'>^
e087f6d4

2cd8e80b ^
e087f6d4
e087f6d4

d326f24d ^

e087f6d4










08fc6e5c ^
e087f6d4



d326f24d ^


e087f6d4



d326f24d ^


























e087f6d4

e087f6d4

d326f24d ^
e087f6d4
08fc6e5c ^
e087f6d4













d326f24d ^


e087f6d4

e4409c40 ^
e087f6d4

d326f24d ^
e087f6d4
d326f24d ^



e087f6d4
d326f24d ^






e087f6d4
d326f24d ^

e087f6d4
d326f24d ^
08fc6e5c ^














e087f6d4
d326f24d ^

e087f6d4
d326f24d ^





































e087f6d4
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212