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
351
352
353
354
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
387
388
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
421
422
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
479
480
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
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
571
572
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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
use crate::types::Token;
use crate::types::Statement as Stat;
use crate::types::Expression as Expr;
use crate::types::Operator as Op;

use crate::types::Value;

use crate::types::Line;

use crate::types::ParseErrorKind;
use crate::types::ExprError;
use crate::types::StatError;

use crate::types::SlidingWindow;
use crate::types::VecWindow;

pub fn parse_program(window: &mut VecWindow<Token>) -> Result<Vec<Line>, StatError>
{
    let mut line_vec: Vec<Line> = Vec::new();
    let mut current_line: Vec<Stat> = Vec::new();

    while window.remaining_length() > 0
    {
        if let Some(Token::Newline) = window.get_value(0)
        {
            window.move_view(1);

            line_vec.push(Line(current_line.clone()));
            if cfg!(debug_assertions) { println!("[Parser] Finished line:\n{:?}", current_line) }

            current_line.clear();
            continue;
        }

        match parse_statement(window)
        {
            Ok(stat) => {
                if cfg!(debug_assertions) { println!("[Parser] Parsed statement: {:?}", stat) }
                current_line.push(stat);
            },

            error => {
                if cfg!(debug_assertions) {
                    println!("[Parser] Erroring out, line so far:\n{:?}", line_vec);
                    println!("[Parser] Erroring out, window state:\n{:?}", window.get_window(3).unwrap());
                }
                error?;
            }
        }
    }

    if current_line.is_empty() == false
    {
        line_vec.push(Line(current_line.clone()));
    }

    Ok(line_vec)
}

pub fn parse_line(window: &mut VecWindow<Token>) -> Result<Line, StatError>
{
    let mut stat_vec: Vec<Stat> = Vec::new();
    while window.remaining_length() > 0
    {
        if let Some(Token::Newline) = window.get_value(0)
        {
            window.move_view(1);
            if cfg!(debug_assertions) { println!("[Parser] Finished line:\n{:?}", stat_vec) }
            break;
        }

        match parse_statement(window)
        {
            Ok(stat) => {
                if cfg!(debug_assertions) { println!("[Parser] Parsed statement: {:?}", stat) }
                stat_vec.push(stat);
            }

            error => {
                if cfg!(debug_assertions) {
                    println!("[Parser] Erroring out, line so far:\n{:?}", stat_vec);
                    println!("[Parser] Erroring out, window state:\n{:?}", window.get_window(3).unwrap());
                }
                error?;
            }
        }
    }

    Ok(Line(stat_vec))
}

fn parse_statement(window: &mut VecWindow<Token>) -> Result<Stat, StatError>
{
    let value_tuple = (window.get_value(0), window.get_value(1), window.get_value(2));
    if cfg!(debug_assertions) { println!("[Parse Stat] Matching slice: {:?}", value_tuple) }

    let statement = match value_tuple
    {
        (Some(Token::Comment(comment)), _, _) => {
            let comment_string = comment.clone();
            window.move_view(1);
            Stat::Comment(comment_string)
        } 

        (Some(Token::Goto), _, _) => {
            window.move_view(1);
            Stat::Goto(parse_expression(window)?)
        },

        (Some(Token::If), _, _) => {
            window.move_view(1);
            extend_if(window)?
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Plus), Some(Token::Equal)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            Stat::Assignment(value, Op::AddAssign, parse_expression(window)?)
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Minus), Some(Token::Equal)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            Stat::Assignment(value, Op::SubAssign, parse_expression(window)?)
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Star), Some(Token::Equal)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            Stat::Assignment(value, Op::MulAssign, parse_expression(window)?)
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Slash), Some(Token::Equal)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            Stat::Assignment(value, Op::DivAssign, parse_expression(window)?)
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Percent), Some(Token::Equal)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            Stat::Assignment(value, Op::ModAssign, parse_expression(window)?)
        },

        (Some(ident @ Token::Identifier(_)), Some(Token::Equal), Some(tok)) if *tok != Token::Equal => {
            let value = Value::from(ident.clone());
            window.move_view(2);
            Stat::Assignment(value, Op::Assign, parse_expression(window)?)
        },

        _ => Stat::Expression(parse_expression(window)?)
    };

    Ok(statement)
}

