public StatementPosition( Token startToken, Token endToken )
     : this()
 {
     this.StartLine = startToken.line;
     this.EndLine = endToken.line;
     this.StartColumn = startToken.col;
     this.EndColumn = endToken.col + endToken.val.Length - 1;
     this.StartPos = startToken.pos;
     this.EndPos = endToken.pos + endToken.val.Length - 1;
 }
Beispiel #2
0
        Token NextTokenDefault()
        {
            while (ignore[ch]) NextCh();

            t = new Token();
            t.pos = pos; t.col = pos - lineStart + 1; t.line = line;
            int state = start[ch];
            tlen = 0; AddCh();

            switch (state) {
                case -1: { t.kind = eofSym; break; } // NextCh already done
                case 0: { t.kind = noSym; break; }   // NextCh already done
            case 1:
                if ((ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z')) {AddCh(); goto case 2;}
                else {t.kind = noSym; break;}
            case 2:
                if ((ch >= '0' && ch <= '9' || ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z')) {AddCh(); goto case 2;}
                else {t.kind = 1; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;}
            case 3:
                if (ch == 'l') {AddCh(); goto case 4;}
                else {t.kind = noSym; break;}
            case 4:
                if (ch == 'a') {AddCh(); goto case 5;}
                else {t.kind = noSym; break;}
            case 5:
                if (ch == 's') {AddCh(); goto case 6;}
                else {t.kind = noSym; break;}
            case 6:
                if (ch == 's') {AddCh(); goto case 7;}
                else {t.kind = noSym; break;}
            case 7:
                {t.kind = 2; break;}
            case 8:
                if (ch == 'o') {AddCh(); goto case 9;}
                else {t.kind = noSym; break;}
            case 9:
                if (ch == 'i') {AddCh(); goto case 10;}
                else {t.kind = noSym; break;}
            case 10:
                if (ch == 'n') {AddCh(); goto case 11;}
                else {t.kind = noSym; break;}
            case 11:
                {t.kind = 4; break;}
            case 12:
                if (ch == 'p') {AddCh(); goto case 13;}
                else {t.kind = noSym; break;}
            case 13:
                if (ch == 'p') {AddCh(); goto case 14;}
                else {t.kind = noSym; break;}
            case 14:
                if (ch == 'l') {AddCh(); goto case 15;}
                else {t.kind = noSym; break;}
            case 15:
                if (ch == 'y') {AddCh(); goto case 16;}
                else {t.kind = noSym; break;}
            case 16:
                {t.kind = 5; break;}
            case 17:
                if (ch == 'a') {AddCh(); goto case 18;}
                else {t.kind = noSym; break;}
            case 18:
                if (ch == 'l') {AddCh(); goto case 19;}
                else {t.kind = noSym; break;}
            case 19:
                if (ch == 'l') {AddCh(); goto case 20;}
                else {t.kind = noSym; break;}
            case 20:
                {t.kind = 6; break;}
            case 21:
                if (ch == 't') {AddCh(); goto case 22;}
                else {t.kind = noSym; break;}
            case 22:
                if (ch == 'h') {AddCh(); goto case 23;}
                else {t.kind = noSym; break;}
            case 23:
                if (ch == 'o') {AddCh(); goto case 24;}
                else {t.kind = noSym; break;}
            case 24:
                if (ch == 'd') {AddCh(); goto case 25;}
                else {t.kind = noSym; break;}
            case 25:
                {t.kind = 7; break;}
            case 26:
                if (ch == 't') {AddCh(); goto case 27;}
                else {t.kind = noSym; break;}
            case 27:
                if (ch == 'c') {AddCh(); goto case 28;}
                else {t.kind = noSym; break;}
            case 28:
                if (ch == 'h') {AddCh(); goto case 29;}
                else {t.kind = noSym; break;}
            case 29:
                {t.kind = 8; break;}
            case 30:
                if (ch == 's') {AddCh(); goto case 31;}
                else {t.kind = noSym; break;}
            case 31:
                if (ch == 'i') {AddCh(); goto case 32;}
                else {t.kind = noSym; break;}
            case 32:
                if (ch == 'n') {AddCh(); goto case 33;}
                else {t.kind = noSym; break;}
            case 33:
                if (ch == 'g') {AddCh(); goto case 34;}
                else {t.kind = noSym; break;}
            case 34:
                {t.kind = 9; break;}
            case 35:
                if (ch == '>') {AddCh(); goto case 36;}
                else {t.kind = noSym; break;}
            case 36:
                {t.kind = 10; break;}
            case 37:
                if (ch == 'n') {AddCh(); goto case 38;}
                else {t.kind = noSym; break;}
            case 38:
                if (ch == 'd') {AddCh(); goto case 39;}
                else {t.kind = noSym; break;}
            case 39:
                if (ch == '%') {AddCh(); goto case 40;}
                else {t.kind = noSym; break;}
            case 40:
                if (ch == '>') {AddCh(); goto case 41;}
                else {t.kind = noSym; break;}
            case 41:
                {t.kind = 11; break;}
            case 42:
                {t.kind = 12; break;}
            case 43:
                {t.kind = 13; break;}
            case 44:
                if (ch == '>') {AddCh(); goto case 45;}
                else {t.kind = noSym; break;}
            case 45:
                {t.kind = 14; break;}
            case 46:
                if (ch == '%') {AddCh(); goto case 47;}
                else {t.kind = noSym; break;}
            case 47:
                if (ch == '>') {AddCh(); goto case 48;}
                else {t.kind = noSym; break;}
            case 48:
                {t.kind = 15; break;}
            case 49:
                {t.kind = 20; break;}
            case 50:
                {t.kind = 21; break;}
            case 51:
                {t.kind = 23; break;}
            case 52:
                {t.kind = 24; break;}
            case 53:
                if (ch == ')') {AddCh(); goto case 54;}
                else {t.kind = noSym; break;}
            case 54:
                {t.kind = 25; break;}
            case 55:
                {t.kind = 27; break;}
            case 56:
                if ((ch >= '0' && ch <= '9')) {AddCh(); goto case 56;}
                else {t.kind = 28; break;}
            case 57:
                {t.kind = 29; break;}
            case 58:
                {t.kind = 30; break;}
            case 59:
                if ((ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '&' || ch >= '(' && ch <= '[' || ch >= ']' && ch <= 255)) {AddCh(); goto case 60;}
                else if (ch == 92) {AddCh(); goto case 61;}
                else {t.kind = noSym; break;}
            case 60:
                if (ch == 39) {AddCh(); goto case 63;}
                else {t.kind = noSym; break;}
            case 61:
                if ((ch >= ' ' && ch <= '~')) {AddCh(); goto case 62;}
                else {t.kind = noSym; break;}
            case 62:
                if ((ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f')) {AddCh(); goto case 62;}
                else if (ch == 39) {AddCh(); goto case 63;}
                else {t.kind = noSym; break;}
            case 63:
                {t.kind = 31; break;}
            case 64:
                if (ch == '%') {AddCh(); goto case 68;}
                else {t.kind = 26; break;}
            case 65:
                if (ch == '%') {AddCh(); goto case 44;}
                else if (ch == '-') {AddCh(); goto case 46;}
                else {t.kind = noSym; break;}
            case 66:
                if (ch == '[') {AddCh(); goto case 52;}
                else {t.kind = 22; break;}
            case 67:
                if ((ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 255)) {AddCh(); goto case 67;}
                else if ((ch == 10 || ch == 13)) {AddCh(); goto case 58;}
                else if (ch == '"') {AddCh(); goto case 57;}
                else if (ch == 92) {AddCh(); goto case 69;}
                else {t.kind = noSym; break;}
            case 68:
                if (ch == 'r') {AddCh(); goto case 70;}
                else if (ch == 'j') {AddCh(); goto case 8;}
                else if (ch == 'a') {AddCh(); goto case 12;}
                else if (ch == 'c') {AddCh(); goto case 17;}
                else if (ch == 'm') {AddCh(); goto case 71;}
                else if (ch == 'u') {AddCh(); goto case 30;}
                else if (ch == 'e') {AddCh(); goto case 37;}
                else if (ch == '=') {AddCh(); goto case 42;}
                else if (ch == '$') {AddCh(); goto case 43;}
                else {t.kind = noSym; break;}
            case 69:
                if ((ch >= ' ' && ch <= '~')) {AddCh(); goto case 67;}
                else {t.kind = noSym; break;}
            case 70:
                if (ch == 'u') {AddCh(); goto case 72;}
                else {t.kind = noSym; break;}
            case 71:
                if (ch == 'e') {AddCh(); goto case 21;}
                else if (ch == 'a') {AddCh(); goto case 26;}
                else {t.kind = noSym; break;}
            case 72:
                if (ch == 'l') {AddCh(); goto case 73;}
                else {t.kind = noSym; break;}
            case 73:
                if (ch == 'e') {AddCh(); goto case 74;}
                else {t.kind = noSym; break;}
            case 74:
                if (ch == 'c') {AddCh(); goto case 3;}
                else {t.kind = 3; break;}

            }
            t.val = new String(tval, 0, tlen);
            return t;
        }
Beispiel #3
0
 void Init()
 {
     pos = -1; line = 1; lineStart = 0;
     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 Exception(String.Format("illegal byte order mark: EF {0,2:X} {1,2:X}", ch1, ch2));
         }
         buffer = new UTF8Buffer(buffer);
         NextCh();
     }
     ignore = new BitArray(charSetSize+1);
     ignore[' '] = true;  // blanks are always white space
     ignore[9] = true; ignore[10] = true; ignore[13] = true;
     pt = tokens = new Token();  // first token is a dummy
 }
Beispiel #4
0
        private Token GetTextToken()
        {
            if (this.ch == Buffer.EOF) return null;
            if (this.ch == '<' && this.buffer.Peek() == '%') return null;

            this.tlen = 0;
            this.t = new Token { pos = this.pos, col = (this.pos - this.lineStart + 1), line = this.line };
            this.AddCh();
            var end = false;

            while (!end)
            {
                if (this.ch == Buffer.EOF || (this.ch == '<' && this.buffer.Peek() == '%')) end = true;
                else this.AddCh();
            }

            this.t.kind = 32;
            this.t.val = new String( this.tval, 0, this.tlen );
            return this.t;
        }
Beispiel #5
0
 // 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;
     }
 }
Beispiel #6
0
 // make sure that peeking starts at the current scan position
 public void ResetPeek()
 {
     pt = tokens;
 }
Beispiel #7
0
 // peek for the next token, ignore pragmas
 public Token Peek()
 {
     if (pt.next == null) {
         do {
             pt = pt.next = NextToken();
         } while (pt.kind > maxT); // skip pragmas
     } else {
         do {
             pt = pt.next;
         } while (pt.kind > maxT);
     }
     return pt;
 }
Beispiel #8
0
        void Get()
        {
            for (;;) {
                t = la;
                la = scanner.Scan();
                if (la.kind <= maxT) { ++errDist; break; }

                la = t;
            }
        }
Beispiel #9
0
        int AddStatement( bool isStart, List<RuleStatement> statements, bool ifEnd, Token t )
        {
            int startIndex = 0;
            int endIndex = 0;
            var text = ExtractString( isStart, ifEnd, t.val, ref startIndex, ref endIndex );

            if (!string.IsNullOrEmpty( text )) statements.Add( new TextStatement( new StatementPosition( t.pos + startIndex, t.pos + text.Length - 1 + startIndex ), text ) );
            return la.pos;
        }
Beispiel #10
0
 public void InitParse()
 {
     la = new Token();
     la.val = "";
     Get();
 }