Class: APL::Parser

Inherits:
KPeg::CompiledParser
  • Object
show all
Defined in:
lib/apl/parser.kpeg.rb

Constant Summary collapse

Rules =
{}

Instance Method Summary collapse

Instance Method Details

#__hyphen_Object

  • space*



25
26
27
28
29
30
31
32
33
# File 'lib/apl/parser.kpeg.rb', line 25

def __hyphen_
  while true
    _tmp = apply(:_space)
    break unless _tmp
  end
  _tmp = true
  set_failed_rule :__hyphen_ unless _tmp
  return _tmp
end

#_decimalObject

decimal = < radix digits > { text }



533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
# File 'lib/apl/parser.kpeg.rb', line 533

def _decimal

  _save = self.pos
  while true # sequence
    _text_start = self.pos

    _save1 = self.pos
    while true # sequence
      _tmp = apply(:_radix)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:_digits)
      unless _tmp
        self.pos = _save1
      end
      break
    end # end sequence

    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  text ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_decimal unless _tmp
  return _tmp
end

#_DIGITObject

DIGIT = /[0-9]/



36
37
38
39
40
# File 'lib/apl/parser.kpeg.rb', line 36

def _DIGIT
  _tmp = scan(/\A(?-mix:[0-9])/)
  set_failed_rule :_DIGIT unless _tmp
  return _tmp
end

#_digitsObject

digits = < DIGIT+ > { text }



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
# File 'lib/apl/parser.kpeg.rb', line 43

def _digits

  _save = self.pos
  while true # sequence
    _text_start = self.pos
    _save1 = self.pos
    _tmp = apply(:_DIGIT)
    if _tmp
      while true
        _tmp = apply(:_DIGIT)
        break unless _tmp
      end
      _tmp = true
    else
      self.pos = _save1
    end
    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  text ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_digits unless _tmp
  return _tmp
end

#_exponentObject

exponent = exponent_prefix integer:exponent { 10 ** exponent }



573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
# File 'lib/apl/parser.kpeg.rb', line 573

def _exponent

  _save = self.pos
  while true # sequence
    _tmp = apply(:_exponent_prefix)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_integer)
    exponent = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  10 ** exponent ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_exponent unless _tmp
  return _tmp
end

#_exponent_prefixObject

exponent_prefix = /e/i



79
80
81
82
83
# File 'lib/apl/parser.kpeg.rb', line 79

def _exponent_prefix
  _tmp = scan(/\A(?i-mx:e)/)
  set_failed_rule :_exponent_prefix unless _tmp
  return _tmp
end

#_expressionObject

expression = (function_call | term):expression - { expression }



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
# File 'lib/apl/parser.kpeg.rb', line 210

def _expression

  _save = self.pos
  while true # sequence

    _save1 = self.pos
    while true # choice
      _tmp = apply(:_function_call)
      break if _tmp
      self.pos = _save1
      _tmp = apply(:_term)
      break if _tmp
      self.pos = _save1
      break
    end # end choice

    expression = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  expression ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_expression unless _tmp
  return _tmp
end

#_functionObject

function = < /[-+×÷]/ > { text }



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/apl/parser.kpeg.rb', line 163

def _function

  _save = self.pos
  while true # sequence
    _text_start = self.pos
    _tmp = scan(/\A(?-mix:[-+×÷])/)
    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  text ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_function unless _tmp
  return _tmp
end

#_function_callObject

function_call = term?:x - function:op - expression:y { APL::AST::Function.new op: op.to_sym, x: x, y: y }



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
# File 'lib/apl/parser.kpeg.rb', line 249

def _function_call

  _save = self.pos
  while true # sequence
    _save1 = self.pos
    _tmp = apply(:_term)
    @result = nil unless _tmp
    unless _tmp
      _tmp = true
      self.pos = _save1
    end
    x = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_function)
    op = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_expression)
    y = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  APL::AST::Function.new op: op.to_sym, x: x, y: y ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_function_call unless _tmp
  return _tmp
end

#_integerObject

integer = optional_negative:negative nonnegative_integer:integer { integer * negative }



481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
# File 'lib/apl/parser.kpeg.rb', line 481

def _integer

  _save = self.pos
  while true # sequence
    _tmp = apply(:_optional_negative)
    negative = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_nonnegative_integer)
    integer = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  integer * negative ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_integer unless _tmp
  return _tmp
end

#_negative_signObject

negative_sign = “¯” { -1 }



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/apl/parser.kpeg.rb', line 86

def _negative_sign

  _save = self.pos
  while true # sequence
    _tmp = match_string("\u{af}")
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  -1 ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_negative_sign unless _tmp
  return _tmp