fn extend_if(window: &mut VecWindow<Token>) -> Result<Stat, StatError>
{
    let condition = parse_expression(window)?;

    if cfg!(debug_assertions) { println!("[Parse If] Condition: {:?}", condition) }

    match window.get_value(0)
    {
        Some(Token::Then) => {
            window.move_view(1);
        },
        
        tok => return Err(StatError::new(None,
                        ParseErrorKind::NoExtensionAvailable,
                        &format!("Can't find 'then' to extend if. Found: {:?}", tok)))
    }

    let mut body: Vec<Stat> = Vec::new();
    let mut else_body: Vec<Stat> = Vec::new();
    let mut parsing_else = false;

    while window.remaining_length() > 0
    {
        let value_tuple = (window.get_value(0), window.get_value(1));
        let statement = match value_tuple
        {
            (Some(Token::Else), _) => {
                if parsing_else
                {
                    let error_stat = Stat::If(condition, body, Some(else_body));
                    return Err(StatError::new(Some(error_stat),
                                ParseErrorKind::RepeatedElseTokens,
                                "Found an else token after already finding one for this if!"))
                }
                window.move_view(1);
                parsing_else = true;
                continue
            },
            (Some(Token::End), _) => {
                window.move_view(1);
                break
            },

            _ => parse_statement(window)?
        };

        if parsing_else
        {
            else_body.push(statement)
        }
        else
        {
            body.push(statement)
        }
    }

    let final_else = if else_body.is_empty() == false
    {
        Some(else_body)
    }
    else
    {
        None
    };

    Ok(Stat::If(condition, body, final_else))
}

fn parse_expression(window: &mut VecWindow<Token>) -> Result<Box<Expr>, ExprError>
{
    Ok(Box::new(expr_and(window)?))
}

