-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.c++
84 lines (58 loc) · 1.39 KB
/
Parser.c++
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
//
// Parser.c++
// Tech1
//
// Created by Justin Hust on 12/17/13.
// Copyright (c) 2013 __MyCompanyName__. All rights reserved.
//
#include "Parser.h"
#include "Lexer.h"
#include "Token.h"
#include <iostream>
#include <cassert>
// ------------------------------------------
Parser::Parser(void) {
_tokRoot = NULL;
_tokFocus = NULL;
//_currScope = 0;
_nextIsNewFocus = false;
}
// ------------------------------------------
Parser::~Parser(void) {
// no cleanup code yet
}
// ------------------------------------------
Token * Parser::parse(std::istream &iss) {
Token *tok = NULL;
Lexer l(iss);
while( (tok = l.lex()) != NULL) {
accept(tok);
}
assert(_tokRoot != NULL);
return _tokRoot;
}
// ------------------------------------------
void Parser::accept(Token *tok) {
//assert(_tokFocus != NULL);
if(tok->getType() == Token_LPAR) {
_nextIsNewFocus = true;
//_currScope++;
} else if(tok->getType() == Token_RPAR ) {
// validation OK, so move back up to parent
_tokFocus = _tokFocus->getParent();
_nextIsNewFocus = false;
//_currScope--;
} else {
//tok->setScope(uCurrScope_);
if(_tokRoot == NULL) {
_tokRoot = tok;
_tokFocus = tok;
} else {
_tokFocus->addChild(tok);
if(_nextIsNewFocus) {
_tokFocus = tok;
}
}
_nextIsNewFocus = false;
}
}