end

#_nonnegative_integerObject

nonnegative_integer = digits:num { num.to_i }



510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
# File 'lib/apl/parser.kpeg.rb', line 510

def _nonnegative_integer

  _save = self.pos
  while true # sequence
    _tmp = apply(:_digits)
    num = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  num.to_i ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_nonnegative_integer unless _tmp
  return _tmp
end

#_numberObject

number = optional_negative:negative nonnegative_integer:integer decimal?:decimal exponent?:exponent - { (integer + (decimal ? decimal.to_f : 0)) * negative * (exponent || 1) }



423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# File 'lib/apl/parser.kpeg.rb', line 423

def _number

  _save = self.pos
  while true # sequence
    _tmp = apply(:_optional_negative)
    negative = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_nonnegative_integer)
    integer = @result
    unless _tmp
      self.pos = _save
      break
    end
    _save1 = self.pos
    _tmp = apply(:_decimal)
    @result = nil unless _tmp
    unless _tmp
      _tmp = true
      self.pos = _save1
    end
    decimal = @result
    unless _tmp
      self.pos = _save
      break
    end
    _save2 = self.pos
    _tmp = apply(:_exponent)
    @result = nil unless _tmp
    unless _tmp
      _tmp = true
      self.pos = _save2
    end
    exponent = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  (integer + (decimal ? decimal.to_f : 0)) * negative * (exponent || 1) ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_number unless _tmp
  return _tmp
end

#_optional_negativeObject

optional_negative = negative_sign?:negative { negative || 1 }



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
# File 'lib/apl/parser.kpeg.rb', line 108

def _optional_negative

  _save = self.pos
  while true # sequence
    _save1 = self.pos
    _tmp = apply(:_negative_sign)
    @result = nil unless _tmp
    unless _tmp
      _tmp = true
      self.pos = _save1
    end
    negative = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  negative || 1 ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_optional_negative unless _tmp
  return _tmp
end

#_primitive_valueObject

primitive_value = (vector | number):value { value }



355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
# File 'lib/apl/parser.kpeg.rb', line 355

def _primitive_value

  _save = self.pos
  while true # sequence

    _save1 = self.pos
    while true # choice
      _tmp = apply(:_vector)
      break if _tmp
      self.pos = _save1
      _tmp = apply(:_number)
      break if _tmp
      self.pos = _save1
      break
    end # end choice

    value = @result
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  value ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_primitive_value unless _tmp
  return _tmp
end

#_radixObject

radix = < “.” > { text }



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/apl/parser.kpeg.rb', line 137

def _radix

  _save = self.pos
  while true # sequence
    _text_start = self.pos
    _tmp = match_string(".")
    if _tmp
      text = get_text(_text_start)
    end
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  text ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_radix unless _tmp
  return _tmp
end

#_rootObject

root = - expression



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/apl/parser.kpeg.rb', line 189

def _root

  _save = self.pos
  while true # sequence
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_expression)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_root unless _tmp
  return _tmp
end

#_spaceObject

space = /s/



18
19
20
21
22
# File 'lib/apl/parser.kpeg.rb', line 18

def _space
  _tmp = scan(/\A(?-mix:\s)/)
  set_failed_rule :_space unless _tmp
  return _tmp
end

#_termObject

term = (primitive_value:value | “(” - expression:value - “)” { value })



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
351
352
# File 'lib/apl/parser.kpeg.rb', line 300

def _term

  _save = self.pos
  while true # choice
    _tmp = apply(:_primitive_value)
    value = @result
    break if _tmp
    self.pos = _save

    _save1 = self.pos
    while true # sequence
      _tmp = match_string("(")
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:__hyphen_)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:_expression)
      value = @result
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:__hyphen_)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = match_string(")")
      unless _tmp
        self.pos = _save1
        break
      end
      @result = begin;  value ; end
      _tmp = true
      unless _tmp
        self.pos = _save1
      end
      break
    end # end sequence

    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_term unless _tmp
  return _tmp
end

#_vectorObject

vector = number:first primitive_value:rest - { Array(first) + Array(rest) }



389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# File 'lib/apl/parser.kpeg.rb', line 389

def _vector

  _save = self.pos
  while true # sequence
    _tmp = apply(:_number)
    first = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_primitive_value)
    rest = @result
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save
      break
    end
    @result = begin;  Array(first) + Array(rest) ; end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_vector unless _tmp
  return _tmp
end

#failure?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/apl/parser.kpeg.rb', line 10

def failure?
  !success?
end

#success?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/apl/parser.kpeg.rb', line 6

def success?
  @pos == @string_size
end