1 // -*- c-basic-offset: 2 -*-
3 * This file is part of the KDE libraries
4 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
5 * Copyright (C) 2007 Apple Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
27 #include "SourceCode.h"
29 #include <wtf/Vector.h>
36 class Lexer
: Noncopyable
{
38 void setCode(const SourceCode
&);
41 int lineNo() const { return yylineno
; }
43 bool prevTerminator() const { return terminator
; }
48 InIdentifierOrKeyword
,
50 InIdentifierStartUnicodeEscapeStart
,
51 InIdentifierStartUnicodeEscape
,
52 InIdentifierPartUnicodeEscapeStart
,
53 InIdentifierPartUnicodeEscape
,
76 const UString
& pattern() const { return m_pattern
; }
77 const UString
& flags() const { return m_flags
; }
79 static unsigned char convertHex(int);
80 static unsigned char convertHex(int c1
, int c2
);
81 static UChar
convertUnicode(int c1
, int c2
, int c3
, int c4
);
82 static bool isIdentStart(int);
83 static bool isIdentPart(int);
84 static bool isHexDigit(int);
86 bool sawError() const { return error
; }
89 SourceCode
sourceCode(int openBrace
, int closeBrace
, int firstLine
)
91 // The SourceCode constructor adds 1 to the line number to account for
92 // all of the callers in WebCore that use zero-based line numbers, so
93 // we regrettably subtract 1 here to deal with that.
94 return SourceCode(m_source
->provider(), m_source
->startOffset() + openBrace
+ 1, m_source
->startOffset() + closeBrace
, firstLine
- 1);
98 friend Lexer
& lexer();
103 Vector
<char> m_buffer8
;
104 Vector
<UChar
> m_buffer16
;
107 // encountered delimiter like "'" and "}" on last run
111 bool eatNextIdentifier
;
118 void shift(unsigned int p
);
120 int lookupKeyword(const char *);
122 bool isWhiteSpace() const;
123 bool isLineTerminator();
124 static bool isOctalDigit(int);
126 int matchPunctuator(int& charPos
, int c1
, int c2
, int c3
, int c4
);
127 static unsigned short singleEscape(unsigned short);
128 static unsigned short convertOctal(int c1
, int c2
, int c3
);
132 void record16(UChar
);
134 KJS::Identifier
* makeIdentifier(const Vector
<UChar
>& buffer
);
135 UString
* makeUString(const Vector
<UChar
>& buffer
);
137 const SourceCode
* m_source
;
144 // current and following unicode characters (int to allow for -1 for end-of-file marker)
145 int current
, next1
, next2
, next3
;
152 Vector
<UString
*> m_strings
;
153 Vector
<KJS::Identifier
*> m_identifiers
;
159 Lexer
& lexer(); // Returns the singletone JavaScript lexer.