-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstd.plast
More file actions
350 lines (238 loc) · 5.5 KB
/
std.plast
File metadata and controls
350 lines (238 loc) · 5.5 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
// variable
variable = arg:string
`$this = $arg` string string
variable = arg:int
`$this = $arg` int int
variable = arg:float
`$this = $arg` float float
variable = *
`$this = $arg` * *
bool $block
`if ($this) {$block} $`
undefined else
`else {$block}`
block
`else {$block}`
undefined return *
`return $arg`
undefined print
"undefined" print
// string
string print
`printf("%s\n", $this)` int
string = arg:string
`$this = $arg` string
string += arg:string
`$this = sdscatsds($this, $arg)` string
string += arg:int
`$this = sdscatsds($this, sdsfromlonglong((long long)$arg))` string
string + arg:string
`sdscatsds($this, $arg)` string
string + arg:int
`sdscatsds($this, sdsfromlonglong((long long)$arg))` string
string + arg:float
`sdscatsds($this, _strFromFloat($arg))` string
string getType
`"string"` string
string == arg:string
`(strcmp($this, $arg) == 0)` bool
string != arg:string
`(strcmp($this, $arg) != 0)` bool
string tok arg:string
`_strTok($this, $arg)` array:string
string trim arg:string
`sdstrim($this, $arg)`
string each arg:variable
`for (int i = 0; i < sdslen($this); i++){$arg = sdsnewlen(&$this[i], 1); $block}` undefined string
string getLeftShift
`_strLeftShift($this, ' ')` int
// int
int print
`printf("%d\n", $this)` int
int = arg:int
`$this = $arg` int
int += arg:int
`$this += $arg` int
int -= arg:int
`$this -= $arg` int
int *= arg:int
`$this *= $arg` int
int > arg:int
`($this > $arg)` bool
int < arg:int
`($this < $arg)` bool
int == arg:int
`($this == $arg)` bool
int != arg:int
`($this != $arg)` bool
int >: arg:int
`while ($this > $arg) {$block}` bool
int <: arg:int
`while ($this < $arg) {$block}` bool
int > arg:float
`(float) $this > $arg` bool
int < arg:float
`(float) $this > $arg` bool
int >: arg:float
`while ((float) $this > $arg) {$block}` bool
int <: arg:float
`while ((float) $this < $arg) {$block}` bool
int + arg:string
`sdscatsds(sdsfromlonglong((long long)$this), $arg)` string
int + arg:int
`($this + $arg)` int
int ++
`$this += 1` int
int --
`$this -= 1` int
int + arg:float
`((float) $this + $arg)` float
int - arg:int
`($this - $arg)` int
int - arg:float
`((float) $this - $arg)` float
int * arg:int
`($this * $arg)` int
int / arg:int
`((float) $this / (float) $arg)` float
int / arg:float
`((float) $this / $arg)` float
int ^ arg:int
`($this ^ $arg)` int
int & arg:int
`($this & $arg)` int
int | arg:int
`($this | $arg)` int
int >> arg:int
`($this >> $arg)` int
int << arg:int
`($this << $arg)` int
int pow arg:int
`(int)pow($this, $arg)` int
int pow arg:float
`(float)pow($this, $arg)` float
int getType
`"int"` string
int % arg:int
`($this % $arg)` int
// float
float print
`printf("%g\n", $this)` int
float = arg:float
`$this = $arg` float
float += arg:float
`$this += $arg` float
float -= arg:float
`$this -= $arg` float
float *= arg:float
`$this *= $arg` float
float /= arg:float
`$this /= $arg` float
float /= arg:int
`$this /= (float) $arg` float
float == arg:int
`($this == (float) $arg)` bool
float + arg:float
`($this + $arg)` float
float + arg:int
`($this + (float) $arg)` float
float - arg:float
`($this - $arg)` float
float - arg:int
`($this - (float) $arg)` float
float + arg:string
`sdscatsds(_strFromFloat($this), $arg)` string
float * arg:int
`($this * (float) $arg)` float
float * arg:float
`($this * $arg)` float
float / arg:float
`($this / (float)$arg)` float
float / arg:int
`($this / $arg)` float
float pow arg:int
`(float)pow($this, $arg)` float
float pow arg:float
`(float)pow($this, $arg)` float
float getType
`"float"` string
// bool
bool && arg:bool
`($this && $arg)` bool
bool || arg:bool
`($this || $arg)` bool
bool ? tuple
`$ternarOp(&$this, *$arg)`
bool == arg:bool
`($this == $arg)` bool
// tuples
* , *
`$this, $arg` tuple
tuple print
`$structPrint(&$this)` int
struct print
`$structPrint(&$this)` int
tuple = tuple
`$structEq($thisLinked, &*$arg)` tuple
tuple = struct
`$structEq($thisLinked, $arg)` tuple
tuple == tuple
`$structEqCheck(&$this, &$arg)` bool
tuple != tuple
`$structNotEqCheck(&$this, &$arg)` bool
tuple > tuple
`$structMoreCheck(&$this, &$arg)` bool
tuple >= tuple
`$structMoreEqCheck(&$this, &$arg)` bool
tuple < tuple
`$structLessCheck(&$this, &$arg)` bool
tuple <= tuple
`$structLessEqCheck(&$this, &$arg)` bool
tuple array
`$structToArray(*$this)`
variable [] type
`$this = $arrayInit()` array:$type array
array push *
`kv_push($thisSubType, $this, $arg)`
array each variable
`{$thisType x = $this; int kvs = kv_size(x); for(int i = 0; i < kvs; i++) {$arg = kv_a($thisSubType, x, i); $block}}` undefined $thisSubType
array print
out = ""
this each item
out == ""
out += item
else
out += ", " + item
"["+out+"]" print
array len
`(int) kv_size($this)` int
array = arg:array
`$this = $arg` array
array get index:int
`kv_A(*&$this, $arg)` $thisSubType
array pop
`kv_pop(*&$this)` $thisSubType
undefined array
`$arrayInit()` array
tuple getType
`"tuple"` string
// structs
variable = tuple
`$this = (typeof($this)){$arg}` struct struct
variable = struct
`$this = (typeof($this)){$arg}` struct struct
struct . *
`$this.$argName` *
variable . *
`$this.$argName` *
struct getType
`"struct"` string
// superstructs
* : *
`.$thisName = $arg` struct
// array_int
variable = array
`$this = $arg` array:$argSubType array
// files
string readFileSync
`_strFromFile($this)` string