fn expr_and(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_or(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            match window.get_value(0)
            {
                Some(Token::And) => {
                    extend_and(expr, window)
                },

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_and(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match window.get_value(0)
    {
        Some(Token::And) => {
            Op::And
        },

        _ => return Ok(left)
    };

    window.move_view(1);
    match expr_or(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_and(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing an and!"))
    }
}

fn expr_or(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_equality(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            match window.get_value(0)
            {
                Some(Token::Or) => {
                    extend_or(expr, window)
                },

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_or(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match window.get_value(0)
    {
        Some(Token::Or) => {
            Op::Or
        },

        _ => return Ok(left)
    };

    window.move_view(1);
    match expr_equality(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_or(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing an or!"))
    }
}

fn expr_equality(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_order(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            let value_tuple = (window.get_value(0), window.get_value(1));
            match value_tuple
            {
                (Some(Token::Equal), Some(Token::Equal)) |
                (Some(Token::Exclam), Some(Token::Equal)) => {
                    extend_equality(expr, window)
                },

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_equality(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match (window.get_value(0), window.get_value(1))
    {
        (Some(Token::Equal), Some(Token::Equal)) => {
            Op::Equal
        },

        (Some(Token::Exclam), Some(Token::Equal)) => {
            Op::NotEqual
        },

        _ => return Ok(left)
    };

    window.move_view(2);
    match expr_order(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_equality(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing an equality!"))
    }
}

fn expr_order(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_additive(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            let value_tuple = (window.get_value(0), window.get_value(1));
            match value_tuple
            {
                (Some(Token::LAngleBrak), Some(Token::Equal)) |
                (Some(Token::LAngleBrak), _) |
                (Some(Token::RAngleBrak), Some(Token::Equal)) |
                (Some(Token::RAngleBrak), _) => {
                    extend_order(expr, window)
                },

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_order(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match (window.get_value(0), window.get_value(1))
    {
        (Some(Token::LAngleBrak), Some(Token::Equal)) => {
            window.move_view(2);
            Op::LesserEq
        },
        (Some(Token::LAngleBrak), _) => {
            window.move_view(1);
            Op::Lesser
        },

        (Some(Token::RAngleBrak), Some(Token::Equal)) => {
            window.move_view(2);
            Op::GreaterEq
        },
        (Some(Token::RAngleBrak), _) => {
            window.move_view(1);
            Op::Greater
        },

        _ => return Ok(left)
    };

    match expr_additive(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_order(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing an order!"))
    }
}

fn expr_additive(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_multiply(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            match window.get_value(0)
            {
                Some(Token::Plus) |
                Some(Token::Minus) => {
                    extend_additive(expr, window)
                }

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_additive(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match window.get_value(0)
    {
        Some(Token::Plus) => {
            Op::Add
        },

        Some(Token::Minus) => {
            Op::Sub
        },

        _ => return Ok(left)
    };

    window.move_view(1);
    match expr_multiply(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_additive(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing an additive!"))
    }
}

fn expr_multiply(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_exponent(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            match window.get_value(0)
            {
                Some(Token::Slash) |
                Some(Token::Star)  |
                Some(Token::Percent) => {
                    extend_multiply(expr, window)
                },

                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_multiply(left: Expr, window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let op = match window.get_value(0)
    {
        Some(Token::Slash) => {
            Op::Div
        },

        Some(Token::Star) => {
            Op::Mul
        },

        Some(Token::Percent) => {
            Op::Mod
        },

        _ => return Ok(left)
    };

    window.move_view(1);
    match expr_exponent(window)
    {
        Ok(right) => {
            // Found a right hand side for our rule, so construct the object
            let expr = Expr::BinaryOp(op, Box::new(left), Box::new(right));
            extend_multiply(expr, window)
        }

        _ => Err(ExprError::new(Some(left), ParseErrorKind::NoExtensionAvailable, "Syntax error in parsing a multiply!"))
    }
}

// Doesn't use extension idiom due to being right associative
fn expr_exponent(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_postfix(window)
    {
        // The lower rule did match, so attempt to extend
        Ok(expr) => {
            match window.get_value(0)
            {
                Some(Token::Caret) => {
                    window.move_view(1);
                    let left = Box::new(expr);
                    let right = Box::new(expr_exponent(window)?);

                    Ok(Expr::BinaryOp(Op::Pow, left, right))
                },
                _ => Ok(expr)
            }
        },
        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn expr_postfix(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_keyword(window)
    {
        // The lower rule did match, so attempt to extend to form this rule
        Ok(expr) => Ok(extend_postfix(expr, window)),

        // An error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn extend_postfix(expr: Expr, window: &mut VecWindow<Token>) -> Expr
{
    match (window.get_value(0), window.get_value(1))
    {
        (Some(Token::Exclam), Some(Token::Equal)) => expr,
        (Some(Token::Exclam), _) => {
            window.move_view(1);
            extend_postfix(Expr::UnaryOp(Op::Fact, Box::new(expr)), window)
        }
        _ => expr
    }
}

fn expr_keyword(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_neg(window)
    {
        // The rule below simply didn't match onto the window, so now it's our turn
        Err(ExprError { kind: ParseErrorKind::NoParseRuleMatch, .. }) => {
            match window.get_value(0)
            {
                Some(Token::Abs) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Abs, operand))
                },
                Some(Token::Sqrt) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Sqrt, operand))
                },
                Some(Token::Sin) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Sin, operand))
                },
                Some(Token::Cos) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Cos, operand))
                },
                Some(Token::Tan) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Tan, operand))
                },
                Some(Token::Arcsin) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Arcsin, operand))
                },
                Some(Token::Arccos) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Arccos, operand))
                },
                Some(Token::Arctan) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Arctan, operand))
                },
                Some(Token::Not) => {
                    window.move_view(1);
                    let operand = Box::new(expr_keyword(window)?);

                    Ok(Expr::UnaryOp(Op::Not, operand))
                },

                _ => Err(ExprError::new(None,
                        ParseErrorKind::NoParseRuleMatch,
                        "In expr_keyword, can't find keyword operator after lower rule failed to match!"))
            }
        },
        // The lower rule did match, so just pass back up the expression it created
        expr @ Ok(_) => {
            expr
        }
        // A different error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn expr_neg(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    match expr_ident(window)
    {
        // The rule below simply didn't match onto the window, so now it's our turn
        Err(ExprError { kind: ParseErrorKind::NoParseRuleMatch, .. }) => {
            match window.get_value(0)
            {
                Some(Token::Minus) => {
                    window.move_view(1);
                    let operand = Box::new(expr_neg(window)?);

                    Ok(Expr::UnaryOp(Op::Negate, operand))
                }

                _ => {
                    Err(ExprError::new(None,
                        ParseErrorKind::NoParseRuleMatch,
                        "In expr_neg, can't find minus after lower rule failed to match!"))
                }
            }
        },
        // The lower rule did match, so just pass back up the expression it created
        expr @ Ok(_) => {
            expr
        }
        // A different error occurred in a lower rule, this is bad, throw back up the error
        error @ Err(_) => {
            error
        },
    }
}

fn expr_ident(window: &mut VecWindow<Token>) -> Result<Expr, ExprError>
{
    let value_tuple = (window.get_value(0), window.get_value(1), window.get_value(2));
    let expr = match value_tuple
    {
        // Postfix inc/dec operator parsing
        (Some(ident @ Token::Identifier(_)), Some(Token::Plus), Some(Token::Plus)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);
            
            Expr::UnaryOp(Op::PostInc, Box::new(Expr::Value(value)))
        },
        (Some(ident @ Token::Identifier(_)), Some(Token::Minus), Some(Token::Minus)) => {
            let value = Value::from(ident.clone());
            window.move_view(3);

            Expr::UnaryOp(Op::PostDec, Box::new(Expr::Value(value)))
        },

        // Prefix inc/dec operator parsing
        (Some(Token::Plus), Some(Token::Plus), Some(ident @ Token::Identifier(_))) => {
            let value = Value::from(ident.clone());
            window.move_view(3);

            Expr::UnaryOp(Op::PreInc, Box::new(Expr::Value(value)))
        },
        (Some(Token::Minus), Some(Token::Minus), Some(ident @ Token::Identifier(_))) => {
            let value = Value::from(ident.clone());
            window.move_view(3);

            Expr::UnaryOp(Op::PreDec, Box::new(Expr::Value(value)))
        },

        // Parses into any value, which is then wrapped into an expression
        _ => Expr::Value(parse_value(window)?)
    };

    Ok(expr)
}


fn parse_value(window: &mut VecWindow<Token>) -> Result<Value, ExprError>
{
    match window.get_value(0)
    {
        Some(tok @ Token::StringToken(_)) |
        Some(tok @ Token::YololNum(_)) |
        Some(tok @ Token::Identifier(_)) => {
            let tok = tok.clone();
            window.move_view(1);

            Ok(Value::from(tok))
        },

        Some(Token::LParen) => {
            window.move_view(1);
            let output = parse_expression(window)?;

            match window.get_value(0)
            {
                Some(Token::RParen) => {
                    window.move_view(1);
                    Ok(Value::Group(output))
                },

                _ => Err(ExprError::new(Some(*output), ParseErrorKind::UnbalancedParenthesis, "Saw LParen, parsed expr, found no RParen!"))
            }
        },

        _ => Err(ExprError::new(None, ParseErrorKind::NoParseRuleMatch, "No match while parsing value!"))
    }
}