void Init() { pos = -1; line = 1; col = 0; charPos = -1; oldEols = 0; NextCh(); if (ch == 0xEF) { // check optional byte order mark for UTF-8 NextCh(); int ch1 = ch; NextCh(); int ch2 = ch; if (ch1 != 0xBB || ch2 != 0xBF) { throw new FatalError(String.Format("illegal byte order mark: EF {0,2:X} {1,2:X}", ch1, ch2)); } buffer = new UTF8Buffer(buffer); col = 0; charPos = -1; NextCh(); } pt = tokens = new Token(); // first token is a dummy }
Token NextToken() { while (Scanner.ignore_space && (ch == ' ' || ch >= 9 && ch <= 10 || ch == 13 )) NextCh(); if (ch == '"' && Comment0() ||ch == 10 && Comment1()) return NextToken(); int recKind = noSym; int recEnd = pos; t = new Token(); t.pos = pos; t.col = col; t.line = line; t.charPos = charPos; int state; if (start.ContainsKey(ch)) { state = (int) start[ch]; } else { state = 0; } tlen = 0; AddCh(); switch (state) { case -1: { t.kind = eofSym; break; } // NextCh already done case 0: { if (recKind != noSym) { tlen = recEnd - t.pos; SetScannerBehindT(); } t.kind = recKind; break; } // NextCh already done case 1: recEnd = pos; recKind = 1; if (ch >= '0' && ch <= '9') {AddCh(); goto case 1;} else {t.kind = 1; break;} case 2: if (ch <= '&' || ch >= '(' && ch <= 65535) {AddCh(); goto case 2;} else if (ch == 39) {AddCh(); goto case 3;} else {goto case 0;} case 3: {t.kind = 2; break;} case 4: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'z') {AddCh(); goto case 4;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 5: recEnd = pos; recKind = 4; if (ch >= 9 && ch <= 13 || ch == ' ') {AddCh(); goto case 5;} else {t.kind = 4; break;} case 6: {t.kind = 5; break;} case 7: {t.kind = 7; break;} case 8: {t.kind = 8; break;} case 9: {t.kind = 9; break;} case 10: if (ch == 'e') {AddCh(); goto case 11;} else {goto case 0;} case 11: if (ch == 't') {AddCh(); goto case 12;} else {goto case 0;} case 12: if (ch == 'h') {AddCh(); goto case 13;} else {goto case 0;} case 13: if (ch == 'o') {AddCh(); goto case 14;} else {goto case 0;} case 14: if (ch == 'd') {AddCh(); goto case 15;} else {goto case 0;} case 15: if (ch == 's') {AddCh(); goto case 16;} else {goto case 0;} case 16: {t.kind = 20; break;} case 17: if (ch == 'a') {AddCh(); goto case 18;} else {goto case 0;} case 18: if (ch == 't') {AddCh(); goto case 19;} else {goto case 0;} case 19: if (ch == 'a') {AddCh(); goto case 20;} else {goto case 0;} case 20: {t.kind = 25; break;} case 21: if (ch == 's') {AddCh(); goto case 22;} else {goto case 0;} case 22: if (ch == 'i') {AddCh(); goto case 23;} else {goto case 0;} case 23: if (ch == 'g') {AddCh(); goto case 24;} else {goto case 0;} case 24: if (ch == 'n') {AddCh(); goto case 25;} else {goto case 0;} case 25: {t.kind = 29; break;} case 26: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'k' || ch >= 'm' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == 'l') {AddCh(); goto case 28;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 27: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'n' || ch >= 'p' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == 'o') {AddCh(); goto case 29;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 28: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'b' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == 'a') {AddCh(); goto case 30;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 29: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == '-') {AddCh(); goto case 21;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 30: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'r' || ch >= 't' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == 's') {AddCh(); goto case 31;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 31: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'r' || ch >= 't' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == 's') {AddCh(); goto case 32;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 32: recEnd = pos; recKind = 3; if (ch >= '0' && ch <= '9' || ch == '_' || ch >= 'a' && ch <= 'z') {AddCh(); goto case 4;} else if (ch == '-') {AddCh(); goto case 33;} else {t.kind = 3; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;} case 33: if (ch == 'm') {AddCh(); goto case 10;} else if (ch == 'd') {AddCh(); goto case 17;} else {goto case 0;} case 34: {t.kind = 32; break;} case 35: {t.kind = 33; break;} case 36: {t.kind = 40; break;} case 37: {t.kind = 41; break;} case 38: {t.kind = 42; break;} case 39: {t.kind = 43; break;} case 40: recEnd = pos; recKind = 6; if (ch == '>') {AddCh(); goto case 38;} else {t.kind = 6; break;} case 41: recEnd = pos; recKind = 44; if (ch == '>') {AddCh(); goto case 39;} else {t.kind = 44; break;} } t.val = new String(tval, 0, tlen); return t; }
// get the next token (possibly a token already seen during peeking) public Token Scan() { if (tokens.next == null) { return NextToken(); } else { pt = tokens = tokens.next; return tokens; } }
// make sure that peeking starts at the current scan position public void ResetPeek() { pt = tokens; }
// peek for the next token, ignore pragmas public Token Peek() { do { if (pt.next == null) { pt.next = NextToken(); } pt = pt.next; } while (pt.kind > maxT); // skip pragmas return pt; }
void Get() { for (;;) { t = la; la = scanner.Scan(); if (la.kind <= maxT) { ++errDist; break; } la = t; } }
public void Parse() { la = new Token(); la.val = ""; Get(); openABAP(); Expect(0); }